/* Nova Anatolia Mythical Theme - Nature-Inspired Color Palette */

/* ============================================
   CRITICAL CSS - ABOVE THE FOLD OPTIMIZATION
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Strange Cool', 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: #1A0F0A;
  background: #FFF8F0;
  line-height: 1.6;
}

/* Performance optimizations for critical elements */
main, header, section, nav {
  contain: layout style;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* ============================================
   IMPORT & FONT-FACE
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Strange+Cool:wght@300;400;500;600;700&display=swap');

/* Custom Local Fonts with font-display: swap */
@font-face {
  font-family: 'Valen Valentine';
  src: url('../valen_valentine_script/Valen Valentine Script.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Au Bord de la Seine';
  src: url('../au_bord_de_la_seine/Au Bord de la Seine.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Primary Colors - Sunset Inspired */
  --dark-bg: #2C1810;
  --sage-green: #D4A574;
  --mist-gray: #F5E6D3;
  --ivory-white: #FFF8F0;
  --dawn-pink: #FF6B35;
  --night-blue: #1A0F0A;
  
  /* Legacy variables for compatibility */
  --beige: var(--ivory-white);
  --stone-grey: var(--mist-gray);
  --pastel-orange: var(--dawn-pink);
  --accent: var(--sage-green);
  --text-dark: var(--night-blue);
  --white: var(--ivory-white);
  --shadow: 0 2px 12px rgba(44, 24, 16, 0.15);
  
  /* Sunset gradients */
  --ethereal-gradient: linear-gradient(135deg, rgba(212, 165, 116, 0.8), rgba(255, 107, 53, 0.6));
  --forest-gradient: linear-gradient(45deg, rgba(44, 24, 16, 0.9), rgba(212, 165, 116, 0.8));
  --mist-gradient: linear-gradient(180deg, rgba(245, 230, 211, 0.4), rgba(255, 248, 240, 0.2));
  
  /* Light Mode Colors (Default) */
  --bg-primary: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 250, 245, 1) 25%, rgba(255, 245, 235, 1) 50%, rgba(255, 250, 245, 1) 75%, rgba(255, 255, 255, 1) 100%);
  --bg-card: #FFFFFF;
  --text-primary: #1A0F0A;
  --text-secondary: #4A4A4A;
  --border-color: rgba(255, 179, 106, 0.3);
  --shadow-color: rgba(0, 0, 0, 0.1);
}

/* Dark Mode Colors */
[data-theme="dark"] {
  --bg-primary: linear-gradient(135deg, #1A0F0A 0%, #2C1810 25%, #1A0F0A 50%, #2C1810 75%, #1A0F0A 100%);
  --bg-card: #2C1810;
  --text-primary: #FFF8F0;
  --text-secondary: #D4A574;
  --border-color: rgba(212, 165, 116, 0.3);
  --shadow-color: rgba(0, 0, 0, 0.5);
}

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  height: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Strange Cool', 'Inter', sans-serif;
  background: var(--bg-primary);
  background-size: 400% 400%;
  animation: gradientRotate 15s ease-in-out infinite;
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  height: 100%;
  transition: background 0.5s ease, color 0.5s ease;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Top Navigation Bar */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--forest-gradient);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--sage-green);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
  z-index: 100;
  box-shadow: 0 2px 15px rgba(44, 24, 16, 0.3);
}

/* Language Toggle - Small Version */
.lang-toggle-small {
  background: transparent;
  border: 2px solid #FFB36A;
  padding: 0.5rem;
  min-width: 45px;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 179, 106, 0.2);
}

.lang-toggle-small:hover {
  background: linear-gradient(135deg, #FFB36A 0%, #FFA94D 100%);
  border-color: #FFB36A;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 179, 106, 0.3);
}

/* Enhanced Hamburger Menu */
.hamburger-menu {
  background: #FFFFFF;
  border: 1px solid rgba(255, 179, 106, 0.3);
  padding: 0.8rem;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(255, 179, 106, 0.15);
}

.hamburger-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 179, 106, 0.1), transparent);
  transition: left 0.6s ease;
}

.hamburger-menu:hover::before {
  left: 100%;
}

.hamburger-line {
  width: 24px;
  height: 3px;
  background: #FFB36A;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 1px 2px rgba(255, 179, 106, 0.2);
}

.hamburger-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #C2704A;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.hamburger-menu:hover .hamburger-line::before {
  transform: scaleX(1);
  transform-origin: left;
}

.hamburger-menu:hover {
  background: rgba(255, 179, 106, 0.1);
  border-color: #FFB36A;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 179, 106, 0.25);
}

.hamburger-menu.active {
  background: rgba(255, 179, 106, 0.15);
  border-color: #FFB36A;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 179, 106, 0.3);
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
  background: #C2704A;
  box-shadow: 0 0 4px rgba(194, 112, 74, 0.3);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
  background: transparent;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background: #C2704A;
  box-shadow: 0 0 4px rgba(194, 112, 74, 0.3);
}

/* Enhanced Hamburger Dropdown */
.hamburger-dropdown {
  position: fixed;
  top: 70px;
  right: 0;
  background: #FFFFFF;
  backdrop-filter: blur(15px);
  border-left: 1px solid rgba(255, 179, 106, 0.3);
  border-bottom: 1px solid rgba(255, 179, 106, 0.3);
  border-top: 1px solid rgba(255, 179, 106, 0.2);
  padding: 1.5rem 0;
  min-width: 250px;
  transform: translateX(100%) scale(0.9);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  box-shadow: 
    -10px 10px 30px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border-radius: 0 0 0 8px;
  opacity: 0;
  overflow: hidden;
}

.hamburger-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      135deg,
      transparent 0px,
      rgba(255, 179, 106, 0.03) 1px,
      transparent 2px,
      transparent 40px
    );
  border-radius: 0 0 0 8px;
  pointer-events: none;
}

.hamburger-dropdown.active {
  transform: translateX(0) scale(1);
  opacity: 1;
}

.hamburger-dropdown a {
  display: block;
  color: #2B2B2B;
  text-decoration: none;
  padding: 1.2rem 2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 2px solid transparent;
  position: relative;
  overflow: hidden;
  margin: 0.1rem 0;
  text-transform: uppercase;
}

.hamburger-dropdown a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 179, 106, 0.1), 
    rgba(255, 179, 106, 0.08), 
    transparent);
  transition: left 0.6s ease;
}

.hamburger-dropdown a:hover::before {
  left: 100%;
}

.hamburger-dropdown a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(180deg, #FFB36A, #C2704A);
  transition: height 0.3s ease;
  box-shadow: 0 0 4px rgba(255, 179, 106, 0.3);
}

.hamburger-dropdown a:hover {
  background: rgba(255, 179, 106, 0.08);
  border-left-color: #FFB36A;
  color: #C2704A;
  padding-left: 2.2rem;
  transform: translateX(5px);
  box-shadow: 
    inset 0 0 20px rgba(255, 179, 106, 0.05),
    0 0 10px rgba(255, 179, 106, 0.1);
}

.hamburger-dropdown a:hover::after {
  height: 100%;
}

/* Hamburger Menu Animation for Page Load */
@keyframes hamburgerFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.hamburger-menu {
  animation: hamburgerFloat 3s ease-in-out infinite;
}

/* Dropdown Item Stagger Animation */
.hamburger-dropdown a {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-dropdown.active a {
  opacity: 1;
  transform: translateX(0);
}

.hamburger-dropdown.active a:nth-child(1) {
  transition-delay: 0.1s;
}

.hamburger-dropdown.active a:nth-child(2) {
  transition-delay: 0.2s;
}

.hamburger-dropdown.active a:nth-child(3) {
  transition-delay: 0.3s;
}

.hamburger-dropdown.active a:nth-child(4) {
  transition-delay: 0.4s;
}

.hamburger-dropdown.active a:nth-child(5) {
  transition-delay: 0.5s;
}

/* Responsive Hamburger Menu */
@media (max-width: 768px) {
  .hamburger-menu {
    padding: 0.7rem;
  }
  
  .hamburger-line {
    width: 22px;
    height: 2.5px;
  }
  
  .hamburger-dropdown {
    min-width: 200px;
    padding: 1rem 0;
    top: 60px;
  }
  
  .hamburger-dropdown a {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hamburger-dropdown {
    min-width: 180px;
    right: 10px;
    border-radius: 0 0 0 15px;
  }
  
  .hamburger-dropdown a {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hamburger-menu {
    padding: 0.6rem;
  }
  
  .hamburger-line {
    width: 20px;
    height: 2px;
  }
  
  .hamburger-dropdown {
    min-width: 180px;
    padding: 0.8rem 0;
  }
  
  .hamburger-dropdown a {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    white-space: normal;
    line-height: 1.3;
  }
  
  .hero-content .logo {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.1;
  }
  
  .hero-content p {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 2rem;
  }
  
  .hero-content {
    padding: 1rem 0.75rem;
    max-width: 95vw;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
    line-height: 1.2;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  
  .brand-logo {
    font-size: 1.6rem;
    letter-spacing: 1px;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  
  .hero-content p {
    font-size: 0.9rem;
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  
  .tours-hero .hero-content h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  
  .tours-hero .hero-content p {
    font-size: 1rem;
    line-height: 1.4;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  
  .tours-hero {
    min-height: 60vh;
  }
  
  /* Mobile navigation buttons */
  .hero-nav {
    gap: 0.4rem;
    margin-top: 1.5rem;
  }
  
  .nav-btn {
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
    min-width: 90px;
    white-space: normal;
    line-height: 1.2;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  
  /* index.html hero navigation buttons */
  .nav-btn-hero {
    padding: 0.7rem 1.2rem;
    font-size: 0.75rem;
    letter-spacing: 1px;
    white-space: normal;
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  
  /* Russian language specific mobile optimizations */
  body.lang-ru .brand-logo {
    font-size: 2.8rem !important;
    letter-spacing: 0.5px !important;
  }
  
  body.lang-ru .hero-title {
    font-size: 4.rem !important;
    line-height: 1.15 !important;
    letter-spacing: 0.5px !important;
  }
  
  body.lang-ru .hero-subtitle {
    font-size: 6rem !important;
    line-height: 1.3 !important;
  }
  
  body.lang-ru .nav-btn-hero {
    padding: 0.7rem 1rem !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.5px !important;
    line-height: 1.2 !important;
  }
  
  body.lang-ru .story-block h3 {
    font-size: 1.5rem !important;
  }
  
  body.lang-ru .story-block p {
    font-size: 1.15rem !important;
    line-height: 1.5 !important;
  }
  
  body.lang-ru .card-header-modern h3 {
    font-size: 1.6rem !important;
  }
  
  body.lang-ru .card-content-modern p {
    font-size: 1.15rem !important;
  }
  
  body.lang-ru .section-title-modern,
  body.lang-ru .story-card-modern h2,
  body.lang-ru .cta-content-modern h2 {
    font-size: 2.2rem !important;
  }
  
  body.lang-ru .story-card-modern p,
  body.lang-ru .info-card-modern p {
    font-size: 1.2rem !important;
  }
  
  body.lang-ru .hero-content h1 {
    font-size: 2.8rem !important;
  }
  
  body.lang-ru .hero-content p {
    font-size: 1.15rem !important;
  }
  
  /* Turkish language specific mobile optimizations */
  body.lang-tr .hero-content h1 {
    font-size: 3.8rem !important;
    line-height: 1.2 !important;
  }
  
  body.lang-tr .brand-logo {
    font-size: 3.2rem !important;
  }
  
  body.lang-tr .hero-content p {
    font-size: 1.15rem !important;
    line-height: 1.4 !important;
  }
  
  body.lang-tr .story-block h3 {
    font-size: 1.45rem !important;
  }
  
  body.lang-tr .story-block p {
    font-size: 1.15rem !important;
    line-height: 1.5 !important;
  }
  
  body.lang-tr .card-header-modern h3 {
    font-size: 1.55rem !important;
  }
  
  body.lang-tr .card-content-modern p {
    font-size: 1.15rem !important;
  }
  
  body.lang-tr .section-title-modern,
  body.lang-tr .story-card-modern h2,
  body.lang-tr .cta-content-modern h2 {
    font-size: 2.1rem !important;
  }
  
  body.lang-tr .story-card-modern p,
  body.lang-tr .info-card-modern p {
    font-size: 1.2rem !important;
  }
  
  body.lang-tr .discover-content h3 {
    font-size: 1.55rem !important;
  }
  
  body.lang-tr .discover-slogan {
    font-size: 1.2rem !important;
  }
  
  /* Spanish language specific mobile optimizations */
  body.lang-es .hero-content h1 {
    font-size: 3.8rem !important;
    line-height: 1.2 !important;
  }
  
  body.lang-es .brand-logo {
    font-size: 3.2rem !important;
  }
  
  body.lang-es .hero-content p {
    font-size: 1.15rem !important;
    line-height: 1.4 !important;
  }
  
  body.lang-es .story-block h3 {
    font-size: 1.45rem !important;
  }
  
  body.lang-es .story-block p {
    font-size: 1.15rem !important;
    line-height: 1.5 !important;
  }
  
  body.lang-es .card-header-modern h3 {
    font-size: 1.55rem !important;
  }
  
  body.lang-es .card-content-modern p {
    font-size: 1.15rem !important;
  }
  
  body.lang-es .section-title-modern,
  body.lang-es .story-card-modern h2,
  body.lang-es .cta-content-modern h2 {
    font-size: 2.1rem !important;
  }
  
  body.lang-es .story-card-modern p,
  body.lang-es .info-card-modern p {
    font-size: 1.2rem !important;
  }
  
  body.lang-es .discover-content h3 {
    font-size: 1.55rem !important;
  }
  
  body.lang-es .discover-slogan {
    font-size: 1.2rem !important;
  }
}

.hero {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--night-blue);
  margin: 0;
  padding: 0;
  overflow: hidden;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--mist-gradient);
  z-index: 1;
  pointer-events: none;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1;
  overflow: hidden;
}
.hero-img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.1) sepia(0.3);
}

/* Video specific styles */
.hero-bg video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.1) sepia(0.3);
}

.spacer {
  height: 80px;
  background: var(--ivory-white);
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--ivory-white);
  text-shadow: 0 4px 20px rgba(45, 49, 66, 0.8);
  max-width: 800px;
  padding: 2rem;
}

.hero-content .logo {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--ivory-white);
  letter-spacing: 2px;
  margin-bottom: 2rem;
  text-shadow: 0 4px 25px rgba(45, 49, 66, 0.9);
  background: linear-gradient(45deg, var(--ivory-white), var(--dawn-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 10px rgba(255, 202, 212, 0.3));
  text-transform: uppercase;
}

.hero-content h1 {

  font-size: 4.2rem;
  font-weight: 600;
  margin: 1rem 0;
  text-shadow: 0 4px 20px rgba(45, 49, 66, 0.8);
  color: var(--ivory-white);
  line-height: 1.2;
  letter-spacing: 1px;
}
.hero-content p {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 3rem;
  text-shadow: 0 3px 15px rgba(45, 49, 66, 0.7);
  color: var(--ivory-white);
  opacity: 0.95;
  line-height: 1.6;
  letter-spacing: 0.5px;
}

.hero-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.nav-btn {
  background: rgba(163, 177, 138, 0.2);
  color: var(--ivory-white);
  border: 2px solid rgba(250, 249, 246, 0.3);
  padding: 0.9rem 2.5rem;
  border-radius: 2.5rem;
  font-size: 1rem;
  font-family: 'Strange Cool', sans-serif;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(15px);
  transition: all 0.4s ease;
  text-shadow: 0 2px 8px rgba(45, 49, 66, 0.3);
  min-width: 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.nav-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--ethereal-gradient);
  transition: left 0.5s ease;
  z-index: -1;
}

.nav-btn:hover::before {
  left: 0;
}

/* Language Toggle Button - Mythical Design */
.lang-toggle-btn {
  background: transparent;
  border: 2px solid #FFB36A;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(255, 179, 106, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
}

/* Language Toggle - Top Left Position */
.lang-toggle-top {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 10;
}

.lang-toggle-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 179, 106, 0.1), transparent);
  transition: left 0.5s;
}

.lang-toggle-btn:hover::before {
  left: 100%;
}

.flag-icon {
  font-size: 1rem;
  transition: transform 0.3s ease;
  display: inline-block;
  width: 18px;
  height: 18px;
  background-size: cover;
  background-position: center;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.flag-icon.us {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiBmaWxsPSIjQjIyMjM0Ii8+CjxyZWN0IHdpZHRoPSIyNCIgaGVpZ2h0PSIxLjg0NjE1IiBmaWxsPSJ3aGl0ZSIvPgo8cmVjdCB5PSIzLjY5MjMxIiB3aWR0aD0iMjQiIGhlaWdodD0iMS44NDYxNSIgZmlsbD0id2hpdGUiLz4KPHJlY3QgeT0iNy4zODQ2MiIgd2lkdGg9IjI0IiBoZWlnaHQ9IjEuODQ2MTUiIGZpbGw9IndoaXRlIi8+CjxyZWN0IHk9IjExLjA3NjkiIHdpZHRoPSIyNCIgaGVpZ2h0PSIxLjg0NjE1IiBmaWxsPSJ3aGl0ZSIvPgo8cmVjdCB5PSIxNC43NjkyIiB3aWR0aD0iMjQiIGhlaWdodD0iMS44NDYxNSIgZmlsbD0id2hpdGUiLz4KPHJlY3QgeT0iMTguNDYxNSIgd2lkdGg9IjI0IiBoZWlnaHQ9IjEuODQ2MTUiIGZpbGw9IndoaXRlIi8+CjxyZWN0IHk9IjIyLjE1MzgiIHdpZHRoPSIyNCIgaGVpZ2h0PSIxLjg0NjE1IiBmaWxsPSJ3aGl0ZSIvPgo8cmVjdCB3aWR0aD0iMTAuMzA3NyIgaGVpZ2h0PSIxMi45MjMxIiBmaWxsPSIjM0MzQjZFIi8+Cjwvc3ZnPgo=');
}

.flag-icon.tr {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiBmaWxsPSIjRTMwQTEzIi8+CjxjaXJjbGUgY3g9IjkiIGN5PSIxMiIgcj0iNCIgZmlsbD0id2hpdGUiLz4KPGNpcmNsZSBjeD0iMTAuNSIgY3k9IjEyIiByPSIzLjIiIGZpbGw9IiNFMzBBMTMiLz4KPHBhdGggZD0iTTE0IDkuNUwxNS41IDEwLjVMMTQgMTEuNUwxNS41IDEyLjVMMTQgMTMuNUwxNS41IDE0LjVMMTQgMTUuNSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIwLjgiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=');
}



.flag-icon.ru {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjgiIGZpbGw9IndoaXRlIi8+CjxyZWN0IHk9IjgiIHdpZHRoPSIyNCIgaGVpZ2h0PSI4IiBmaWxsPSIjMDAzOWE2Ii8+CjxyZWN0IHk9IjE2IiB3aWR0aD0iMjQiIGhlaWdodD0iOCIgZmlsbD0iI2NkMTAxYiIvPgo8L3N2Zz4K');
}

.lang-toggle-btn:hover {
  background: linear-gradient(135deg, #FFB36A 0%, #FFA94D 100%);
  border-color: #FFB36A;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 179, 106, 0.3);
}

.lang-toggle-btn:hover .flag-icon {
  transform: rotate(360deg) scale(1.1);
}

/* About Button - Earthy Theme */
.nav-btn-about {
  background: rgba(126, 94, 70, 0.3);
  border-color: rgba(126, 94, 70, 0.5);
}

.nav-btn-about:hover {
  background: var(--earthy-brown);
  color: var(--ivory-white);
  border-color: var(--earthy-brown);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(126, 94, 70, 0.4);
}

/* Tours Button - Dawn Theme */
.nav-btn-tours {
  background: rgba(255, 202, 212, 0.3);
  border-color: rgba(255, 202, 212, 0.5);
}

.nav-btn-tours:hover {
  background: var(--dawn-pink);
  color: var(--night-blue);
  border-color: var(--dawn-pink);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 202, 212, 0.5);
}

/* Contact Button - Sage Theme */
.nav-btn-contact {
  background: rgba(163, 177, 138, 0.3);
  border-color: rgba(163, 177, 138, 0.5);
}

.nav-btn-contact:hover {
  background: var(--sage-green);
  color: var(--ivory-white);
  border-color: var(--sage-green);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(163, 177, 138, 0.5);
}
.btn {
  background: var(--pastel-orange);
  color: var(--text-dark);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  font-size: 1rem;
  font-family: 'Strange Cool', sans-serif;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn:hover {
  background: var(--accent);
  color: var(--white);
}

/* Footer Styles - Rich Mythical Theme */
.footer {
  background: linear-gradient(135deg, #3e1f0d 0%, #5a2d16 50%, #4a2512 100%);
  color: var(--ivory-white);
  padding: 0.8rem 1rem;
  text-align: center;
  border-top: 2px solid rgba(212, 165, 116, 0.3);
  box-shadow: 
    0 -4px 20px rgba(62, 31, 13, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 10;
  backdrop-filter: blur(15px);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(45, 49, 66, 0.4);
  z-index: 1;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-content p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  color: var(--ivory-white);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer-links span {
  font-weight: 700;
  color: var(--ivory-white);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.footer-links a {
  color: var(--ivory-white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border-radius: 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(250, 249, 246, 0.4);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.footer-links a:hover {
  color: var(--night-blue);
  background: var(--ivory-white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-color: var(--ivory-white);
}

.teaser {
  padding: 4rem 1rem 2rem 1rem;
  background: var(--beige);
  text-align: center;
}
.teaser h2 {
  font-family: 'Lora', serif;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.tour-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.tour-card {
  background: var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  width: 300px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform 0.2s;
}
.tour-card:hover {
  transform: translateY(-8px) scale(1.03);
}
.tour-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0.7rem;
  margin-bottom: 1rem;
}
.tour-card h3 {
  margin: 0.5rem 0 0.5rem 0;
  font-family: 'Lora', serif;
}
.tour-card p {
  font-family: 'Strange Cool', sans-serif;
  font-size: 1rem;
  color: var(--stone-grey);
}

.footer {
  background: var(--white);
  color: var(--stone-grey);
  text-align: center;
  padding: 1.2rem 0 0.7rem 0;
  margin-top: 3rem;
  box-shadow: 0 -2px 8px rgba(60,40,20,0.05);
}
.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-icon {
  color: var(--accent);
  margin-left: 1rem;
  text-decoration: none;
  font-weight: 600;
}
.footer-icon:hover {
  text-decoration: underline;
}

/* Tours Page Styles */
.tours-main {
  background: linear-gradient(135deg, #5D3A1A, #4A2A15, #3D1F10);
  min-height: 100vh;
  color: var(--ivory-white);
  overflow-x: hidden;
}

/* Tours Main - Modern */
.tours-main-modern {
  background: var(--bg-primary);
  background-size: 400% 400%;
  animation: gradientRotate 15s ease-in-out infinite;
  min-height: 100vh;
  transition: background 0.5s ease;
  font-family: 'Inter', sans-serif;
}

/* Modern Tours Hero Section */
.hero-tours-modern {
  background: transparent;
  padding: 2rem 0 7rem;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-container-tours-modern {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 85vh;
}

.hero-tours-left-modern {
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-tours-left-modern h1 {
  font-family: 'Butler', 'Playfair Display', serif !important;
  font-size: 5.5rem !important;
  font-weight: 700 !important;
  color: #C2704A !important;
  margin-bottom: 2rem !important;
  line-height: 1.2 !important;
  text-align: left !important;
}

.hero-tours-left-modern .hero-description {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 1.15rem !important;
  color: #6B5A47 !important;
  line-height: 1.75 !important;
  margin-bottom: 1.5rem !important;
  text-align: left !important;
  letter-spacing: 0.3px !important;
  font-weight: 400 !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  text-rendering: optimizeLegibility !important;
}

.hero-tours-left-modern .hero-cta-text {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 0.85rem !important;
  color: #8B7355 !important;
  line-height: 1.4 !important;
  margin-bottom: 2rem !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  text-align: left !important;
  font-weight: 500 !important;
}

.hero-tours-right-modern {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3rem;
}

.hero-tours-right-modern .hero-image-wrapper-modern {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 20px 60px rgba(194, 112, 74, 0.15),
    0 1px 3px rgba(194, 112, 74, 0.08);
  width: 100%;
}

.hero-tours-right-modern .hero-image-wrapper-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.hero-tours-right-modern .hero-image-wrapper-modern:hover img {
  transform: scale(1.03);
}

/* Scroll Indicator for Tours */
.scroll-indicator-tours {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  animation: fadeInBounce 2s ease-in-out infinite;
}

.scroll-indicator-tours span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: #8B7355;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.scroll-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #D4A574;
  border-radius: 50%;
  color: #C2704A;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.2);
  transition: all 0.3s ease;
}

.scroll-indicator-tours:hover .scroll-arrow {
  transform: translateY(5px);
  background: rgba(212, 165, 116, 0.2);
  border-color: #C2704A;
}

@keyframes fadeInBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) translateY(10px);
    opacity: 0.7;
  }
}

@keyframes fadeInBounceMobile {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.7;
  }
}

/* Tours Hero Section */
.tours-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--night-blue);
}

.hero-tours-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-tours-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(1.1);
}

.tours-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(44, 24, 16, 0.8) 0%,
    rgba(212, 165, 116, 0.3) 50%,
    rgba(255, 107, 53, 0.4) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--ivory-white);
  text-shadow: 0 4px 20px rgba(45, 49, 66, 0.8);
  max-width: 800px;
  padding: 2rem;
  text-align: center;
}

.tours-hero .hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--ivory-white);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(45, 49, 66, 0.8);
  line-height: 1.2;
  letter-spacing: 1px;
}

.tours-hero .hero-content p {
  font-family: 'Strange Cool', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--ivory-white);
  opacity: 0.95;
  line-height: 1.6;
  letter-spacing: 0.5px;
}

/* Tour Filters Section */
.tour-filters-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #6B4A2A, #5D3A1A, #4A2A15);
  border-bottom: 1px solid rgba(255, 107, 53, 0.3);
  position: relative;
  z-index: 2;
}

.filters-wrapper {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
  padding-top: 2rem;
}

.filter-btn {
  background: #FFFFFF;
  border: 1px solid #FFB36A;
  color: #2B2B2B;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 2px 8px rgba(255, 179, 106, 0.1);
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, #FFB36A 0%, #FFA94D 100%);
  border-color: #FFB36A;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 179, 106, 0.3);
}

/* Tours Grid Section */
.tours-grid-section {
  padding: 5rem 0;
  background: transparent;
  position: relative;
}

.tours-grid-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #FFB36A 50%, transparent 100%);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 1;
}

/* Tour Card Styles - Modern Luxury */
.tour-card {
  background: #FFFFFF;
  border: 1px solid #FFB36A;
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.tour-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, #C2704A 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.tour-card:hover::before {
  opacity: 1;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 40px rgba(194, 112, 74, 0.08),
    0 1px 3px rgba(194, 112, 74, 0.04);
  border-color: #D4A574;
}

.card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tour-card:hover .card-image img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(255, 107, 53, 0.7));
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tour-card:hover .card-overlay {
  opacity: 1;
}

/* Tour Duration - Bottom Left */
.tour-duration {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 3;
  background: rgba(255, 255, 255, 0.95);
  color: #2B2B2B;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(43, 43, 43, 0.1);
  white-space: nowrap;
  pointer-events: none;
}

/* Tour Price - Bottom Right */
.tour-price {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 3;
  background: rgba(255, 255, 255, 0.95);
  color: #2B2B2B;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(43, 43, 43, 0.1);
  white-space: nowrap;
  pointer-events: none;
}

/* ATV Price Styling - Simple Style */
.tour-price.atv-price {
  background: rgba(255, 255, 255, 0.95);
  color: #2B2B2B;
  font-weight: 600;
  letter-spacing: 0;
  text-shadow: none;
  border: none;
  box-shadow: 0 2px 10px rgba(43, 43, 43, 0.1);
}

.card-content {
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #FFB36A;
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.card-content p {
  color: #2B2B2B;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  font-size: 0.8125rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.card-features span {
  background: rgba(255, 179, 106, 0.1);
  color: #2B2B2B;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-size: 0.8rem;
  border: 1px solid rgba(194, 112, 74, 0.2);
  font-weight: 500;
}

.card-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.card-actions .btn {
  flex: 1;
  min-width: 120px;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
}

.btn-primary {
  background: linear-gradient(135deg, #FFB36A 0%, #FFA94D 100%);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(255, 179, 106, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FFA94D 0%, #FF9933 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 179, 106, 0.4);
}

.btn-secondary {
  background: rgba(255, 179, 106, 0.08);
  color: #2B2B2B;
  border-color: transparent;
}

.btn-secondary:hover {
  background: rgba(255, 179, 106, 0.15);
  border-color: rgba(255, 179, 106, 0.3);
  transform: translateY(-2px);
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: #FFFFFF;
  border: 1px solid rgba(255, 179, 106, 0.3);
  border-radius: 8px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  /* Hide scrollbar but keep scroll functionality */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.modal-content::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 179, 106, 0.1);
  color: #C2704A;
  border: 1px solid rgba(255, 179, 106, 0.3);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: linear-gradient(135deg, #FFB36A 0%, #FFA94D 100%);
  color: #FFFFFF;
  border-color: #FFB36A;
  transform: scale(1.1);
}

.modal-body {
  padding: 2rem;
  color: #2B2B2B;
  background: #FFFFFF;
}

/* Tour Gallery Styles */
.tour-gallery {
  margin-top: 2rem;
}

.tour-gallery h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #C2704A;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Modal Gallery Grid */
.modal-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
}

.modal-gallery-item {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.modal-gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 179, 106, 0.3);
  border-color: #FFB36A;
}

.modal-gallery-image {
  width: 100%;
  height: 80px;
  object-fit: cover;
  transition: filter 0.3s ease;
}

.modal-gallery-item:hover .modal-gallery-image {
  filter: brightness(1.1);
}

/* Modal Gallery Slider */
.modal-gallery-slider {
  max-width: 600px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid rgba(255, 179, 106, 0.2);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.modal-slider-container {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
}

.modal-slider-image-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.modal-slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.modal-slider-fade {
  opacity: 0.3;
  transform: scale(0.95);
}

.modal-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: #C2704A;
  border: 1px solid rgba(255, 179, 106, 0.3);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.modal-slider-prev {
  left: 15px;
}

.modal-slider-next {
  right: 15px;
}

.modal-slider-nav:hover {
  background: linear-gradient(135deg, #FFB36A 0%, #FFA94D 100%);
  color: #FFFFFF;
  border-color: #FFB36A;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 3px 10px rgba(255, 179, 106, 0.4);
}

.modal-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.9);
}

.modal-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 179, 106, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-slider-dot.active {
  background: #FFB36A;
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(255, 179, 106, 0.6);
}

.modal-slider-dot:hover {
  background: #C2704A;
  transform: scale(1.1);
}

/* Gallery Modal Styles */
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.gallery-modal.active {
  display: flex;
}

.gallery-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.9);
  color: #C2704A;
  border: 1px solid rgba(255, 179, 106, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.gallery-close:hover {
  background: linear-gradient(135deg, #FFB36A 0%, #FFA94D 100%);
  color: #FFFFFF;
  border-color: #FFB36A;
  transform: scale(1.1);
}

.gallery-container {
  position: relative;
  width: 90vw;
  max-width: 1000px;
  height: 70vh;
  max-height: 600px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: #FFFFFF;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: #C2704A;
  border: 1px solid rgba(255, 179, 106, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-prev {
  left: 20px;
}

.gallery-next {
  right: 20px;
}

.gallery-nav:hover {
  background: linear-gradient(135deg, #FFB36A 0%, #FFA94D 100%);
  color: #FFFFFF;
  border-color: #FFB36A;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 179, 106, 0.4);
}

.gallery-image-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
}

#galleryImage {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.5s ease;
  border-radius: 0;
}

.gallery-fade-in {
  animation: galleryFadeIn 0.5s ease-in-out;
}

@keyframes galleryFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.gallery-thumbnails {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.95), transparent);
  padding: 20px;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  max-height: 120px;
  overflow-y: auto;
  backdrop-filter: blur(10px);
}

.gallery-thumbnail {
  width: 70px;
  height: 50px;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  object-fit: cover;
  opacity: 0.7;
}

.gallery-thumbnail:hover {
  border-color: #FFB36A;
  transform: scale(1.05);
  opacity: 1;
}

.gallery-thumbnail.active {
  border-color: #FFB36A;
  transform: scale(1.1);
  opacity: 1;
  box-shadow: 0 3px 10px rgba(255, 179, 106, 0.5);
}

/* Modal Responsive Design */
@media (max-width: 768px) {
  .modal-overlay {
    padding: 1rem;
    align-items: flex-start;
    padding-top: 2rem;
  }
  
  .modal-content {
    width: 100%;
    max-width: 100%;
    max-height: 85vh;
    border-radius: 15px;
    margin: 0;
  }
  
  .modal-body {
    padding: 1.5rem;
  }
  
  .modal-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
    z-index: 11;
  }
  
  /* Tour modal header */
  .tour-modal-header h2 {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  .tour-meta {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .tour-meta span {
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
    text-align: center;
  }
  
  /* Tour description */
  .tour-description {
    margin-bottom: 1.5rem;
  }
  
  .tour-description p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    white-space: pre-line;
  }
  
  /* Tour highlights and itinerary */
  .tour-highlights h3,
  .tour-itinerary h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
  
  .tour-highlights ul,
  .tour-itinerary ul {
    margin-bottom: 1.5rem;
  }
  
  .tour-highlights li,
  .tour-itinerary li {
    font-size: 0.9rem;
    padding: 0.5rem 0;
    margin-bottom: 0.3rem;
  }
  
  /* Modal gallery */
  .modal-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
  }
  
  .modal-gallery-image {
    height: 60px;
  }
  
  .modal-slider-container {
    height: 250px;
  }
  
  /* Tour gallery title */
  .tour-gallery h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .modal-overlay {
    padding: 0.5rem;
    padding-top: 1rem;
  }
  
  .modal-content {
    border-radius: 12px;
    max-height: 90vh;
  }
  
  .modal-body {
    padding: 1rem;
  }
  
  .tour-modal-header h2 {
    font-size: 1.2rem;
  }
  
  .tour-meta span {
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem;
  }
  
  .tour-description p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .tour-highlights li,
  .tour-itinerary li {
    font-size: 0.85rem;
  }
  
  .modal-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .modal-slider-container {
    height: 200px;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .tours-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 0 1.5rem;
  }
}

@media (max-width: 900px) {
  .tours-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .card-content {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .tours-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
    max-width: 100%;
  }
  
  .tour-card {
    margin: 0;
    width: 100%;
  }
  
  .card-image {
    height: 220px;
  }
  
  .card-content {
    padding: 1.5rem;
  }
  
  .card-content h3 {
    font-size: 1.4rem;
  }
  
  .card-content p {
    font-size: 0.9rem;
  }
  
  .card-actions {
    flex-direction: column;
  }
  
  .card-actions .btn {
    width: 100%;
    min-width: auto;
  }
  
  .filters-wrapper {
    gap: 0.5rem;
    padding: 0 1rem;
  }
  
  .filter-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
  .modal-content {
    margin: 1rem;
    max-height: 95vh;
  }
  
  .gallery-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .gallery-nav {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .gallery-image-container {
    max-width: 90vw;
    max-height: 60vh;
  }
  
  .gallery-thumbnails {
    bottom: 1rem;
  }
  
  .gallery-thumbnail {
    width: 60px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .tours-grid {
    padding: 0 0.5rem;
    gap: 1rem;
  }
  
  .tour-card {
    border-radius: 15px;
  }
  
  .card-image {
    height: 200px;
  }
  
  .card-content {
    padding: 1.2rem;
  }
  
  .card-content h3 {
    font-size: 1.3rem;
  }
  
  .card-content p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  
  .card-features {
    margin-bottom: 1.5rem;
  }
  
  .card-features span {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }
  
  .card-actions .btn {
    padding: 0.65rem 1rem;
    font-size: 0.8rem;
    white-space: normal;
    line-height: 1.2;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
  }
  
  .hero-content .logo {
    font-size: 2.8rem;
    letter-spacing: 1px;
  }
  
  .hero-content p {
    font-size: 1.3rem;
    line-height: 1.5;
  }
  
  .tours-hero .hero-content h1 {
    font-size: 3rem;
    line-height: 1.1;
  }
  
  .tours-hero .hero-content p {
    font-size: 1.3rem;
    line-height: 1.4;
  }
  
  .tours-hero {
    min-height: 70vh;
  }
  
  .modal-gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.2rem;
  }
  
  .modal-gallery-image {
    height: 50px;
  }
  
  .modal-body {
    padding: 1.5rem;
  }
  
  .gallery-modal {
    padding: 0.5rem;
  }
  
  .gallery-container {
    width: 95vw;
    height: 60vh;
    max-height: 400px;
  }
  
  .gallery-nav {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }
  
  .gallery-prev {
    left: 10px;
  }
  
  .gallery-next {
    right: 10px;
  }
  
  .gallery-thumbnails {
    padding: 15px 10px;
    max-height: 80px;
    gap: 0.5rem;
  }
  
  .gallery-thumbnail {
    width: 50px;
    height: 35px;
  }
  
  .modal-gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.3rem;
  }
  
  .modal-gallery-image {
    height: 60px;
  }
  
  .modal-gallery-slider {
    max-width: 100%;
    margin: 0;
  }
  
  .modal-slider-container {
    height: 250px;
  }
  
  .modal-slider-nav {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }
  
  .modal-slider-prev {
    left: 10px;
  }
  
  .modal-slider-next {
    right: 10px;
  }
  
  .modal-slider-dots {
    padding: 10px;
    gap: 6px;
  }
  
  .modal-slider-dot {
    width: 8px;
    height: 8px;
  }
  
  .filters-wrapper {
    padding: 0 0.5rem;
  }
  
  .filter-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 360px) {
  .tours-grid {
    padding: 0 0.3rem;
  }
  
  .card-content {
    padding: 1rem;
  }
  
  .card-image {
    height: 180px;
  }
  
  .card-content h3 {
    font-size: 1.2rem;
  }
  
  .card-content p {
    font-size: 0.8rem;
  }
  
  .card-features span {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }
  
  .card-actions .btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}
.about-text {
  flex: 2;
  min-width: 250px;
}
.about-photo {
  flex: 1;
  min-width: 200px;
}
.about-photo img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}
.about-gallery-carousel {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
.carousel-img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 0.5rem;
  opacity: 0.5;
  transition: opacity 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.carousel-img.active {
  opacity: 1;
  box-shadow: 0 2px 8px rgba(60,40,20,0.18);
}

/* About Page Styles */
.about-main {
  background: var(--dark-bg);
  min-height: 100vh;
  padding-top: 0;
  margin-top: 0;
  position: relative;
}

/* Hero About Section */
.hero-about {
  position: relative;
  height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-about-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: var(--dark-bg);
}

.hero-about-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.3);
}

.hero-about-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--ivory-white);
  max-width: 800px;
  padding: 2rem;
}

.mythical-title {
  font-family: 'Lora', serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dawn-pink);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
  font-family: 'Strange Cool', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 3rem;
  color: var(--ivory-white);
  opacity: 0.9;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Strange Cool', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dawn-pink);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: 'Strange Cool', sans-serif;
  font-size: 0.9rem;
  color: var(--ivory-white);
  opacity: 0.8;
}

/* Our Story Section */
.our-story {
  padding: 5rem 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(212, 165, 116, 0.08) 0%, transparent 35%),
    linear-gradient(135deg, #3e1f0d 0%, #5a2d16 25%, #4a2512 50%, #6b3a20 75%, #2c1810 100%);
  background-size: 800px 800px, 600px 600px, 900px 900px, 100% 100%;
  background-position: 0% 0%, 100% 100%, 50% 50%, 0% 0%;
  position: relative;
  overflow: hidden;
  animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
  0%, 100% {
    background-position: 0% 0%, 100% 100%, 50% 50%, 0% 0%;
  }
  50% {
    background-position: 100% 50%, 0% 0%, 80% 20%, 0% 0%;
  }
}

.our-story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, 
      rgba(212, 165, 116, 0.1) 0%, 
      transparent 25%, 
      rgba(255, 107, 53, 0.08) 50%, 
      transparent 75%, 
      rgba(212, 165, 116, 0.06) 100%),
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      rgba(212, 165, 116, 0.03) 1px,
      transparent 2px,
      transparent 40px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0px,
      rgba(255, 107, 53, 0.02) 1px,
      transparent 2px,
      transparent 60px
    );
  pointer-events: none;
  animation: patternMove 15s linear infinite;
}

@keyframes patternMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(40px, 60px);
  }
}

.our-story::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 15%, rgba(212, 165, 116, 0.12) 0%, transparent 25%),
    radial-gradient(circle at 85% 15%, rgba(255, 107, 53, 0.08) 0%, transparent 30%),
    radial-gradient(circle at 15% 85%, rgba(212, 165, 116, 0.06) 0%, transparent 35%),
    radial-gradient(circle at 85% 85%, rgba(255, 107, 53, 0.10) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(212, 165, 116, 0.04) 0%, transparent 60%);
  background-size: 300px 300px, 250px 250px, 400px 400px, 350px 350px, 500px 500px;
  pointer-events: none;
  z-index: 1;
  animation: floatingOrbs 25s ease-in-out infinite;
}

@keyframes floatingOrbs {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.8;
  }
  25% {
    transform: scale(1.1) rotate(90deg);
    opacity: 0.6;
  }
  50% {
    transform: scale(0.9) rotate(180deg);
    opacity: 1;
  }
  75% {
    transform: scale(1.05) rotate(270deg);
    opacity: 0.7;
  }
}

/* Particle Effects */
.story-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(212, 165, 116, 0.4) 1px, transparent 1px),
    radial-gradient(circle at 75% 25%, rgba(255, 107, 53, 0.3) 1px, transparent 1px),
    radial-gradient(circle at 25% 75%, rgba(212, 165, 116, 0.2) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(255, 107, 53, 0.4) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(212, 165, 116, 0.1) 1px, transparent 1px);
  background-size: 80px 80px, 120px 120px, 100px 100px, 90px 90px, 60px 60px;
  animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(-20px, -30px) rotate(360deg);
  }
}

/* Texture Overlay */
.story-texture {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
  background: 
    linear-gradient(45deg, transparent 40%, rgba(212, 165, 116, 0.05) 50%, transparent 60%),
    linear-gradient(-45deg, transparent 40%, rgba(255, 107, 53, 0.03) 50%, transparent 60%),
    radial-gradient(ellipse at center, transparent 60%, rgba(212, 165, 116, 0.08) 100%);
  background-size: 200px 200px, 150px 150px, 800px 400px;
  animation: textureWave 12s ease-in-out infinite;
}

@keyframes textureWave {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1) rotate(2deg);
    opacity: 1;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 3;
}

.section-header h2 {
  font-family: 'Lora', serif;
  font-size: 3.2rem;
  color: var(--dawn-pink);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.section-header h2::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -50px;
  right: -50px;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(212, 165, 116, 0.3) 20%, 
    rgba(255, 107, 53, 0.5) 50%, 
    rgba(212, 165, 116, 0.3) 80%, 
    transparent 100%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--dawn-pink), var(--sage-green));
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}


.section-subtitle {
  font-family: 'Strange Cool', sans-serif;
  font-size: 1.4rem !important;
  color: #ffffff !important;
  opacity: 1 !important;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.section-header .section-subtitle {
  font-size: 1.8rem !important;
  color: #ffffff !important;
  opacity: 1 !important;
}

.our-story .section-subtitle {
  font-size: 1.8rem !important;
  color: #ffffff !important;
  opacity: 1 !important;
}

.story-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.story-text {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
}

.story-block {
  background: linear-gradient(135deg, #3e1f0d 0%, #5a2d16 50%, #4a2512 100%);
  border: 2px solid rgba(212, 165, 116, 0.3);
  border-radius: 20px;
  padding: 2rem;
  margin: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  width: 100%;
  min-height: 420px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

.story-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.15), transparent);
  transition: left 0.8s ease;
}

.story-block:hover::before {
  left: 100%;
}

.story-block:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(212, 165, 116, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: var(--sage-green);
}

.story-block h3 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--dawn-pink);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 3rem;
  display: flex;
  align-items: center;
  min-height: 2rem;
}

.story-block h3::before {
  content: '✨';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sage-green);
  font-size: 1.5rem;
  text-shadow: 0 0 10px rgba(212, 165, 116, 0.5);
}

.story-block:nth-child(1) h3::before {
  content: '🌟';
}

.story-block:nth-child(2) h3::before {
  content: '🎯';
}

.story-block:nth-child(3) h3::before {
  content: '💎';
}

.story-block p {
  font-family: 'Strange Cool', sans-serif;
  color: var(--ivory-white);
  line-height: 1.7;
  opacity: 0.95;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-align: justify;
  position: relative;
  margin: 0;
  flex: 1;
  hyphens: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.story-gallery {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 1rem 0;
  justify-items: center;
  align-items: start;
  max-width: 100%;
}

.gallery-item {
  position: relative;
  width: 100%;
  max-width: 250px;
  height: 200px;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(212, 165, 116, 0.4);
  background: var(--night-blue);
}

.gallery-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border-color: var(--dawn-pink);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  border-radius: 12px;
}

.gallery-item:hover img {
  transform: scale(1.15);
  filter: brightness(1) contrast(1.3) saturate(1.3);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    transparent 0%, 
    rgba(0, 0, 0, 0.3) 30%, 
    rgba(44, 24, 16, 0.9) 70%, 
    rgba(0, 0, 0, 0.95) 100%
  );
  padding: 3rem 2rem 2rem;
  color: var(--ivory-white);
  z-index: 2;
  transform: translateY(60%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay span {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dawn-pink);
  text-shadow: 
    0 0 10px rgba(255, 107, 53, 0.5),
    0 2px 4px rgba(0, 0, 0, 0.8);
  position: relative;
}

.gallery-overlay span::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--dawn-pink), var(--sage-green));
  transition: width 0.4s ease;
}

.gallery-item:hover .gallery-overlay span::before {
  width: 60px;
}

.gallery-overlay::before {
  content: attr(data-icon);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  opacity: 0.7;
  filter: drop-shadow(0 0 10px rgba(212, 165, 116, 0.5));
}

/* Story section animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.story-block {
  animation: fadeInUp 0.6s ease forwards;
}

.story-block:nth-child(1) { animation-delay: 0.1s; }
.story-block:nth-child(2) { animation-delay: 0.3s; }
.story-block:nth-child(3) { animation-delay: 0.5s; }

.gallery-item {
  animation: fadeInUp 0.6s ease forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.2s; }
.gallery-item:nth-child(2) { animation-delay: 0.4s; }
.gallery-item:nth-child(3) { animation-delay: 0.6s; }

/* Responsive adjustments for Our Story section */
@media (max-width: 768px) {
  .story-content {
    gap: 3rem;
    padding: 0 1rem;
  }
  
  .story-text {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .story-block {
    padding: 1.5rem;
    min-height: 280px;
    height: auto;
    margin: 0;
    display: flex;
    flex-direction: column;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .gallery-item {
    height: 250px;
    width: 250px;
    border-radius: 16px;
  }
  
  .story-block h3 {
    font-size: 1.4rem;
    padding-left: 2.5rem;
  }
  
  .story-block h3::before {
    font-size: 1.3rem;
  }
  
  .story-block p {
    font-size: 1rem;
    line-height: 1.7;
    flex: 1;
  }
  
  .story-block:hover {
    transform: translateY(-4px) scale(1.01);
  }
  
  .story-gallery {
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0.5rem;
    padding-top: 2rem;
    align-items: center;
  }
  
  .gallery-item {
    height: 250px;
    width: 250px;
    transform: rotate(0deg) !important;
    margin-bottom: 0;
  }
  
  .gallery-item:nth-child(1) {
    border-radius: 20px;
    margin-top: 0;
  }
  
  .gallery-item:nth-child(2) {
    border-radius: 20px;
    margin-top: 1rem;
  }
  
  .gallery-item:nth-child(3) {
    border-radius: 20px;
    margin-top: 1rem;
  }
  
  .gallery-item:hover {
    transform: translateY(-8px) scale(1.02) rotate(0deg) !important;
  }
  
  .gallery-overlay {
    padding: 2rem 1.5rem 1.5rem;
  }
  
  .gallery-overlay span {
    font-size: 1.2rem;
  }
  
  .gallery-item img {
    height: 180px;
  }
  
  .gallery-overlay {
    padding: 1.5rem 1rem 1rem;
  }
  
  .gallery-overlay span {
    font-size: 1.1rem;
  }
}

/* Tablet responsive */
@media (min-width: 769px) and (max-width: 1024px) {
  .story-text {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
  
  .story-block {
    padding: 2rem;
    min-height: 320px;
    height: auto;
    display: flex;
    flex-direction: column;
  }
  
  .story-block h3 {
    font-size: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
  
  .gallery-item {
    height: 260px;
    width: 260px;
  }
}

@media (max-width: 480px) {
  .story-content {
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .story-text {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .story-block {
    padding: 1.2rem;
    border-radius: 15px;
    min-height: 250px;
    height: auto;
    display: flex;
    flex-direction: column;
  }
  
  .story-block h3 {
    font-size: 1.1rem;
    padding-left: 1.2rem;
  }
  
  .story-block h3::before {
    font-size: 0.9rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery-item {
    height: 200px;
    width: 200px;
    margin: 0;
  }
  
  .story-block p {
    font-size: 0.85rem;
    line-height: 1.5;
    flex: 1;
  }
  
  .gallery-item {
    border-radius: 15px;
  }
  
  .gallery-item img {
    height: 160px;
  }
  
  .gallery-overlay {
    padding: 1.2rem 0.8rem 0.8rem;
  }
  
  .gallery-overlay span {
    font-size: 1rem;
  }
}

/* Our Philosophy/Values Section */
.our-philosophy {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--dark-bg), #2a2d3a);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.philosophy-card {
  background: rgba(45, 49, 66, 0.8);
  border: 1px solid var(--sage-green);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.philosophy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(163, 177, 138, 0.2);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.philosophy-card h3 {
  font-size: 1.5rem;
  color: var(--dawn-pink);
  margin-bottom: 1rem;
}

.philosophy-card p {
  color: var(--ivory-white);
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

/* Meet Our Team Section */
.meet-guardians {
  padding: 5rem 0;
  background: var(--dark-bg);
}

.guardians-intro {
  text-align: center;
  color: var(--ivory-white);
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  opacity: 0.9;
}

.guardians-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.guardian-card {
  background: rgba(45, 49, 66, 0.8);
  border: 1px solid var(--sage-green);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.guardian-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(163, 177, 138, 0.2);
}

.guardian-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--dawn-pink), var(--sage-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.avatar-icon {
  font-size: 2rem;
}

.guardian-card h3 {
  font-size: 1.3rem;
  color: var(--dawn-pink);
  margin-bottom: 1rem;
}

.guardian-card p {
  font-family: 'Strange Cool', sans-serif;
  color: var(--ivory-white);
  line-height: 1.6;
  opacity: 0.9;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 5rem 0;
  background: linear-gradient(135deg, #2a2d3a, var(--dark-bg));
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  background: rgba(45, 49, 66, 0.8);
  border: 1px solid var(--sage-green);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(163, 177, 138, 0.2);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-item h3 {
  font-size: 1.3rem;
  color: var(--dawn-pink);
  margin-bottom: 1rem;
}

.feature-item p {
  font-family: 'Strange Cool', sans-serif;
  color: var(--ivory-white);
  line-height: 1.6;
  opacity: 0.9;
}

/* Call to Action Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--dawn-pink), var(--sage-green));
  text-align: center;
}

/* Story CTA (within Our Story section) */
.story-cta {
  margin-top: 4rem;
  padding: 3rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(212, 165, 116, 0.1));
  border-radius: 20px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  backdrop-filter: blur(5px);
}

.story-cta .cta-content h2 {
  font-family: 'Lora', serif;
  font-size: 2.2rem;
  color: var(--sage-green);
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.story-cta .cta-content p {
  font-size: 1.1rem;
  color: var(--night-blue);
  margin-bottom: 2rem;
  opacity: 0.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.story-cta .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-content h2 {
  font-family: 'Lora', serif;
  font-size: 2.5rem;
  color: var(--ivory-white);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--ivory-white);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid;
  cursor: pointer;
  display: inline-block;
}

.btn-primary {
  background: var(--dark-bg);
  color: var(--ivory-white);
  border-color: var(--ivory-white);
}

.btn-primary:hover {
  background: var(--dawn-pink);
  color: var(--ivory-white);
}

.btn-secondary {
  background: transparent;
 
  border-color: var(--ivory-white);
}

.btn-secondary:hover {
  background: var(--dawn-pink);
  color: var(--ivory-white);
}

/* Floating Buttons for About Page */
.floating-lang {
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 101;
  background: transparent;
  backdrop-filter: blur(10px);
  border: 2px solid #FFB36A;
  padding: 0.5rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(255, 179, 106, 0.2);
}

.floating-lang:hover {
  background: linear-gradient(135deg, #FFB36A 0%, #FFA94D 100%);
  border-color: #FFB36A;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 179, 106, 0.3);
}

/* Dark Mode Toggle Button */
.dark-mode-toggle {
  position: fixed;
  top: 1.5rem;
  left: 4.5rem;
  z-index: 101;
  background: transparent;
  backdrop-filter: blur(10px);
  border: 2px solid #FFB36A;
  padding: 0.5rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(255, 179, 106, 0.2);
  cursor: pointer;
  overflow: hidden;
}

.dark-mode-toggle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFB36A 0%, #FFA94D 100%);
  transform: translate(-50%, -50%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.dark-mode-toggle:hover::before {
  width: 100%;
  height: 100%;
}

.dark-mode-toggle:hover {
  border-color: #FFB36A;
  transform: scale(1.05) rotate(15deg);
  box-shadow: 0 4px 15px rgba(255, 179, 106, 0.3);
}

.dark-mode-toggle svg {
  width: 20px;
  height: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  fill: #FFB36A;
}

.dark-mode-toggle:hover svg {
  fill: #FFFFFF;
  transform: rotate(180deg);
}

[data-theme="dark"] .dark-mode-toggle svg {
  fill: #D4A574;
}

[data-theme="dark"] .dark-mode-toggle:hover svg {
  fill: #FFFFFF;
}

/* Dark Mode Toggle for index.html (lang-toggle-top style) */
.dark-mode-toggle.lang-toggle-top {
  position: absolute;
  top: 2rem;
  left: 5rem;
  z-index: 10;
}

@media (max-width: 768px) {
  .dark-mode-toggle.lang-toggle-top {
    left: 4.5rem;
  }
}

/* Dark Mode General Styles */
[data-theme="dark"] .tour-card,
[data-theme="dark"] .contact-card,
[data-theme="dark"] .luxury-card-modern {
  background: var(--bg-card);
  color: var(--text-primary);
  border-color: var(--border-color);
  transition: background 0.5s ease, color 0.5s ease, border-color 0.5s ease;
}

[data-theme="dark"] .card-content h3,
[data-theme="dark"] .card-content-modern h3,
[data-theme="dark"] .contact-content h3,
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4 {
  color: var(--text-primary);
  transition: color 0.5s ease;
}

[data-theme="dark"] .card-content p,
[data-theme="dark"] .card-content-modern p,
[data-theme="dark"] .contact-content p,
[data-theme="dark"] p {
  color: var(--text-secondary);
  transition: color 0.5s ease;
}

[data-theme="dark"] .map-container {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .address-text {
  color: var(--text-secondary);
}

[data-theme="dark"] .site-footer {
  background: var(--bg-card);
  color: var(--text-primary);
  border-color: var(--border-color);
  transition: background 0.5s ease, color 0.5s ease;
}

[data-theme="dark"] .site-footer p,
[data-theme="dark"] .site-footer a {
  color: var(--text-secondary);
  transition: color 0.5s ease;
}

[data-theme="dark"] .hamburger-dropdown {
  background: var(--bg-card);
  border-color: var(--border-color);
  transition: background 0.5s ease, border-color 0.5s ease;
}

[data-theme="dark"] .hamburger-dropdown a {
  color: var(--text-primary);
  transition: color 0.5s ease;
}

[data-theme="dark"] .hamburger-dropdown a:hover {
  background: rgba(212, 165, 116, 0.1);
}

[data-theme="dark"] .btn-primary {
  background: linear-gradient(135deg, #FFB36A 0%, #FFA94D 100%);
  color: #FFFFFF;
  border-color: #FFB36A;
  box-shadow: 0 2px 8px rgba(255, 179, 106, 0.3);
  transition: all 0.5s ease;
}

[data-theme="dark"] .btn-primary:hover {
  background: linear-gradient(135deg, #FFA94D 0%, #FF9933 100%);
  box-shadow: 0 4px 12px rgba(255, 179, 106, 0.4);
}

[data-theme="dark"] .btn-secondary {
  background: rgba(44, 24, 16, 0.9);
  color: #FFF8F0;
  border: 2px solid rgba(212, 165, 116, 0.5);
  transition: all 0.5s ease;
}

[data-theme="dark"] .btn-secondary:hover {
  background: rgba(212, 165, 116, 0.3);
  border-color: #FFB36A;
  color: #FFFFFF;
}

[data-theme="dark"] .btn-modern,
[data-theme="dark"] .filter-btn {
  transition: background 0.5s ease, color 0.5s ease, border-color 0.5s ease;
}

[data-theme="dark"] .hero-content,
[data-theme="dark"] .hero-about-modern,
[data-theme="dark"] .hero-tours-modern,
[data-theme="dark"] .contact-hero-content {
  color: var(--text-primary);
  transition: color 0.5s ease;
}

[data-theme="dark"] .section-intro-modern,
[data-theme="dark"] .section-title-modern,
[data-theme="dark"] .section-subtitle-modern {
  color: var(--text-primary);
  transition: color 0.5s ease;
}

[data-theme="dark"] .cta-section-modern {
  background: var(--bg-card);
  border-color: var(--border-color);
  transition: background 0.5s ease, border-color 0.5s ease;
}

[data-theme="dark"] .cta-content-modern h2,
[data-theme="dark"] .cta-content-modern p {
  color: var(--text-primary);
  transition: color 0.5s ease;
}

[data-theme="dark"] .btn-modern.btn-primary-modern {
  background: linear-gradient(135deg, #FFB36A 0%, #FFA94D 100%);
  color: #FFFFFF;
  border-color: #FFB36A;
}

[data-theme="dark"] .btn-modern.btn-primary-modern:hover {
  background: linear-gradient(135deg, #FFA94D 0%, #FF9933 100%);
  box-shadow: 0 8px 20px rgba(255, 179, 106, 0.4);
}

[data-theme="dark"] .btn-modern.btn-secondary-modern {
  background: rgba(44, 24, 16, 0.9);
  color: #FFF8F0;
  border: 2px solid rgba(212, 165, 116, 0.5);
}

[data-theme="dark"] .btn-modern.btn-secondary-modern:hover {
  background: rgba(212, 165, 116, 0.3);
  border-color: #FFB36A;
  color: #FFFFFF;
}

/* Dark Mode - Hero Sections */
[data-theme="dark"] .hero-content h1,
[data-theme="dark"] .hero-content p,
[data-theme="dark"] .hero-about-modern h1,
[data-theme="dark"] .hero-about-modern p,
[data-theme="dark"] .hero-tours-left-modern h1,
[data-theme="dark"] .hero-tours-left-modern p,
[data-theme="dark"] .contact-hero-content h1,
[data-theme="dark"] .contact-hero-content p {
  color: var(--text-primary);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: color 0.5s ease;
}

[data-theme="dark"] .hero-tours-left-modern h1 {
  color: #EAE0D5 !important;
}

[data-theme="dark"] .hero-tours-left-modern .hero-description {
  color: #D4C5B3 !important;
}

[data-theme="dark"] .hero-tours-left-modern .hero-cta-text {
  color: #B8A896 !important;
}

/* Dark Mode - Stats & Badges */
[data-theme="dark"] .stat-card-modern,
[data-theme="dark"] .stat-number-modern,
[data-theme="dark"] .stat-label-modern {
  background: rgba(44, 24, 16, 0.8);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  transition: all 0.5s ease;
}

/* Dark Mode - Tour Duration & Price */
[data-theme="dark"] .tour-duration {
  background: rgba(44, 24, 16, 0.95);
  color: #FFF8F0;
  border: 1px solid rgba(212, 165, 116, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.5s ease;
}

[data-theme="dark"] .tour-price {
  background: rgba(44, 24, 16, 0.95);
  color: #FFF8F0;
  border: 1px solid rgba(212, 165, 116, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.5s ease;
}

[data-theme="dark"] .tour-price.atv-price {
  background: rgba(44, 24, 16, 0.95);
  color: #FFF8F0;
  border: 1px solid rgba(212, 165, 116, 0.3);
  text-shadow: none;
}

/* Dark Mode - Gallery & Sliders */
[data-theme="dark"] .gallery-item-modern,
[data-theme="dark"] .gallery-slider-container,
[data-theme="dark"] .gallery-image-wrapper,
[data-theme="dark"] .slider-btn {
  background: var(--bg-card);
  border-color: var(--border-color);
  transition: all 0.5s ease;
}

[data-theme="dark"] .gallery-title,
[data-theme="dark"] .slider-btn svg {
  color: var(--text-primary);
  fill: var(--text-primary);
  transition: color 0.5s ease;
}

/* Dark Mode - Contact Page Elements */
[data-theme="dark"] .contact-icon {
  background: rgba(212, 165, 116, 0.2);
  border-color: var(--border-color);
  transition: all 0.5s ease;
}

[data-theme="dark"] .contact-icon i {
  color: var(--text-secondary);
  transition: color 0.5s ease;
}

[data-theme="dark"] .phone-item,
[data-theme="dark"] .hours-badge {
  background: rgba(44, 24, 16, 0.6);
  border-color: var(--border-color);
  transition: all 0.5s ease;
}

[data-theme="dark"] .phone-number,
[data-theme="dark"] .hours-text,
[data-theme="dark"] .hours-time {
  color: var(--text-primary);
  transition: color 0.5s ease;
}

[data-theme="dark"] .address-text {
  color: var(--text-secondary);
  transition: color 0.5s ease;
}

/* Dark Mode - Tour Card Details */
[data-theme="dark"] .card-features span,
[data-theme="dark"] .card-overlay {
  background: rgba(44, 24, 16, 0.9);
  color: var(--text-primary);
  border-color: var(--border-color);
  transition: all 0.5s ease;
}

/* Dark Mode - About Page Cards */
[data-theme="dark"] .card-header-modern h3,
[data-theme="dark"] .card-icon-luxury-modern,
[data-theme="dark"] .card-tag-modern {
  color: var(--text-primary);
  transition: color 0.5s ease;
}

[data-theme="dark"] .card-footer-modern {
  border-color: var(--border-color);
  transition: border-color 0.5s ease;
}

/* Dark Mode - Section Backgrounds */
[data-theme="dark"] .about-cards-section-modern,
[data-theme="dark"] .gallery-section-modern,
[data-theme="dark"] .tours-grid-section,
[data-theme="dark"] .contact-info-section {
  background: transparent;
  transition: background 0.5s ease;
}

[data-theme="dark"] .contact-info-section::before {
  background: linear-gradient(135deg, rgba(44, 24, 16, 0.3), rgba(212, 165, 116, 0.2));
  border-color: var(--border-color);
  transition: all 0.5s ease;
}

/* Dark Mode - Filters */
[data-theme="dark"] .filter-btn {
  background: rgba(44, 24, 16, 0.6);
  color: var(--text-primary);
  border-color: var(--border-color);
  transition: all 0.5s ease;
}

[data-theme="dark"] .filter-btn:hover,
[data-theme="dark"] .filter-btn.active {
  background: linear-gradient(135deg, #FFB36A 0%, #FFA94D 100%);
  color: #FFFFFF;
  border-color: #FFB36A;
}

/* Dark Mode - Modal */
[data-theme="dark"] .modal-content {
  background: var(--bg-card);
  border-color: var(--border-color);
  transition: all 0.5s ease;
}

[data-theme="dark"] .modal-body,
[data-theme="dark"] .modal-body h2,
[data-theme="dark"] .modal-body h3,
[data-theme="dark"] .modal-body p,
[data-theme="dark"] .modal-body li {
  color: var(--text-primary);
  transition: color 0.5s ease;
}

/* Dark Mode - Hero Image Wrappers */
[data-theme="dark"] .hero-image-wrapper-modern,
[data-theme="dark"] .hero-right-modern {
  transition: all 0.5s ease;
}

[data-theme="dark"] .hero-image-wrapper-modern::before {
  background: linear-gradient(135deg, rgba(44, 24, 16, 0.3), transparent);
  transition: background 0.5s ease;
}

/* Dark Mode - Hamburger Menu Lines */
[data-theme="dark"] .hamburger-line {
  background: var(--text-secondary);
  transition: background 0.5s ease;
}

[data-theme="dark"] .hamburger-menu {
  background: var(--bg-card);
  border-color: var(--border-color);
  transition: all 0.5s ease;
}

[data-theme="dark"] .hamburger-menu:hover .hamburger-line {
  background: #FFB36A;
}

/* Dark Mode - Floating Buttons */
[data-theme="dark"] .floating-lang,
[data-theme="dark"] .floating-menu {
  background: rgba(44, 24, 16, 0.8);
  backdrop-filter: blur(10px);
  border-color: var(--border-color);
  transition: all 0.5s ease;
}

[data-theme="dark"] .floating-lang:hover,
[data-theme="dark"] .floating-menu:hover {
  background: linear-gradient(135deg, #FFB36A 0%, #FFA94D 100%);
  border-color: #FFB36A;
}

/* Dark Mode - Buttons */
[data-theme="dark"] .btn-call,
[data-theme="dark"] .btn-whatsapp,
[data-theme="dark"] .btn-instagram,
[data-theme="dark"] .btn-email,
[data-theme="dark"] .btn-address {
  background: rgba(212, 165, 116, 0.2);
  color: var(--text-primary);
  border-color: var(--border-color);
  transition: all 0.5s ease;
}

[data-theme="dark"] .btn-call:hover,
[data-theme="dark"] .btn-whatsapp:hover,
[data-theme="dark"] .btn-instagram:hover,
[data-theme="dark"] .btn-email:hover,
[data-theme="dark"] .btn-address:hover {
  background: linear-gradient(135deg, #FFB36A 0%, #FFA94D 100%);
  color: #FFFFFF;
  border-color: #FFB36A;
}

/* Dark Mode - Hero Buttons */
[data-theme="dark"] .hero-btn-primary-modern,
[data-theme="dark"] .hero-btn-secondary-modern,
[data-theme="dark"] .btn-primary-modern,
[data-theme="dark"] .btn-secondary-modern {
  transition: all 0.5s ease;
}

[data-theme="dark"] .hero-btn-primary-modern {
  background: linear-gradient(135deg, #FFB36A 0%, #FFA94D 100%);
  color: #FFFFFF;
  border-color: #FFB36A;
}

[data-theme="dark"] .hero-btn-primary-modern:hover {
  background: linear-gradient(135deg, #FFA94D 0%, #FF9933 100%);
  box-shadow: 0 8px 20px rgba(255, 179, 106, 0.4);
}

[data-theme="dark"] .hero-btn-secondary-modern,
[data-theme="dark"] .btn-secondary-modern {
  background: rgba(44, 24, 16, 0.9);
  color: #FFF8F0;
  border: 2px solid rgba(212, 165, 116, 0.5);
  backdrop-filter: blur(10px);
}

[data-theme="dark"] .hero-btn-secondary-modern:hover,
[data-theme="dark"] .btn-secondary-modern:hover {
  background: rgba(212, 165, 116, 0.3);
  border-color: #FFB36A;
  color: #FFFFFF;
}

[data-theme="dark"] .btn-icon-modern {
  filter: brightness(1.2);
}

[data-theme="dark"] .hero-btn-primary-modern span,
[data-theme="dark"] .hero-btn-secondary-modern span {
  color: inherit;
  text-shadow: none;
}

/* Dark Mode - WhatsApp Float Button */
[data-theme="dark"] .whatsapp-float {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
}

/* Theme Transition Animation */
.theme-transitioning * {
  transition: background 0.5s ease, color 0.5s ease, border-color 0.5s ease !important;
}

.floating-menu {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 101;
  background: transparent;
  backdrop-filter: blur(10px);
  border: 2px solid #FFB36A;
  padding: 0.8rem;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(255, 179, 106, 0.2);
}

.floating-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 179, 106, 0.1), transparent);
  transition: left 0.5s;
}

.floating-menu:hover::before {
  left: 100%;
}

.floating-menu:hover {
  background: rgba(255, 179, 106, 0.1);
  border-color: #FFB36A;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 179, 106, 0.3);
}

/* Contact Page */
.contact-main {
  min-height: 100vh;
  background: var(--bg-primary);
  background-size: 400% 400%;
  animation: gradientRotate 15s ease-in-out infinite;
  transition: background 0.5s ease;
  font-family: 'Inter', sans-serif;
}

.contact-hero {
  background: linear-gradient(135deg, rgba(44, 24, 16, 0.9), rgba(44, 24, 16, 0.7)), 
              linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(212, 165, 116, 0.1));
  background-size: cover;
  background-position: center;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ivory-white);
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.contact-hero .hero-content {
  position: relative;
  z-index: 2;
}

.contact-hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, var(--ivory-white), var(--dawn-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { filter: drop-shadow(0 0 5px rgba(255, 107, 53, 0.3)); }
  to { filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.6)); }
}

.contact-hero .hero-content p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  opacity: 0.95;
  line-height: 1.6;
}

.contact-info-section {
  padding: 2rem 0 6rem;
  background: transparent;
  position: relative;
}

@keyframes contactBackgroundShift {
  0%, 100% {
    background-position: 0% 0%, 100% 100%, 50% 50%, 0% 0%;
  }
  50% {
    background-position: 100% 50%, 0% 0%, 80% 20%, 0% 0%;
  }
}

.contact-info-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 179, 106, 0.3) 50%, transparent 100%);
}

@keyframes contactPatternMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(40px, 60px);
  }
}


/* Contact Hero Content */
.contact-hero-content {
  text-align: center;
  padding: 2rem 0 3rem;
  position: relative;
  z-index: 2;
}

.contact-hero-content h1 {
  font-family: 'Butler', 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #C2704A;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-hero-content p {
  font-family: 'Strange Cool', sans-serif;
  font-size: 1.2rem;
  color: var(--ivory-white);
  max-width: 600px;
  margin: 0 auto 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
  line-height: 1.6;
}

.contact-subtitle {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 1.15rem !important;
  color: #5D4E3F !important;
  max-width: 650px !important;
  margin: 1.5rem auto 2.5rem !important;
  text-shadow: none !important;
  opacity: 1 !important;
  line-height: 1.7 !important;
  font-weight: 400 !important;
  letter-spacing: 0.3px !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.contact-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 2px solid rgba(255, 179, 106, 0.2);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
  transition: left 0.6s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(212, 165, 116, 0.25);
  border-color: rgba(212, 165, 116, 0.5);
}

.contact-card:hover::before {
  left: 100%;
}

.contact-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: #FFB36A;
}

.contact-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(255, 179, 106, 0.2), rgba(255, 179, 106, 0.15));
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.2rem;
  color: #FFB36A;
  box-shadow: 0 10px 25px rgba(255, 179, 106, 0.2);
  border: 2px solid rgba(255, 179, 106, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.contact-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.contact-card:hover .contact-icon::before {
  transform: translateX(100%);
}

.contact-card:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 35px rgba(255, 179, 106, 0.3);
  border-color: #FFB36A;
}

/* Map Card Specific Styles */
.contact-card-map {
  text-align: left;
}

.map-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.map-header .contact-icon {
  margin: 0;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  font-size: 1.8rem;
}

.map-title {
  flex: 1;
}

.map-title h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.8rem;
  color: var(--text-primary);
}

.address-text {
  margin: 0;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.map-container {
  margin: 1.5rem 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  display: block;
  width: 100%;
}

.contact-content h3 {
  color: #2B2B2B;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-content p {
  color: #2B2B2B;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  opacity: 0.9;
}

.address-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: #FFB36A;
}

.phone-numbers {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.phone-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 179, 106, 0.15);
  padding: 1.2rem;
  border-radius: 2px;
  border: 1px solid rgba(255, 179, 106, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.phone-item:hover {
  background: rgba(255, 179, 106, 0.25);
  border-color: #FFB36A;
  transform: translateY(-2px);
}

.phone-number {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2B2B2B;
}

.phone-buttons {
  display: flex;
  gap: 0.5rem;
}

.btn-call, .btn-whatsapp {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-call {
  background: linear-gradient(135deg, var(--sage-green), #7a8b5a);
  color: var(--ivory-white);
}

.btn-call:hover {
  background: linear-gradient(135deg, var(--dark-bg), #2a2d3a);
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--ivory-white);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #128C7E, #075E54);
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-instagram, .btn-email, .btn-address {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
  border: 2px solid;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--ivory-white);
  border-color: transparent;
}

.btn-instagram:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 30px rgba(220, 39, 67, 0.4);
}

.btn-email {
  background: linear-gradient(135deg, var(--dark-bg), #2a2d3a);
  color: var(--ivory-white);
  border-color: var(--dawn-pink);
}

.btn-email:hover {
  background: linear-gradient(135deg, var(--dawn-pink), #ff6b9d);
  color: var(--ivory-white);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 30px rgba(255, 182, 193, 0.4);
}

.btn-address {
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: var(--ivory-white);
  border-color: transparent;
}

.btn-address:hover {
  background: linear-gradient(135deg, #357ae8, #2d8e47);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 30px rgba(66, 133, 244, 0.4);
}

/* Hours Display Styling */
.hours-display {
  margin-top: 1.5rem;
}

.hours-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.2), rgba(255, 107, 53, 0.15));
  border: 2px solid rgba(212, 165, 116, 0.4);
  border-radius: 2px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.hours-badge:hover {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.3), rgba(255, 107, 53, 0.25));
  border-color: var(--dawn-pink);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 165, 116, 0.3);
}

.hours-badge i {
  font-size: 1.8rem;
  color: var(--dawn-pink);
  background: linear-gradient(135deg, var(--dawn-pink), #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hours-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hours-text strong {
  font-size: 1.1rem;
  color: var(--ivory-white);
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hours-time {
  font-size: 0.95rem;
  color: var(--dawn-pink);
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.business-hours-section {
  padding: 2rem 0 4rem;
}

.hours-card {
  background: linear-gradient(135deg, rgba(45, 49, 66, 0.95), rgba(45, 49, 66, 0.85));
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  margin: 0 auto;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(163, 177, 138, 0.3);
  position: relative;
  overflow: hidden;
}

.hours-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(163, 177, 138, 0.1), transparent);
  transition: left 0.6s ease;
}

.hours-card:hover::before {
  left: 100%;
}

.hours-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--dawn-pink);
}

.hours-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(45, 49, 66, 0.9), rgba(45, 49, 66, 0.7));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: var(--dawn-pink);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 182, 193, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.hours-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 182, 193, 0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.hours-card:hover .hours-icon::before {
  transform: translateX(100%);
}

.hours-card:hover .hours-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 18px 40px rgba(255, 182, 193, 0.4);
  border-color: var(--dawn-pink);
}

.hours-content h3 {
  color: var(--ivory-white);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(163, 177, 138, 0.3);
  transition: all 0.3s ease;
}

.hours-item:hover {
  background: rgba(163, 177, 138, 0.1);
  border-radius: 10px;
  padding: 1rem;
  margin: 0 -1rem;
}

.hours-item:last-child {
  border-bottom: none;
}

.day {
  color: var(--ivory-white);
  font-weight: 500;
  opacity: 0.9;
}

.time {
  color: var(--dawn-pink);
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-hero .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .contact-hero .hero-content p {
    font-size: 1rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  
  .contact-card {
    padding: 1.5rem;
  }
  
  .map-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .map-title h3 {
    font-size: 1.5rem;
  }
  
  .map-container iframe {
    height: 250px;
  }
  
  .phone-item {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .phone-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    height: 250px;
  }
  
  .contact-hero .hero-content h1 {
    font-size: 2rem;
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .contact-content h3 {
    font-size: 1.3rem;
  }
  
  .btn-instagram, .btn-email, .btn-address {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* Card Container System */
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  width: 300px;
  max-width: 100%;
  min-height: 200px;
  height: auto;
  background: linear-gradient(135deg, #3e1f0d 0%, #5a2d16 50%, #4a2512 100%);
  border: 2px solid rgba(212, 165, 116, 0.3);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  position: relative;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: brightness(0.7) contrast(1.2) saturate(1.1);
  display: block;
}

.card:hover img {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.3) saturate(1.3);
}

/* Gallery overlay specifically for cards */
.card .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    transparent 0%, 
    rgba(0, 0, 0, 0.1) 40%, 
    rgba(44, 24, 16, 0.7) 70%, 
    rgba(0, 0, 0, 0.85) 100%
  );
  padding: 1.5rem 2rem 1.5rem;
  color: var(--ivory-white);
  z-index: 2;
  transform: translateY(0);
  opacity: 1;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
}

.card:hover .gallery-overlay {
  background: linear-gradient(
    transparent 0%, 
    rgba(0, 0, 0, 0.3) 30%, 
    rgba(44, 24, 16, 0.9) 70%, 
    rgba(0, 0, 0, 0.95) 100%
  );
  padding: 2rem 2rem 2rem;
  backdrop-filter: blur(15px);
  transform: translateY(0);
  opacity: 1;
}

.card .gallery-overlay span {
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 0.3rem;
  color: var(--ivory-white);
  text-shadow: 
    0 0 8px rgba(255, 107, 53, 0.3),
    0 2px 4px rgba(0, 0, 0, 0.6);
  position: relative;
  transition: all 0.3s ease;
}

.card:hover .gallery-overlay span {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--dawn-pink);
  text-shadow: 
    0 0 10px rgba(255, 107, 53, 0.5),
    0 2px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 0.5rem;
}

.card .gallery-overlay span::before {
  content: attr(data-icon);
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  opacity: 0.7;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 6px rgba(255, 107, 53, 0.4));
}

.card:hover .gallery-overlay span::before {
  opacity: 1;
  left: -2.2rem;
  font-size: 1.8rem;
  filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.6));
}

/* Responsive Card Container */
@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
  }
  
  .card {
    width: 100%;
    max-width: 350px;
    min-height: 200px;
    height: auto;
  }
  
  /* Mobile: Always show overlay */
  .card .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
    padding: 1rem 1.5rem 1rem;
  }
  
  .card:active .gallery-overlay,
  .card:focus .gallery-overlay {
    background: linear-gradient(
      transparent 0%, 
      rgba(0, 0, 0, 0.3) 30%, 
      rgba(44, 24, 16, 0.9) 70%, 
      rgba(0, 0, 0, 0.95) 100%
    );
    padding: 1.5rem 1.5rem 1.5rem;
  }
  
  .card .gallery-overlay span {
    font-size: 1.1rem;
  }
  
  .card:hover .gallery-overlay span,
  .card:active .gallery-overlay span,
  .card:focus .gallery-overlay span {
    font-size: 1.2rem;
  }
  
  .card .gallery-overlay span::before {
    font-size: 1.3rem;
    left: -1.8rem;
  }
  
  .card:hover .gallery-overlay span::before,
  .card:active .gallery-overlay span::before,
  .card:focus .gallery-overlay span::before {
    font-size: 1.5rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .card-container {
    gap: 1.5rem;
  }
  
  .card {
    width: calc(50% - 1rem);
    min-width: 280px;
    min-height: 200px;
    height: auto;
  }
}

@media (min-width: 1025px) {
  .card-container {
    gap: 2rem;
  }
  
  .card {
    width: 300px;
    flex: 0 0 auto;
    min-height: 200px;
    height: auto;
  }
}

/* Optional: Horizontal scroll for smaller containers */
.card-container.scroll-horizontal {
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 165, 116, 0.5) transparent;
}

.card-container.scroll-horizontal::-webkit-scrollbar {
  height: 6px;
}

.card-container.scroll-horizontal::-webkit-scrollbar-track {
  background: transparent;
}

.card-container.scroll-horizontal::-webkit-scrollbar-thumb {
  background: rgba(212, 165, 116, 0.5);
  border-radius: 3px;
}

.card-container.scroll-horizontal::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 165, 116, 0.7);
}

/* Scroll Indicator Styles */
.scroll-indicator {
  position: fixed;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 100;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-indicator:hover {
  transform: translateX(-50%) scale(1.1);
}

.scroll-text {
  font-size: 0.9rem;
  color: var(--ivory-white);
  font-weight: 400;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 0.9;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  position: relative;
}

.arrow-down {
  width: 24px;
  height: 24px;
  border: 2px solid var(--dawn-pink);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  animation: arrowFloat 2s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.6));
}

/* Scroll Animations */
@keyframes scrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

@keyframes arrowFloat {
  0%, 100% {
    transform: rotate(45deg) translateY(0);
    opacity: 1;
  }
  50% {
    transform: rotate(45deg) translateY(8px);
    opacity: 0.7;
  }
}

/* Responsive scroll indicator */
@media (max-width: 768px) {
  .scroll-indicator {
    bottom: 3rem;
  }
  
  .scroll-text {
    font-size: 0.8rem;
  }
  
  .scroll-arrow {
    width: 20px;
    height: 20px;
  }
  
  .arrow-down {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .scroll-indicator {
    bottom: 2rem;
  }
  
  .scroll-text {
    font-size: 0.7rem;
  }
  
  .scroll-arrow {
    width: 18px;
    height: 18px;
  }
  
  .arrow-down {
    width: 18px;
    height: 18px;
  }
  
  /* Contact Hero Content Mobile */
  .contact-hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.1;
  }
  
  .contact-hero-content p {
    font-size: 1.1rem;
    line-height: 1.4;
    padding: 0 1rem;
  }
  
  .contact-hero-content {
    padding: 2rem 0 3rem;
  }
}

/* Contact Responsive for Tablet */
@media (max-width: 768px) {
  .contact-hero-content h1 {
    font-size: 3rem;
  }
  
  .contact-hero-content p {
    font-size: 1.15rem;
    padding: 0 2rem;
  }
}

/* Site Footer */
.site-footer {
  background: transparent;
  padding: 3rem 0;
  text-align: center;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 179, 106, 0.3) 50%, transparent 100%);
}

.footer-content {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-content p {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #2B2B2B;
  margin: 0;
  line-height: 1.4;
  font-weight: 400;
}

.footer-content p:first-child {
  font-size: 0.8125rem;
  color: #2B2B2B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.footer-names {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: #C2704A;
  font-size: 1rem;
  margin: 0.25rem 0;
}

.footer-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #FFB36A;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin: 0.25rem 0;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: rgba(255, 179, 106, 0.08);
  border: 1px solid rgba(255, 179, 106, 0.2);
  font-weight: 500;
}

.footer-link:hover {
  color: #FFFFFF;
  background: linear-gradient(135deg, #FFB36A, #FFA94D);
  border-color: #FFB36A;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 179, 106, 0.3);
}

.footer-year {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: #2B2B2B;
  margin-top: 0.5rem;
  font-weight: 400;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .site-footer {
    padding: 1.2rem 0 0.8rem;
  }
  
  .footer-content {
    max-width: 85%;
    padding: 0.8rem;
  }
  
  .footer-content p {
    font-size: 0.7rem;
  }
  
  .footer-names {
    font-size: 0.75rem;
  }
  
  .footer-link {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 1rem 0 0.5rem;
  }
  
  .footer-content {
    padding: 0.6rem;
    border-radius: 8px;
    max-width: 90%;
  }
  
  .footer-content p,
  .footer-link {
    font-size: 0.65rem;
  }
  
  .footer-names {
    font-size: 0.7rem;
    margin: 0.4rem 0;
  }
  
  .footer-link {
    padding: 0.2rem 0.4rem;
    margin-top: 0.2rem;
  }
}

/* ============================================
   MODERN ABOUT PAGE STYLES
   ============================================ */

/* Modern Color Palette */
:root {
  --modern-cream: #FAF7F2;
  --modern-off-white: #FFFDF8;
  --modern-white: #FFFFFF;
  --modern-orange: #FFB36A;
  --modern-orange-hover: #FFA94D;
  --modern-dark: #2B2B2B;
  --modern-gray: #6B6B6B;
  --modern-light-gray: #F5F5F5;
}

/* Modern Main Container */
.about-main-modern {
  background: var(--bg-primary);
  background-size: 400% 400%;
  animation: gradientRotate 15s ease-in-out infinite;
  min-height: 100vh;
  transition: background 0.5s ease;
  font-family: 'Inter', sans-serif;
}

@keyframes gradientRotate {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 100%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Modern Container */
.container-modern {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Modern Hero Section */
.hero-about-modern {
  background: transparent;
  padding: 8rem 0 10rem;
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-container-modern {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-left-modern {
  padding-right: 2rem;
}

.hero-left-modern h1 {
  font-family: 'Butler', 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: #C2704A;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.hero-left-modern p {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 1.25rem;
  color: #6B5A47;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-buttons-modern {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-btn-primary-modern,
.hero-btn-secondary-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hero-btn-primary-modern {
  background: #C2704A;
  color: var(--modern-white);
  box-shadow: 0 4px 15px rgba(194, 112, 74, 0.3);
}

.hero-btn-primary-modern:hover {
  background: #B36343;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194, 112, 74, 0.4);
}

.hero-btn-secondary-modern {
  background: transparent;
  color: #C2704A;
  border-color: #FFB36A;
}

.hero-btn-secondary-modern:hover {
  background: linear-gradient(135deg, #FFB36A 0%, #FFA94D 100%);
  color: var(--modern-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 179, 106, 0.3);
}

.btn-icon-modern {
  font-size: 1.2rem;
}

.hero-stats-modern {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-card-modern {
  text-align: center;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #FFF5EB 0%, #FFF0E0 100%);
  border-radius: 12px;
  min-width: 120px;
  border: 1px solid rgba(255, 179, 106, 0.2);
}

.stat-number-modern {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #FF9A3C;
  margin-bottom: 0.25rem;
}

.stat-label-modern {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #B8956A;
  font-weight: 500;
}

.hero-right-modern {
  position: relative;
}

.hero-image-wrapper-modern {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(43, 43, 43, 0.15);
}

.hero-image-wrapper-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}



/* About Cards Section Modern */
.about-cards-section-modern {
  padding: 6rem 0;
  background: transparent;
  position: relative;
}

.about-cards-section-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 179, 106, 0.3) 50%, transparent 100%);
}

.section-intro-modern {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-intro-modern h2 {
  font-family: 'Butler', 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #C2704A;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-intro-modern p {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 1.25rem;
  color: #B8956A;
  line-height: 1.7;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-cards-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.luxury-card-modern {
  background: #FFFFFF;
  border-radius: 2px;
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
  border: 1px solid #E8DDD1;
  box-shadow: 0 1px 3px rgba(194, 112, 74, 0.04);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxury-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, #C2704A 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.luxury-card-modern::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #C2704A 100%);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.luxury-card-modern:hover::before {
  opacity: 1;
}

.luxury-card-modern:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.luxury-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 40px rgba(194, 112, 74, 0.08),
    0 1px 3px rgba(194, 112, 74, 0.04);
  border-color: #D4A574;
}

.luxury-card-featured-modern {
  background: #FFFFFF;
  border: 1px solid #E8DDD1;
}

.luxury-card-featured-modern:hover {
  box-shadow: 
    0 25px 50px rgba(194, 112, 74, 0.12),
    0 1px 3px rgba(194, 112, 74, 0.04);
}

.card-number-modern {
  position: absolute;
  top: 3rem;
  right: 3rem;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 300;
  color: #F5EDE3;
  line-height: 1;
  pointer-events: none;
  transition: color 0.5s ease;
}

.luxury-card-modern:hover .card-number-modern {
  color: #E8DDD1;
}

.card-header-modern {
  margin-bottom: 2.5rem;
  position: relative;
}

.card-header-modern h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: #2B2B2B;
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02em;
  position: relative;
}

.card-header-modern h3::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.75rem;
  width: 40px;
  height: 1px;
  background: #C2704A;
  transition: width 0.5s ease;
}

.luxury-card-modern:hover .card-header-modern h3::before {
  width: 60px;
}

.card-content-modern {
  margin-bottom: 2.5rem;
}

.card-content-modern p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: #2B2B2B;
  line-height: 1.9;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.card-footer-modern {
  border-top: 1px solid #F5EDE3;
  padding-top: 1.5rem;
}

.card-tag-modern {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: #B8956A;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0;
  background: transparent;
  transition: color 0.3s ease;
}

.luxury-card-modern:hover .card-tag-modern {
  color: #C2704A;
}

.story-section-modern {
  padding: 6rem 0;
  background: transparent;
}

.story-card-modern {
  background: var(--modern-white);
  border-radius: 20px;
  padding: 4rem 3rem;
  box-shadow: 0 10px 40px rgba(43, 43, 43, 0.08);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(43, 43, 43, 0.12);
}

.story-icon-modern {
  font-size: 4rem;
  margin-bottom: 2rem;
}

.story-card-modern h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--modern-dark);
  margin-bottom: 2rem;
  font-weight: 600;
}

.story-card-modern p {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  color: var(--modern-gray);
  line-height: 1.8;
  text-align: justify;
}

/* Mission & Vision Section Modern */
.mission-vision-modern {
  padding: 6rem 0;
  background: transparent;
}

.cards-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.info-card-modern {
  background: var(--modern-white);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  box-shadow: 0 8px 30px rgba(43, 43, 43, 0.06);
  transition: all 0.3s ease;
}

.info-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(43, 43, 43, 0.1);
}

.card-icon-modern {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.info-card-modern h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--modern-dark);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.info-card-modern p {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  color: var(--modern-gray);
  line-height: 1.8;
  text-align: justify;
}

/* Why Choose Section Modern */
.why-choose-modern {
  padding: 6rem 0;
  background: transparent;
}

.section-title-modern {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--modern-dark);
  text-align: center;
  margin-bottom: 4rem;
  font-weight: 600;
  position: relative;
}

.section-title-modern::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--modern-orange);
  border-radius: 2px;
}

.features-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card-modern {
  background: var(--modern-white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 6px 25px rgba(43, 43, 43, 0.06);
  transition: all 0.3s ease;
}

.feature-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(43, 43, 43, 0.1);
}

.feature-icon-modern {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.feature-card-modern h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--modern-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-card-modern p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--modern-gray);
  line-height: 1.7;
}

/* ============================================
   DISCOVER CAPPADOCIA SECTION - MODERN REDESIGN
   ============================================ */

.discover-cappadocia-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #FAF7F2 0%, #FFFDF8 100%);
  position: relative;
  overflow: hidden;
}

.discover-cappadocia-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 179, 106, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(194, 112, 74, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.discover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.discover-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 4px 20px rgba(43, 43, 43, 0.06),
    0 1px 3px rgba(43, 43, 43, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  position: relative;
  height: 420px;
  display: flex;
  flex-direction: column;
}

.discover-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 179, 106, 0.05) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.discover-card:hover::before {
  opacity: 1;
}

.discover-card:hover {
  transform: translateY(-12px);
  box-shadow: 
    0 20px 50px rgba(43, 43, 43, 0.12),
    0 4px 10px rgba(194, 112, 74, 0.15);
}

.discover-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  flex-shrink: 0;
}

.discover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.discover-card:hover .discover-image img {
  transform: scale(1.08);
}

.discover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(43, 43, 43, 0) 0%,
    rgba(43, 43, 43, 0.1) 50%,
    rgba(43, 43, 43, 0.4) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 2rem;
}

.discover-card:hover .discover-overlay {
  opacity: 1;
}

.discover-icon {
  font-size: 4rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  transform: scale(0.8);
  transition: transform 0.4s ease;
}

.discover-card:hover .discover-icon {
  transform: scale(1);
}

.discover-content {
  padding: 2rem 2rem 2.5rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.discover-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #2B2B2B;
  margin: 0 0 1rem 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.discover-card:hover .discover-content h3 {
  color: #C2704A;
}

.discover-slogan {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #2B2B2B;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
}

.discover-slogan::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.25rem;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #FFB36A;
  line-height: 1;
  opacity: 0.4;
}

/* ============================================
   DISCOVER CAPPADOCIA SECTION - MODERN REDESIGN
   ============================================ */

.discover-cappadocia-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #FAF7F2 0%, #FFFDF8 100%);
  position: relative;
  overflow: hidden;
}

.discover-cappadocia-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 179, 106, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(194, 112, 74, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.discover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.discover-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 4px 20px rgba(43, 43, 43, 0.06),
    0 1px 3px rgba(43, 43, 43, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  position: relative;
  height: 420px;
  display: flex;
  flex-direction: column;
}

.discover-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 179, 106, 0.05) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.discover-card:hover::before {
  opacity: 1;
}

.discover-card:hover {
  transform: translateY(-12px);
  box-shadow: 
    0 20px 50px rgba(43, 43, 43, 0.12),
    0 4px 10px rgba(194, 112, 74, 0.15);
}

.discover-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  flex-shrink: 0;
}

.discover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.discover-card:hover .discover-image img {
  transform: scale(1.08);
}

.discover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(43, 43, 43, 0) 0%,
    rgba(43, 43, 43, 0.1) 50%,
    rgba(43, 43, 43, 0.4) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 2rem;
}

.discover-card:hover .discover-overlay {
  opacity: 1;
}

.discover-icon {
  font-size: 4rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  transform: scale(0.8);
  transition: transform 0.4s ease;
}

.discover-card:hover .discover-icon {
  transform: scale(1);
}

.discover-content {
  padding: 2rem 2rem 2.5rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.discover-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #2B2B2B;
  margin: 0 0 1rem 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.discover-card:hover .discover-content h3 {
  color: #C2704A;
}

.discover-slogan {
  font-family: 'Au Bord de la Seine', 'Playfair Display', serif;
  font-size: 1.0625rem;
  color: #8B7355;
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Gallery Section Modern - Slider */
.gallery-section-modern {
  padding: 3rem 0 6rem;
  background: transparent;
  position: relative;
}

.gallery-section-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 179, 106, 0.3) 50%, transparent 100%);
}

.gallery-slider-container {
  position: relative;
  max-width: 750px;
  margin: 0 auto;
  padding: 0 4rem;
}

.gallery-slider-wrapper {
  overflow: hidden;
  border-radius: 16px;
}

.gallery-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.gallery-item-modern {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0 0.5rem;
}

.gallery-image-wrapper {
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(43, 43, 43, 0.12);
}

.gallery-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.75rem;
  color: #2B2B2B;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
}

/* Slider Navigation Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(43, 43, 43, 0.1);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2B2B2B;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(43, 43, 43, 0.1);
}

.slider-btn:hover {
  background: #FFFFFF;
  box-shadow: 0 6px 25px rgba(43, 43, 43, 0.15);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev {
  left: 0;
}

.slider-btn-next {
  right: 0;
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(43, 43, 43, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dot:hover {
  background: rgba(43, 43, 43, 0.4);
  transform: scale(1.2);
}

.slider-dot.active {
  background: #FFB36A;
  width: 32px;
  border-radius: 6px;
}

/* CTA Section Modern */
.cta-section-modern {
  padding: 6rem 0;
  background: transparent;
  text-align: center;
  position: relative;
}

.cta-section-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 179, 106, 0.3) 50%, transparent 100%);
}

.cta-content-modern {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content-modern h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--modern-dark);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.cta-content-modern p {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  color: var(--modern-gray);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.cta-buttons-modern {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-modern {
  display: inline-block;
  padding: 1.125rem 3rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary-modern {
  background: var(--modern-orange);
  color: var(--modern-white);
}

.btn-primary-modern:hover {
  background: var(--modern-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 179, 106, 0.4);
}

.btn-secondary-modern {
  background: transparent;
  color: var(--modern-dark);
  border-color: var(--modern-dark);
}

.btn-secondary-modern:hover {
  background: var(--modern-dark);
  color: var(--modern-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(43, 43, 43, 0.2);
}

/* Mobile Responsiveness - Modern About Page */
@media (max-width: 1024px) {
  .hero-content-modern h1 {
    font-size: 3.5rem;
  }
  
  .features-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .discover-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .discover-card {
    height: 400px;
  }
  
  .discover-image {
    height: 260px;
  }
  
  .gallery-slider-container {
    padding: 0 3rem;
  }
  
  .gallery-image-wrapper {
    height: 340px;
  }
  
  .slider-btn {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 768px) {
  .container-modern {
    padding: 0 1.5rem;
  }
  
  .hero-about-modern {
    padding: 4.5rem 0 2rem;
    min-height: auto;
    flex-direction: column;
  }
  
  .hero-container-modern {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 0 1.5rem;
  }
  
  .hero-left-modern {
    padding-right: 0;
    text-align: center;
  }
  
  .hero-left-modern h1 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 0.75rem;
  }
  
  .hero-left-modern p {
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .hero-buttons-modern {
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.75rem;
  }
  
  .hero-btn-primary-modern,
  .hero-btn-secondary-modern {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .hero-stats-modern {
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .stat-card-modern {
    flex: 1;
    min-width: 90px;
  }
  
  .scroll-indicator-tours {
    bottom: 1.5rem;
  }
  
  .scroll-indicator-tours span {
    font-size: 0.75rem;
  }
  
  .hero-right-modern {
    padding: 0;
    margin: 0;
  }
  
  .hero-image-wrapper-modern {
    height: 320px;
    border-radius: 16px;
    margin: 0 auto;
  }
  
  .hero-image-wrapper-modern img {
    height: 320px;
    object-fit: cover;
    object-position: center;
  }
  
  .section-intro-modern h2 {
    font-size: 2.5rem;
  }
  
  .section-intro-modern p {
    font-size: 1.125rem;
  }
  
  .about-cards-grid-modern {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .luxury-card-modern {
    padding: 3rem 2.5rem;
  }
  
  .card-number-modern {
    font-size: 3rem;
    top: 2.5rem;
    right: 2.5rem;
  }
  
  .card-header-modern h3 {
    font-size: 1.5rem;
  }
  
  .story-section-modern,
  .mission-vision-modern,
  .about-cards-section-modern,
  .why-choose-modern,
  .gallery-section-modern,
  .cta-section-modern {
    padding: 4rem 0;
  }
  
  .story-card-modern {
    padding: 3rem 2rem;
  }
  
  .story-card-modern h2,
  .section-title-modern,
  .cta-content-modern h2 {
    font-size: 2.25rem;
  }
  
  .cards-grid-modern {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .features-grid-modern {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .discover-cappadocia-section {
    padding: 4rem 0;
  }
  
  .discover-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .discover-card {
    height: 380px;
  }
  
  .discover-image {
    height: 240px;
  }
  
  .discover-content {
    padding: 1.75rem 1.75rem 2rem;
  }
  
  .discover-content h3 {
    font-size: 1.5rem;
  }
  
  .discover-slogan {
    font-size: 1rem;
  }
  
  .gallery-slider-container {
    padding: 0 2.5rem;
  }
  
  .gallery-image-wrapper {
    height: 300px;
  }
  
  .gallery-title {
    font-size: 1.75rem;
  }
  
  .slider-btn {
    width: 42px;
    height: 42px;
  }
  
  .cta-buttons-modern {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-modern {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero-container-modern {
    padding: 0 1rem;
  }
  
  .hero-left-modern h1 {
    font-size: 2.25rem;
  }
  
  .hero-left-modern p {
    font-size: 0.9375rem;
  }
  
  .hero-buttons-modern {
    gap: 0.75rem;
  }
  
  .hero-btn-primary-modern,
  .hero-btn-secondary-modern {
    padding: 0.75rem 1.25rem;
    font-size: 0.8rem;
    white-space: normal;
    line-height: 1.2;
  }
  
  .stat-card-modern {
    padding: 0.75rem 1rem;
    min-width: 80px;
  }
  
  .stat-number-modern {
    font-size: 1.5rem;
  }
  
  .stat-label-modern {
    font-size: 0.75rem;
  }
  
  .hero-image-wrapper-modern {
    height: 300px;
  }
  
  .section-intro-modern h2 {
    font-size: 2rem;
  }
  
  .section-intro-modern p {
    font-size: 1rem;
  }
  
  .luxury-card-modern {
    padding: 2.5rem 2rem;
    border-radius: 2px;
  }
  
  .card-number-modern {
    font-size: 2.5rem;
    top: 2rem;
    right: 2rem;
  }
  
  .card-header-modern h3 {
    font-size: 1.2rem;
  }
  
  .card-content-modern p {
    font-size: 0.85rem;
  }
  
  .story-card-modern {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
  
  .story-card-modern h2,
  .section-title-modern,
  .cta-content-modern h2 {
    font-size: 1.6rem;
  }
  
  .story-card-modern p,
  .info-card-modern p {
    font-size: 0.9rem;
    text-align: left;
  }
  
  .info-card-modern {
    padding: 2rem 1.5rem;
  }
  
  .feature-card-modern {
    padding: 2rem 1.5rem;
  }
  
  .gallery-item-modern {
    height: 250px;
  }
  
  .discover-cappadocia-section {
    padding: 3rem 0;
  }
  
  .discover-grid {
    gap: 1.5rem;
  }
  
  .discover-card {
    height: 360px;
    border-radius: 16px;
  }
  
  .discover-image {
    height: 220px;
  }
  
  .discover-content {
    padding: 1.5rem;
  }
  
  .discover-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.875rem;
  }
  
  .discover-slogan {
    font-size: 0.9rem;
  }
  
  .discover-icon {
    font-size: 3rem;
  }
  
  .cta-content-modern p {
    font-size: 1.0625rem;
  }
  
  .btn-modern {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

/* Tours Page Responsive - Modern */
@media (max-width: 1024px) {
  .hero-container-tours-modern {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
  }
  
  .hero-tours-left-modern {
    text-align: center;
    padding: 3rem 2rem;
  }
  
  .hero-tours-left-modern h1 {
    font-size: 3.5rem;
  }
  
  .hero-tours-right-modern {
    min-height: 50vh;
  }
  
  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-tours-modern {
    min-height: auto;
    padding: 4.5rem 0 2rem;
    position: relative;
    overflow: visible;
    flex-direction: column;
  }
  
  .hero-container-tours-modern {
    padding: 0 1rem;
    gap: 0.5rem;
    grid-template-columns: 1fr;
    align-items: center;
    position: static;
  }
  
  .hero-tours-left-modern {
    padding: 0 !important;
    margin: 0 !important;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  
  .hero-tours-left-modern h1 {
    font-size: 2.5rem !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
    padding: 0 !important;
    width: 100%;
  }
  
  .hero-tours-left-modern .hero-description {
    font-size: 1rem !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
    padding: 0 !important;
    width: 100%;
  }
  
  .hero-tours-left-modern .hero-cta-text {
    font-size: 0.75rem !important;
    text-align: center !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    width: 100%;
  }
  
  .hero-tours-right-modern {
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    position: static !important;
  }
  
  .hero-tours-right-modern .hero-image-wrapper-modern {
    border-radius: 16px;
    max-height: 320px;
    margin: 0 auto 0 auto !important;
    width: 100%;
  }
  
  .hero-tours-right-modern .hero-image-wrapper-modern img {
    height: 320px;
    object-fit: cover;
    object-position: center;
  }
  
  .scroll-indicator-tours {
    position: static !important;
    left: auto !important;
    bottom: auto !important;
    margin: 1.5rem auto 0 !important;
    gap: 0.75rem !important;
    width: 100%;
    text-align: center;
    animation: fadeInBounceMobile 2s ease-in-out infinite !important;
  }
  
  .scroll-indicator-tours span {
    font-size: 0.75rem;
  }
  
  .tours-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.5rem;
  }
  
  .filter-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
  
  .card-image {
    height: 240px;
  }
  
  .card-content {
    padding: 1.5rem;
  }
  
  .card-content h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-tours-left-modern h1 {
    font-size: 1.875rem !important;
  }
  
  .hero-tours-left-modern .hero-description {
    font-size: 0.9rem !important;
  }
  
  .hero-tours-left-modern .hero-cta-text {
    font-size: 0.7rem !important;
  }
  
  .hero-tours-right-modern .hero-image-wrapper-modern {
    max-height: 280px;
  }
  
  .hero-tours-right-modern .hero-image-wrapper-modern img {
    height: 280px;
  }
  
  .hero-tours-left-modern p {
    font-size: 1rem;
  }
  
  .hero-container-tours-modern {
    padding: 0 1.5rem;
  }
  
  .tours-grid {
    padding: 0 1rem;
  }
  
  .filters-wrapper {
    gap: 0.75rem;
  }
  
  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }
  
  .card-actions {
    flex-direction: column;
  }
  
  .card-actions .btn {
    width: 100%;
  }
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */

/* Lazy-loaded images performance */
img[loading="lazy"] {
  background-color: #F5E6D3;
}

/* Image optimization */
img {
  will-change: transform;
  backface-visibility: hidden;
}

/* Gallery images contain */
.gallery-image-wrapper img,
.gallery-item-modern .gallery-image-wrapper img,
.hero-image-wrapper-modern img {
  contain: layout style paint;
}

/* Tour card performance */
.tour-card {
  contain: layout style;
}

.card-image img {
  will-change: opacity;
}

/* Smooth animations without repaints */
.hero-content {
  will-change: opacity;
}

.scroll-indicator-tours {
  will-change: opacity;
}

/* Video optimization */
video.hero-img {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  contain: layout style paint;
}

/* Reduce paint operations on transitions */
button, a {
  will-change: background-color, color;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* Font display optimization */
@font-face {
  font-family: 'Inter';
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  font-display: swap;
}

/* Container queries for responsive performance */
@supports (container-type: inline-size) {
  .tour-card {
    container-type: inline-size;
  }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: more) {
  :root {
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  }
}

/* ============================================
   TEXT OVERFLOW & MULTILINGUAL SUPPORT
   ============================================ */

/* Global heading styles with proper text wrapping */
h1, h2, h3, h4, h5, h6 {
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Paragraph and span text wrapping */
p, span, a, button, label {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Prevent long URLs and emails from breaking layout */
a[href], button {
  word-break: break-all;
}

/* Text in containers */
.hero-content, 
.card-content, 
.modal-content,
.contact-content {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Specific heading sizing */
h1 {
  word-spacing: normal;
  letter-spacing: inherit;
}

h2, h3 {
  word-spacing: normal;
}
