/* ===== CSS CUSTOM PROPERTIES ===== */
 :root {
 /* Desert Color Palette */
 --sandstone: #E8D5C4;
 --warm-tan: #D4B896;
 --sky-blue: #A8CDEC;
 --sage-green: #B8C5A8;
 --burnt-orange: #D4764E;
 --rust-red: #B85C3E;
 --charcoal: #3A3A3A;
 --off-white: #FAF8F5;
 --light-sand: #F5EDE3;
 --desert-gold: #DAA520;
 --canyon-red: #C1440E;
 
 /* Typography */
 --font-heading: 'Montserrat', sans-serif;
 --font-body: 'Open Sans', sans-serif;
 
 /* Spacing */
 --section-padding: 80px 20px;
 --container-max: 1200px;
 
 /* Transitions */
 --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
 --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
 }
 
 /* ===== RESET & BASE STYLES ===== */
 * {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 }
 
 html {
 scroll-behavior: smooth;
 font-size: 16px;
 }
 
 body {
 font-family: var(--font-body);
 color: var(--charcoal);
 background-color: var(--off-white);
 line-height: 1.6;
 overflow-x: hidden;
 }
 
 img {
 max-width: 100%;
 height: auto;
 display: block;
 }
 
 a {
 text-decoration: none;
 color: inherit;
 }
 
 /* ===== NAVIGATION ===== */
 .navbar {
 position: fixed;
 top: 0;
 width: 100%;
 background: linear-gradient(135deg, 
 rgba(255, 255, 255, 0.98) 0%, 
 rgba(250, 248, 245, 0.98) 50%,
 rgba(245, 237, 227, 0.98) 100%);
 backdrop-filter: blur(15px);
 z-index: 1000;
 box-shadow: 
 0 4px 30px rgba(0, 0, 0, 0.08),
 0 2px 10px rgba(212, 118, 78, 0.05),
 inset 0 -1px 0 rgba(212, 118, 78, 0.1);
 transition: var(--transition-smooth);
 overflow: visible;
 border-bottom: 2px solid transparent;
 background-image: 
 linear-gradient(135deg, 
 rgba(255, 255, 255, 0.98) 0%, 
 rgba(250, 248, 245, 0.98) 50%,
 rgba(245, 237, 227, 0.98) 100%),
 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><defs><filter id="noise"><feTurbulence baseFrequency="0.8" numOctaves="3" type="fractalNoise"/></filter></defs><rect width="100" height="100" filter="url(%23noise)" opacity="0.02"/></svg>');
 }
 
 .navbar::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 0;
 right: 0;
 height: 3px;
 background: linear-gradient(90deg, 
 transparent 0%, 
 var(--burnt-orange) 20%, 
 var(--desert-gold) 50%, 
 var(--burnt-orange) 80%, 
 transparent 100%);
 opacity: 0.6;
 }
 
 .nav-container {
 max-width: var(--container-max);
 margin: 0 auto;
 padding: 8px 20px 8px 380px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 min-height: 60px;
 }
 
 .logo {
 font-family: var(--font-heading);
 font-size: 1.5rem;
 font-weight: 800;
 color: var(--burnt-orange);
 letter-spacing: -0.5px;
 display: flex;
 align-items: center;
 position: absolute;
 left: 20px;
 top: 0;
 z-index: 1001;
 }
 
 .logo img {
 height: 300px;
 width: auto;
 transition: var(--transition-smooth);
 filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
 position: relative;
 }
 
 .logo:hover img {
 transform: scale(1.05) rotate(-2deg);
 filter: drop-shadow(0 20px 50px rgba(212, 118, 78, 0.6));
 }
 
 .nav-menu {
 display: flex;
 list-style: none;
 gap: 35px;
 align-items: center;
 }
 
 .nav-menu a {
 font-family: var(--font-heading);
 font-weight: 600;
 font-size: 0.95rem;
 color: var(--charcoal);
 transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 position: relative;
 text-decoration: none;
 padding: 8px 4px;
 }
 
 .nav-menu a::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 50%;
 transform: translateX(-50%);
 width: 0;
 height: 3px;
 background: linear-gradient(90deg, var(--burnt-orange), var(--desert-gold));
 transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 border-radius: 2px;
 }
 
 .nav-menu a:hover {
 color: var(--burnt-orange);
 transform: translateY(-2px);
 }
 
 .nav-menu a:hover::after {
 width: 100%;
 }

 .nav-menu a.active {
  color: var(--burnt-orange);
}

.nav-menu a.active::after {
  width: 100%;
}
 
 .nav-phone {
 color: var(--burnt-orange) !important;
 font-weight: 700 !important;
 font-size: 1.05rem;
 padding: 10px 20px;
 background: linear-gradient(135deg, 
 rgba(212, 118, 78, 0.12) 0%, 
 rgba(218, 165, 32, 0.12) 100%);
 border-radius: 10px;
 transition: var(--transition-smooth);
 border: 2px solid rgba(212, 118, 78, 0.2);
 box-shadow: 0 4px 15px rgba(212, 118, 78, 0.1);
 }
 
 .nav-phone:hover {
 background: linear-gradient(135deg, 
 rgba(212, 118, 78, 0.18) 0%, 
 rgba(218, 165, 32, 0.18) 100%);
 transform: translateY(-2px);
 border-color: rgba(212, 118, 78, 0.4);
 box-shadow: 0 6px 20px rgba(212, 118, 78, 0.2);
 }
 
 .nav-phone::after {
 display: none;
 }
 
 .nav-book-btn {
 background: linear-gradient(135deg, var(--burnt-orange) 0%, var(--rust-red) 100%);
 color: white !important;
 padding: 12px 28px;
 border-radius: 30px;
 transition: var(--transition-smooth);
 font-weight: 700;
 box-shadow: 
 0 6px 20px rgba(212, 118, 78, 0.3),
 inset 0 1px 0 rgba(255, 255, 255, 0.2);
 position: relative;
 overflow: hidden;
 }
 
 .nav-book-btn::before {
 content: '';
 position: absolute;
 top: 0;
 left: -100%;
 width: 100%;
 height: 100%;
 background: linear-gradient(90deg, 
 transparent, 
 rgba(255, 255, 255, 0.3), 
 transparent);
 transition: left 0.5s;
 }
 
 .nav-book-btn:hover::before {
 left: 100%;
 }
 
 .nav-book-btn:hover {
 background: linear-gradient(135deg, var(--rust-red) 0%, var(--canyon-red) 100%);
 transform: translateY(-3px);
 box-shadow: 
 0 10px 30px rgba(212, 118, 78, 0.4),
 inset 0 1px 0 rgba(255, 255, 255, 0.2);
 }
 
 .nav-book-btn::after {
 display: none;
 }
 
 .mobile-menu-toggle {
 display: none;
 background: none;
 border: none;
 cursor: pointer;
 padding: 5px;
 }
 
 .mobile-menu-toggle span {
 display: block;
 width: 25px;
 height: 3px;
 background: var(--charcoal);
 margin: 5px 0;
 transition: var(--transition-smooth);
 }
 
 /* ===== HERO SECTION ===== */
 .hero {
  position: relative;
  height: auto;
  min-height: 100vh;
  padding: 30px 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #87CEEB 0%, #F4A460 50%, #D2691E 100%);
}
 
 .hero-background {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background-image: url('images/14.webp');
 background-size: cover;
 background-position: center;
 z-index: 1;
 transform: translateZ(0);
 }
 
 .hero-background::before {
 content: '';
 position: absolute;
 width: 100%;
 height: 100%;
 background: linear-gradient(
 135deg, 
 rgba(0, 0, 0, 0.05) 0%, 
 rgba(0, 0, 0, 0.1) 100%
 );
 }
 
 .hero-background::after {
 content: '';
 position: absolute;
 width: 100%;
 height: 100%;
 background-image: repeating-linear-gradient(
 90deg,
 transparent,
 transparent 2px,
 rgba(0, 0, 0, 0.01) 2px,
 rgba(0, 0, 0, 0.01) 4px
 );
 opacity: 0.2;
 }
 
 .hero-overlay {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: 
 radial-gradient(ellipse at center, transparent 20%, rgba(0, 0, 0, 0.15) 100%);
 z-index: 2;
 }
 
 /* Floating dust particles */
 .hero-overlay::before {
 content: '';
 position: absolute;
 width: 100%;
 height: 100%;
 background-image: 
 radial-gradient(circle, rgba(255, 255, 255, 0.4) 1px, transparent 1px),
 radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
 radial-gradient(circle, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
 background-size: 50px 50px, 80px 80px, 130px 130px;
 background-position: 0 0, 40px 60px, 130px 270px;
 animation: floatParticles 30s linear infinite;
 opacity: 0.3;
 }
 
 .hero-content {
 position: relative;
 z-index: 3;
 text-align: center;
 max-width: 900px;
 padding: 20px;
 animation: fadeInUp 1s ease-out;
 }
 
 .hero h1 {
 font-family: var(--font-heading);
 font-size: clamp(2.5rem, 6vw, 5rem);
 font-weight: 800;
 color: white;
 margin-bottom: 20px;
 line-height: 1.1;
 text-shadow: 
 3px 3px 8px rgba(0, 0, 0, 0.8),
 -1px -1px 3px rgba(0, 0, 0, 0.6),
 0 0 30px rgba(0, 0, 0, 0.5);
 letter-spacing: -1px;
 position: relative;
 }
 
 .hero h1::before {
 content: attr(data-text);
 position: absolute;
 left: 0;
 top: 0;
 z-index: -1;
 background: linear-gradient(135deg, var(--burnt-orange), var(--rust-red));
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 opacity: 0;
 }
 
 .hero-subtitle {
 font-size: clamp(1.1rem, 2.5vw, 1.5rem);
 color: white;
 margin-bottom: 40px;
 font-weight: 600;
 opacity: 1;
 text-shadow: 
 2px 2px 6px rgba(0, 0, 0, 0.9),
 0 0 20px rgba(0, 0, 0, 0.7);
 max-width: 700px;
 margin-left: auto;
 margin-right: auto;
 }
 
 .btn {
 font-family: var(--font-heading);
 font-weight: 700;
 padding: 18px 45px;
 border-radius: 50px;
 font-size: 1.05rem;
 cursor: pointer;
 transition: var(--transition-smooth);
 border: none;
 display: inline-flex;
 align-items: center;
 gap: 10px;
 position: relative;
 overflow: hidden;
 letter-spacing: 0.5px;
 }
 
 .btn::before {
 content: '';
 position: absolute;
 top: 50%;
 left: 50%;
 width: 0;
 height: 0;
 border-radius: 50%;
 background: rgba(255, 255, 255, 0.3);
 transform: translate(-50%, -50%);
 transition: width 0.6s, height 0.6s;
 }
 
 .btn:hover::before {
 width: 300px;
 height: 300px;
 }
 
 .btn-primary {
 background: linear-gradient(135deg, var(--burnt-orange) 0%, var(--rust-red) 100%);
 color: white;
 box-shadow: 
 0 10px 40px rgba(212, 118, 78, 0.4),
 inset 0 -3px 10px rgba(0, 0, 0, 0.2);
 }
 
 .btn-primary:hover {
 background: linear-gradient(135deg, var(--rust-red) 0%, var(--canyon-red) 100%);
 transform: translateY(-4px) scale(1.02);
 box-shadow: 
 0 20px 50px rgba(212, 118, 78, 0.5),
 inset 0 -3px 10px rgba(0, 0, 0, 0.2);
 }
 
 .btn-primary:active {
 transform: translateY(-2px) scale(0.98);
 }
 
 .btn-secondary {
 background: rgba(255, 255, 255, 0.95);
 color: var(--burnt-orange);
 border: 3px solid var(--burnt-orange);
 box-shadow: 
 0 10px 30px rgba(255, 255, 255, 0.3),
 inset 0 2px 5px rgba(212, 118, 78, 0.1);
 }
 
 .btn-secondary:hover {
 background: var(--burnt-orange);
 color: white;
 transform: translateY(-4px) scale(1.02);
 box-shadow: 
 0 20px 40px rgba(212, 118, 78, 0.4),
 inset 0 2px 5px rgba(255, 255, 255, 0.2);
 }
 
 .btn-secondary:active {
 transform: translateY(-2px) scale(0.98);
 }
 
 /* ===== SCROLL INDICATOR ===== */
 .scroll-indicator {
 position: absolute;
 bottom: 30px;
 left: 50%;
 transform: translateX(-50%);
 z-index: 3;
 animation: bounce 2s infinite;
 }
 
 .scroll-indicator span {
 display: block;
 width: 30px;
 height: 50px;
 border: 2px solid var(--charcoal);
 border-radius: 20px;
 position: relative;
 }
 
 .scroll-indicator span::before {
 content: '';
 position: absolute;
 top: 10px;
 left: 50%;
 width: 6px;
 height: 6px;
 background: var(--charcoal);
 border-radius: 50%;
 transform: translateX(-50%);
 animation: scrollDown 2s infinite;
 }

 /* ===== HERO VIDEO ===== */
.hero-video-wrapper {
  position: relative;
  z-index: 10; /* Higher than overlay */
  max-width: 1400px;
  width: 100%;
  margin: 40px auto 0;
  padding: 0 20px;
}

.hero .hero-content {
  margin-bottom: 0;
}

.hero .scroll-indicator {
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  .hero-video-wrapper {
    margin: 30px auto 0;
    padding: 0 15px;
  }
}
 
 /* ===== SECTIONS BASE ===== */
 section {
 padding: var(--section-padding);
 position: relative;
 }
 
 .container {
 max-width: var(--container-max);
 margin: 0 auto;
 }
 
 .section-header {
 text-align: center;
 margin-bottom: 60px;
 }
 
 .section-title {
 font-family: var(--font-heading);
 font-size: clamp(2rem, 4vw, 3.5rem);
 font-weight: 800;
 background: linear-gradient(135deg, var(--charcoal) 0%, var(--burnt-orange) 100%);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 margin-bottom: 20px;
 position: relative;
 display: inline-block;
 letter-spacing: -1px;
 }
 
 .section-title::after {
 content: '';
 position: absolute;
 bottom: -15px;
 left: 50%;
 transform: translateX(-50%);
 width: 100px;
 height: 5px;
 background: linear-gradient(90deg, transparent, var(--burnt-orange), transparent);
 border-radius: 3px;
 animation: shimmer 3s ease-in-out infinite;
 }
 
 .section-subtitle {
 font-size: 1.15rem;
 color: var(--charcoal);
 opacity: 0.85;
 max-width: 700px;
 margin: 25px auto 0;
 line-height: 1.8;
 }
 
 /* ===== TOURS SECTION ===== */
 #tours {
 background: 
 linear-gradient(135deg, rgba(245, 237, 227, 0.8) 0%, rgba(248, 244, 240, 0.9) 100%),
 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><defs><filter id="grain"><feTurbulence type="fractalNoise" baseFrequency="1.2" numOctaves="3" result="noise"/><feColorMatrix in="noise" type="saturate" values="0"/></filter></defs><rect width="100" height="100" filter="url(%23grain)" opacity="0.03"/></svg>');
 }
 
 .tours-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 35px;
 margin-top: 40px;
 }
 
 .tour-card {
 background: white;
 border-radius: 25px;
 overflow: hidden;
 box-shadow: 
 0 15px 40px rgba(0, 0, 0, 0.08),
 0 5px 15px rgba(212, 118, 78, 0.05);
 transition: var(--transition-smooth);
 position: relative;
 border: 2px solid transparent;
 }
 
 .tour-card::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: linear-gradient(135deg, var(--burnt-orange), var(--desert-gold));
 opacity: 0;
 transition: opacity 0.4s;
 border-radius: 25px;
 z-index: -1;
 }
 
 .tour-card:hover::before {
 opacity: 0.05;
 }
 
 .tour-card:hover {
 transform: translateY(-15px) scale(1.02);
 box-shadow: 
 0 25px 60px rgba(212, 118, 78, 0.2),
 0 10px 30px rgba(0, 0, 0, 0.12);
 border-color: rgba(212, 118, 78, 0.2);
 }
 
 .tour-image {
 height: 240px;
 position: relative;
 overflow: hidden;
 background-color: #000;
 background-size: cover;
 background-position: center;
 }
 
 .tour-image::after {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: 
 radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
 linear-gradient(135deg, transparent 0%, rgba(58, 58, 58, 0.1) 100%);
 }
 
 .difficulty-badge {
 position: absolute;
 top: 20px;
 right: 20px;
 background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
 padding: 8px 20px;
 border-radius: 25px;
 font-size: 0.85rem;
 font-weight: 700;
 color: var(--burnt-orange);
 text-transform: uppercase;
 letter-spacing: 0.5px;
 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 backdrop-filter: blur(10px);
 border: 1px solid rgba(255, 255, 255, 0.5);
 z-index: 10;
 }
 
 .tour-content {
 padding: 30px;
 }
 
 .tour-title {
 font-family: var(--font-heading);
 font-size: 1.6rem;
 font-weight: 700;
 color: var(--charcoal);
 margin-bottom: 12px;
 letter-spacing: -0.5px;
 }
 
 .tour-description {
 color: var(--charcoal);
 opacity: 0.8;
 margin-bottom: 25px;
 line-height: 1.7;
 font-size: 0.95rem;
 }
 
 .tour-details {
 display: flex;
 gap: 25px;
 margin-bottom: 25px;
 flex-wrap: wrap;
 }
 
 .tour-detail {
 display: flex;
 align-items: center;
 gap: 10px;
 font-size: 0.95rem;
 color: var(--charcoal);
 font-weight: 600;
 }
 
 .tour-detail-icon {
 width: 28px;
 height: 28px;
 background: linear-gradient(135deg, var(--burnt-orange), var(--rust-red));
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 color: white;
 font-size: 0.75rem;
 box-shadow: 0 3px 10px rgba(212, 118, 78, 0.3);
 }
 
 .tour-price {
 font-family: var(--font-heading);
 font-size: 2rem;
 font-weight: 800;
 background: linear-gradient(135deg, var(--burnt-orange), var(--desert-gold));
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 margin-bottom: 20px;
 letter-spacing: -1px;
 }

 .price-suffix {
 font-size: 1rem;
 opacity: 0.7;
 }
 
 .tour-book-btn {
 width: 100%;
 background: linear-gradient(135deg, var(--burnt-orange), var(--rust-red));
 color: white;
 padding: 16px;
 border-radius: 15px;
 font-family: var(--font-heading);
 font-weight: 700;
 border: none;
 cursor: pointer;
 transition: var(--transition-smooth);
 font-size: 1rem;
 letter-spacing: 0.5px;
 box-shadow: 0 8px 20px rgba(212, 118, 78, 0.3);
 position: relative;
 overflow: hidden;
 }
 
 .tour-book-btn::before {
 content: '';
 position: absolute;
 top: 0;
 left: -100%;
 width: 100%;
 height: 100%;
 background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
 transition: left 0.5s;
 }
 
 .tour-book-btn:hover::before {
 left: 100%;
 }
 
 .tour-book-btn:hover {
 background: linear-gradient(135deg, var(--rust-red), var(--canyon-red));
 transform: translateY(-3px);
 box-shadow: 0 12px 30px rgba(212, 118, 78, 0.4);
 }
 
 /* ===== 3D VIDEO FRAME ===== */
 .video-container-wrapper {
 max-width: 1200px;
 margin: 50px auto 60px;
 perspective: 1500px;
 }
 
 .video-frame-3d {
 position: relative;
 padding: 40px;
 background: 
 linear-gradient(135deg, #D4A574 0%, #C19A6B 25%, #B8956A 50%, #A8865F 75%, #8B7355 100%),
 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><filter id="noise"><feTurbulence baseFrequency="0.9" numOctaves="4" type="fractalNoise"/></filter><rect width="200" height="200" filter="url(%23noise)" opacity="0.15"/></svg>');
 background-blend-mode: overlay;
 border-radius: 20px;
 box-shadow: 
 0 30px 80px rgba(0, 0, 0, 0.4),
 inset 0 2px 10px rgba(255, 255, 255, 0.3),
 inset 0 -10px 30px rgba(0, 0, 0, 0.3);
 transform: rotateX(5deg);
 transition: var(--transition-smooth);
 border: 3px solid #8B7355;
 }
 
 .video-frame-3d::before {
 content: '';
 position: absolute;
 top: 20px;
 left: 20px;
 right: 20px;
 bottom: 20px;
 border: 2px solid rgba(255, 255, 255, 0.2);
 border-radius: 10px;
 pointer-events: none;
 }
 
 .video-frame-3d::after {
 content: '';
 position: absolute;
 top: -10px;
 left: -10px;
 right: -10px;
 bottom: -10px;
 background: 
 linear-gradient(135deg, rgba(139, 115, 85, 0.4) 0%, transparent 50%, rgba(184, 149, 106, 0.4) 100%);
 border-radius: 25px;
 z-index: -1;
 filter: blur(15px);
 }
 
 .video-frame-3d:hover {
 transform: rotateX(0deg) scale(1.02);
 box-shadow: 
 0 40px 100px rgba(0, 0, 0, 0.5),
 inset 0 2px 10px rgba(255, 255, 255, 0.3),
 inset 0 -10px 30px rgba(0, 0, 0, 0.3);
 }
 
 .video-frame-inner {
 position: relative;
 width: 100%;
 padding-bottom: 56.25%; /* 16:9 aspect ratio */
 background: #000;
 border-radius: 10px;
 overflow: hidden;
 box-shadow: 
 0 10px 40px rgba(0, 0, 0, 0.6),
 inset 0 0 20px rgba(0, 0, 0, 0.4);
 }
 
 .video-frame-inner iframe {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 border: none;
 border-radius: 10px;
 }
 
 /* Rock texture accents on corners */
 .video-frame-3d::before {
 content: '';
 position: absolute;
 top: 15px;
 left: 15px;
 width: 60px;
 height: 60px;
 background: 
 radial-gradient(circle at 30% 30%, rgba(212, 165, 116, 0.6) 0%, transparent 70%),
 radial-gradient(circle at 70% 70%, rgba(139, 115, 85, 0.4) 0%, transparent 70%);
 border-radius: 50% 0 0 0;
 opacity: 0.5;
 }
 
 /* ===== WHY VERNAL SECTION ===== */
 #why-vernal {
 background: var(--off-white);
 position: relative;
 overflow: hidden;
 }
 
 #why-vernal::before {
 content: '';
 position: absolute;
 top: -50%;
 left: -10%;
 width: 40%;
 height: 100%;
 background: radial-gradient(ellipse, rgba(212, 118, 78, 0.05) 0%, transparent 70%);
 animation: float 20s ease-in-out infinite;
 }
 
 #why-vernal::after {
 content: '';
 position: absolute;
 bottom: -50%;
 right: -10%;
 width: 40%;
 height: 100%;
 background: radial-gradient(ellipse, rgba(168, 205, 236, 0.05) 0%, transparent 70%);
 animation: float 25s ease-in-out infinite reverse;
 }
 
 .features-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 40px;
 margin-top: 40px;
 position: relative;
 z-index: 1;
 }
 
 .feature-card {
 background: white;
 border-radius: 20px;
 overflow: hidden;
 box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
 transition: var(--transition-smooth);
 border: 1px solid rgba(212, 118, 78, 0.1);
 position: relative;
 }
 
 .feature-card::before {
 content: none;
 }
 
 .feature-card:hover {
 transform: translateY(-8px);
 box-shadow: 0 20px 60px rgba(212, 118, 78, 0.15);
 }
 
 .feature-card:hover .feature-image {
 transform: scale(1.05);
 }
 
 .feature-image {
 height: 200px;
 position: relative;
 overflow: hidden;
 background-color: #000;
 background-size: cover;
 background-position: center;
 transition: var(--transition-smooth);
 }
 
 .feature-image::after {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: 
 radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
 linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
 }
 
 .feature-content {
 padding: 25px;
 text-align: center;
 }
 
 .feature-icon {
 display: none;
 }
 
 .feature-title {
 font-family: var(--font-heading);
 font-size: 1.4rem;
 font-weight: 700;
 color: var(--charcoal);
 margin-bottom: 15px;
 letter-spacing: -0.3px;
 }
 
 .feature-description {
 color: var(--charcoal);
 opacity: 0.8;
 line-height: 1.7;
 font-size: 0.95rem;
 }
 
 /* ===== VEHICLES SECTION ===== */
 #vehicles {
 background: 
 linear-gradient(135deg, rgba(245, 237, 227, 0.7) 0%, rgba(248, 244, 240, 0.8) 100%),
 repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(212, 118, 78, 0.02) 10px, rgba(212, 118, 78, 0.02) 20px);
 }
 
 .vehicles-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 35px;
 margin-top: 40px;
 }
 
 .vehicle-card {
 background: white;
 border-radius: 20px;
 overflow: hidden;
 box-shadow: 
 0 15px 35px rgba(0, 0, 0, 0.08),
 0 5px 15px rgba(0, 0, 0, 0.05);
 transition: var(--transition-smooth);
 position: relative;
 border: 2px solid transparent;
 }
 
 .vehicle-card::after {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: linear-gradient(135deg, var(--sky-blue), var(--burnt-orange));
 opacity: 0;
 transition: opacity 0.4s;
 border-radius: 20px;
 z-index: -1;
 }
 
 .vehicle-card:hover {
 transform: translateY(-12px) scale(1.02);
 box-shadow: 
 0 25px 55px rgba(168, 205, 236, 0.2),
 0 10px 25px rgba(0, 0, 0, 0.1);
 border-color: rgba(168, 205, 236, 0.3);
 }
 
 .vehicle-card:hover::after {
 opacity: 0.04;
 }
 
 .vehicle-image {
 height: 220px;
 position: relative;
 overflow: hidden;
 background-color: #000;
 background-size: cover;
 background-position: center;
 }
 
 .vehicle-image::after {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: 
 radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
 linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
 }
 
 .vehicle-content {
 padding: 30px;
 }
 
 .vehicle-name {
 font-family: var(--font-heading);
 font-size: 1.5rem;
 font-weight: 700;
 color: var(--charcoal);
 margin-bottom: 20px;
 letter-spacing: -0.3px;
 }
 
 .vehicle-specs {
 list-style: none;
 margin-bottom: 20px;
 }
 
 .vehicle-specs li {
 padding: 12px 0;
 border-bottom: 1px solid rgba(0, 0, 0, 0.06);
 display: flex;
 justify-content: space-between;
 font-size: 0.95rem;
 transition: padding-left 0.3s;
 }
 
 .vehicle-card:hover .vehicle-specs li {
 padding-left: 5px;
 }
 
 .vehicle-specs li:last-child {
 border-bottom: none;
 }
 
 .spec-label {
 font-weight: 700;
 color: var(--charcoal);
 }
 
 .spec-value {
 color: var(--burnt-orange);
 font-weight: 600;
 }
 
 /* ===== GALLERY SECTION - CAROUSEL ===== */
 #gallery {
 background: 
 linear-gradient(to bottom, rgba(250, 248, 245, 0.9), rgba(245, 237, 227, 0.9)),
 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23E8D5C4" stroke-width="0.5"/></pattern></defs><rect width="200" height="200" fill="url(%23grid)"/></svg>');
 padding: 80px 20px 100px;
 }
 
 .carousel-container {
 max-width: 1100px;
 margin: 40px auto 0;
 }
 
 .carousel-main {
 position: relative;
 width: 100%;
 height: 600px;
 background: white;
 border-radius: 25px;
 overflow: hidden;
 box-shadow: 
 0 20px 60px rgba(0, 0, 0, 0.15),
 0 10px 30px rgba(212, 118, 78, 0.1);
 }
 
 .carousel-track-container {
 width: 100%;
 height: 100%;
 position: relative;
 overflow: hidden;
 }
 
 .carousel-track {
 display: flex;
 height: 100%;
 transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
 }
 
 .carousel-slide {
 min-width: 100%;
 height: 100%;
 position: relative;
 display: flex;
 align-items: center;
 justify-content: center;
 background: linear-gradient(135deg, var(--warm-tan), var(--sage-green));
 }
 
 .carousel-slide img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 display: block;
 }
 
 .carousel-caption {
 position: absolute;
 bottom: 0;
 left: 0;
 right: 0;
 background: linear-gradient(to top, rgba(58, 58, 58, 0.95) 0%, rgba(58, 58, 58, 0.8) 50%, transparent 100%);
 color: white;
 padding: 40px 30px 25px;
 font-family: var(--font-heading);
 font-weight: 700;
 font-size: 1.5rem;
 text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
 transform: translateY(100%);
 transition: transform 0.4s ease;
 }
 
 .carousel-slide.active .carousel-caption {
 transform: translateY(0);
 }
 
 .carousel-btn {
 position: absolute;
 top: 50%;
 transform: translateY(-50%);
 background: rgba(255, 255, 255, 0.95);
 border: none;
 width: 60px;
 height: 60px;
 border-radius: 50%;
 cursor: pointer;
 z-index: 10;
 transition: var(--transition-smooth);
 box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
 display: flex;
 align-items: center;
 justify-content: center;
 }
 
 .carousel-btn span {
 font-size: 2.5rem;
 line-height: 1;
 color: var(--burnt-orange);
 font-weight: 300;
 }
 
 .carousel-btn:hover {
 background: var(--burnt-orange);
 transform: translateY(-50%) scale(1.1);
 box-shadow: 0 8px 25px rgba(212, 118, 78, 0.4);
 }
 
 .carousel-btn:hover span {
 color: white;
 }
 
 .carousel-btn:active {
 transform: translateY(-50%) scale(0.95);
 }
 
 .carousel-prev {
 left: 20px;
 }
 
 .carousel-next {
 right: 20px;
 }
 
 .carousel-indicators {
 display: flex;
 justify-content: center;
 gap: 12px;
 margin-top: 30px;
 flex-wrap: wrap;
 }
 
 .carousel-indicator {
 width: 12px;
 height: 12px;
 border-radius: 50%;
 background: rgba(212, 118, 78, 0.3);
 border: none;
 cursor: pointer;
 transition: var(--transition-smooth);
 padding: 0;
 }
 
 .carousel-indicator:hover {
 background: rgba(212, 118, 78, 0.6);
 transform: scale(1.2);
 }
 
 .carousel-indicator.active {
 background: var(--burnt-orange);
 width: 30px;
 border-radius: 6px;
 }
 
 .carousel-thumbnails {
 display: none; /* Hidden by default, can be enabled */
 }
 
 /* ===== BOOKING SECTION ===== */
 #booking {
 background: 
 linear-gradient(135deg, rgba(245, 237, 227, 0.5), rgba(232, 213, 196, 0.6)),
 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"><defs><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3"/><feColorMatrix values="0 0 0 0 0.9 0 0 0 0 0.8 0 0 0 0 0.7 0 0 0 1 0"/></filter></defs><rect width="400" height="400" filter="url(%23noiseFilter)" opacity="0.03"/></svg>');
 position: relative;
 }
 
 #booking::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 200px;
 background: linear-gradient(to bottom, rgba(250, 248, 245, 0.8), transparent);
 }
 
 .booking-container {
 max-width: 850px;
 margin: 40px auto 0;
 background: white;
 padding: 60px 50px;
 border-radius: 30px;
 box-shadow: 
 0 25px 70px rgba(0, 0, 0, 0.12),
 0 10px 30px rgba(212, 118, 78, 0.08);
 position: relative;
 border: 1px solid rgba(212, 118, 78, 0.1);
 }
 
 .booking-container::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 6px;
 background: linear-gradient(90deg, var(--burnt-orange), var(--desert-gold), var(--burnt-orange));
 border-radius: 30px 30px 0 0;
 }
 
 .phone-cta-wrapper {
 text-align: center;
 }
 
 .phone-icon {
 font-size: 5rem;
 margin-bottom: 20px;
 animation: pulse 2s ease-in-out infinite;
 }
 
 .phone-cta-title {
 font-family: var(--font-heading);
 font-size: 2rem;
 font-weight: 700;
 color: var(--charcoal);
 margin-bottom: 30px;
 letter-spacing: -0.5px;
 }
 
 .phone-number-display {
 display: inline-block;
 font-family: var(--font-heading);
 font-size: 3.5rem;
 font-weight: 800;
 background: linear-gradient(135deg, var(--burnt-orange), var(--desert-gold));
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 margin-bottom: 20px;
 letter-spacing: -2px;
 transition: var(--transition-smooth);
 text-decoration: none;
 position: relative;
 }
 
 .phone-number-display:hover {
 transform: scale(1.05);
 filter: drop-shadow(0 5px 15px rgba(212, 118, 78, 0.3));
 }
 
 .phone-number-display::after {
 content: 'Click to call';
 position: absolute;
 bottom: -25px;
 left: 50%;
 transform: translateX(-50%);
 font-size: 0.9rem;
 font-weight: 600;
 color: var(--burnt-orange);
 opacity: 0;
 transition: var(--transition-smooth);
 }
 
 .phone-number-display:hover::after {
 opacity: 1;
 bottom: -30px;
 }
 
 .phone-cta-subtitle {
 font-size: 1.2rem;
 color: var(--charcoal);
 opacity: 0.8;
 margin-bottom: 40px;
 font-weight: 600;
 }
 
 .phone-benefits {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 gap: 25px;
 margin-top: 50px;
 padding-top: 40px;
 border-top: 2px solid rgba(212, 118, 78, 0.1);
 }
 
 .phone-benefit {
 display: flex;
 align-items: center;
 gap: 12px;
 font-size: 1.1rem;
 font-weight: 600;
 color: var(--charcoal);
 }
 
 .benefit-icon {
 width: 32px;
 height: 32px;
 background: linear-gradient(135deg, var(--burnt-orange), var(--rust-red));
 color: white;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 font-weight: 700;
 flex-shrink: 0;
 }
 
 /* ===== ABOUT SECTION ===== */
 #about {
 background: var(--off-white);
 }
 
 .about-content {
 display: grid;
 grid-template-columns: 1fr;
 gap: 60px;
 align-items: start;
 margin-top: 40px;
 }
 
 .about-text h3 {
 font-family: var(--font-heading);
 font-size: 1.8rem;
 font-weight: 700;
 color: var(--charcoal);
 margin-bottom: 20px;
 margin-top: 40px;
 }
 
 .about-text h3:first-child {
 margin-top: 0;
 }
 
 .about-text p {
 margin-bottom: 20px;
 line-height: 1.8;
 color: var(--charcoal);
 opacity: 0.85;
 font-size: 1.05rem;
 }
 
 .about-features {
 display: grid;
 gap: 20px;
 margin-top: 40px;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 }
 
 .about-feature {
 display: flex;
 align-items: center;
 gap: 15px;
 }
 
 .about-feature-icon {
 width: 50px;
 height: 50px;
 background: linear-gradient(135deg, var(--burnt-orange), var(--rust-red));
 border-radius: 10px;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 1.5rem;
 flex-shrink: 0;
 }
 
 .about-feature-text {
 font-weight: 600;
 color: var(--charcoal);
 font-size: 0.95rem;
 }
 
 .about-image {
 display: none;
 }
 
 /* ===== FOOTER ===== */
 footer {
 background: var(--charcoal);
 color: var(--off-white);
 padding: 60px 20px 30px;
 }
 
 .footer-logo img {
 height: 80px;
 margin-bottom: 15px;
 filter: brightness(1.1);
 transition: var(--transition-smooth);
 }
 
 .footer-logo img:hover {
 transform: scale(1.05);
 }
 
 .footer-content {
 max-width: var(--container-max);
 margin: 0 auto;
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 40px;
 margin-bottom: 40px;
 }
 
 .footer-section h4 {
 font-family: var(--font-heading);
 font-size: 1.2rem;
 font-weight: 700;
 margin-bottom: 20px;
 color: var(--burnt-orange);
 }
 
 .footer-section p,
 .footer-section a {
 margin-bottom: 10px;
 opacity: 0.9;
 transition: opacity 0.3s;
 }
 
 .footer-section a:hover {
 opacity: 1;
 color: var(--burnt-orange);
 }
 
 .footer-links {
 list-style: none;
 }
 
 .footer-links li {
 margin-bottom: 10px;
 }
 
 .social-links {
 display: flex;
 gap: 15px;
 margin-top: 15px;
 }
 
 .social-link {
 width: 40px;
 height: 40px;
 background: var(--burnt-orange);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 transition: var(--transition-smooth);
 }
 
 .social-link:hover {
 transform: translateY(-3px);
 background: var(--rust-red);
 }
 
 .footer-phone-highlight {
 margin: 15px 0;
 }
 
 .footer-phone-link {
 color: var(--burnt-orange) !important;
 font-size: 1.3rem;
 font-weight: 700;
 text-decoration: none;
 transition: var(--transition-smooth);
 display: inline-block;
 }
 
 .footer-phone-link:hover {
 color: var(--desert-gold) !important;
 transform: scale(1.05);
 }
 
 .footer-bottom {
 max-width: var(--container-max);
 margin: 0 auto;
 padding-top: 30px;
 border-top: 1px solid rgba(255, 255, 255, 0.1);
 text-align: center;
 opacity: 0.7;
 }
 
 /* ===== MOBILE STICKY CTA ===== */
 .mobile-sticky-cta {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 background: var(--burnt-orange);
 padding: 15px 20px;
 display: none;
 z-index: 999;
 box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
 }
 
 .mobile-sticky-cta button {
 width: 100%;
 background: white;
 color: var(--burnt-orange);
 border: none;
 padding: 16px;
 border-radius: 30px;
 font-family: var(--font-heading);
 font-weight: 700;
 font-size: 1.1rem;
 cursor: pointer;
 }
 
 /* ===== FLOATING VIDEO PLAYER ===== */
 .floating-video {
 position: fixed;
 top: 80px;
 right: 20px;
 width: 420px;
 background: white;
 border-radius: 15px;
 box-shadow: 
 0 15px 50px rgba(0, 0, 0, 0.3),
 0 5px 20px rgba(212, 118, 78, 0.2);
 z-index: 998;
 overflow: hidden;
 opacity: 0;
 transform: translateY(-20px) scale(0.95);
 transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
 pointer-events: none;
 }
 
 .floating-video.visible {
 opacity: 1;
 transform: translateY(0) scale(1);
 pointer-events: all;
 }
 
 .floating-video-header {
 background: linear-gradient(135deg, var(--burnt-orange), var(--rust-red));
 padding: 12px 15px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 }
 
 .floating-video-title {
 color: white;
 font-family: var(--font-heading);
 font-weight: 700;
 font-size: 0.95rem;
 display: flex;
 align-items: center;
 gap: 8px;
 }
 
 .floating-video-close {
 background: rgba(255, 255, 255, 0.2);
 border: none;
 color: white;
 width: 28px;
 height: 28px;
 border-radius: 50%;
 font-size: 1.5rem;
 line-height: 1;
 cursor: pointer;
 transition: var(--transition-smooth);
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 0;
 }
 
 .floating-video-close:hover {
 background: rgba(255, 255, 255, 0.3);
 transform: rotate(90deg);
 }
 
 .floating-video-container {
 background: #000;
 }

 .vimeo-embed-wrapper {
 padding: 56.25% 0 0 0;
 position: relative;
 }

 .vimeo-embed-wrapper iframe {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 }
 
 .floating-video-container iframe {
 display: block;
 }

 /* ===== MEET YOUR GUIDE SECTION (TABLET/MOBILE) ===== */
.meet-guide-section {
  display: none; /* Hidden on desktop */
  background: var(--off-white);
}

.guide-video-container {
  max-width: 800px;
  margin: 0 auto;
}

.guide-video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 10px 30px rgba(212, 118, 78, 0.1);
}

.guide-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
 
 /* ===== ANIMATIONS ===== */
 @keyframes fadeInUp {
 from {
 opacity: 0;
 transform: translateY(40px);
 }
 to {
 opacity: 1;
 transform: translateY(0);
 }
 }
 
 @keyframes bounce {
 0%, 20%, 50%, 80%, 100% {
 transform: translateX(-50%) translateY(0);
 }
 40% {
 transform: translateX(-50%) translateY(-10px);
 }
 60% {
 transform: translateX(-50%) translateY(-5px);
 }
 }
 
 @keyframes scrollDown {
 0% {
 opacity: 0;
 top: 10px;
 }
 50% {
 opacity: 1;
 }
 100% {
 opacity: 0;
 top: 30px;
 }
 }
 
 @keyframes breathe {
 0%, 100% {
 opacity: 1;
 transform: scale(1);
 }
 50% {
 opacity: 0.8;
 transform: scale(1.05);
 }
 }
 
 @keyframes floatParticles {
 0% {
 transform: translateY(0) translateX(0);
 }
 100% {
 transform: translateY(-100vh) translateX(50px);
 }
 }
 
 @keyframes float {
 0%, 100% {
 transform: translateY(0) translateX(0);
 }
 50% {
 transform: translateY(20px) translateX(10px);
 }
 }
 
 @keyframes shimmer {
 0% {
 background-position: -1000px 0;
 }
 100% {
 background-position: 1000px 0;
 }
 }
 
 @keyframes pulse {
 0%, 100% {
 opacity: 1;
 transform: scale(1);
 }
 50% {
 opacity: 0.8;
 transform: scale(1.05);
 }
 }
 
 /* ===== RESPONSIVE DESIGN ===== */

 /* Large tablet / small laptop styles */
 /* Large tablet / small laptop styles */
@media (max-width: 1680px) {
  .logo img {
    height: 150px;
  }
  
  .nav-container {
    padding: 8px 20px 8px 280px;
  }
  
  .floating-video {
    display: none !important;
  }
  
  .meet-guide-section {
    display: block;
  }  
}@media (max-width: 1680px) {
  .logo img {
    height: 150px;
  }
  
  .nav-container {
    padding: 8px 20px 8px 280px;
  }
  
  /* ADD THESE TWO RULES: */
 .meet-guide-section {
    display: block;
  }  
}

 /* Tablet styles */
 @media (max-width: 1024px) {
 .logo img {
 height: 130px;
 }
 
 .nav-container {
 padding: 8px 20px 8px 220px;
 }
 
   /* Hide floating video, show section instead */
  .floating-video {
    display: none !important;
  }
  
  .meet-guide-section {
    display: block;
  }
 }

 @media (max-width: 768px) {
 .nav-menu {
 display: none;
 }
 
 .mobile-menu-toggle {
 display: block;
 }
 
 .logo {
 left: 15px;
 }
 
 .logo img {
 height: 100px;
 }
 
 .nav-container {
 padding: 8px 20px 8px 140px;
 }
 
 .hero {
 min-height: 450px;
 }
 
 .tours-grid,
 .features-grid,
 .vehicles-grid {
 grid-template-columns: 1fr;
 }
 
 .booking-container {
 padding: 30px 20px;
 }
 
 .phone-cta-title {
 font-size: 1.5rem;
 }
 
 .phone-number-display {
 font-size: 2.5rem;
 }
 
 .phone-benefits {
 grid-template-columns: 1fr;
 }
 
 .mobile-sticky-cta {
 display: block;
 }
 
 .meet-guide-section {
    display: block;
  }
 
 .footer-content {
 grid-template-columns: 1fr;
 }
 
 /* Carousel Mobile Styles */
 .carousel-main {
 height: 400px;
 border-radius: 15px;
 }
 
 .carousel-btn {
 width: 45px;
 height: 45px;
 }
 
 .carousel-btn span {
 font-size: 2rem;
 }
 
 .carousel-prev {
 left: 10px;
 }
 
 .carousel-next {
 right: 10px;
 }
 
 .carousel-caption {
 font-size: 1.1rem;
 padding: 30px 20px 20px;
 }
 
 .carousel-indicators {
 gap: 8px;
 margin-top: 20px;
 }
 
 .carousel-indicator {
 width: 10px;
 height: 10px;
 }
 
 .carousel-indicator.active {
 width: 24px;
 }
 
 /* Video frame responsive */
 .video-frame-3d {
 padding: 25px;
 transform: rotateX(3deg);
 }
 
 .video-container-wrapper {
 margin: 40px auto 50px;
 }
 
 :root {
 --section-padding: 60px 20px;
 }
 }
 
 @media (max-width: 480px) {
 .section-title {
 font-size: 1.8rem;
 }
 
 .hero h1 {
 font-size: 2rem;
 }
 
 .hero-subtitle {
 font-size: 1rem;
 }
 
 .logo {
 left: 10px;
 }
 
 .logo img {
 height: 80px;
 }
 
 .nav-container {
 padding: 6px 15px 6px 95px;
 }
 
 /* Video frame mobile */
 .video-frame-3d {
 padding: 15px;
 transform: rotateX(2deg);
 }
 
 .video-container-wrapper {
 margin: 30px auto 40px;
 }
 
 .footer-logo img {
 height: 60px !important;
 }
 
 /* Phone CTA mobile */
 .phone-icon {
 font-size: 3.5rem;
 }
 
 .phone-cta-title {
 font-size: 1.3rem;
 }
 
 .phone-number-display {
 font-size: 2rem;
 letter-spacing: -1px;
 }
 
 .phone-cta-subtitle {
 font-size: 1rem;
 }
 
 .phone-benefit {
 font-size: 0.95rem;
 }
 
 .carousel-main {
 height: 320px;
 }
 
 .carousel-btn {
 width: 40px;
 height: 40px;
 }
 
 .carousel-btn span {
 font-size: 1.8rem;
 }
 
 .carousel-caption {
 font-size: 1rem;
 padding: 25px 15px 15px;
 }

  /* Floating video on small mobile */
.floating-video {
  width: 280px;
  top: 65px;
  right: 10px;
}

.floating-video-title {
  font-size: 0.85rem;
}
 }

/* Big desktop (1681px and above) - smaller floating video */
@media (min-width: 1681px) {
  .floating-video {
    width: 350px;  /* Change this to your preferred size */
  }
}

/* ===== VIDEO PLAY OVERLAY ===== */
.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
}

.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  filter: brightness(0.6);
  transition: filter 0.3s ease, transform 0.5s ease;
}

.video-play-overlay:hover .video-thumbnail {
  filter: brightness(0.8);
  transform: scale(1.03);
}

.play-overlay-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.play-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--burnt-orange), var(--rust-red));
  color: #fff;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 25px rgba(212, 118, 78, 0.5);
}

.video-play-overlay:hover .play-icon-circle {
  transform: scale(1.15);
  box-shadow: 0 0 40px rgba(212, 118, 78, 0.7);
}

.play-overlay-text {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Hidden state after click */
.video-play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

/* The injected iframe container */
#heroVideoContainer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#heroVideoContainer iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

/* Responsive overlay */
@media (max-width: 768px) {
  .play-icon-circle {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .play-overlay-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .play-icon-circle {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .play-overlay-text {
    font-size: 12px;
  }
}

/* ================================================================
   BOOKING PAGE STYLES
   Added: [Date]
   ================================================================ */

/* ===== BOOKING PAGE MAIN CONTAINER ===== */
.booking-page {
    max-width: 1200px;
    margin: 200px auto 60px;
    padding: 0 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--burnt-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--charcoal);
    opacity: 0.85;
    max-width: 700px;
    margin: 0 auto 15px;
    line-height: 1.8;
}

.calendar-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(184, 197, 168, 0.2), rgba(168, 205, 236, 0.2));
    border: 2px solid var(--sage-green);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--charcoal);
    margin-top: 10px;
}

/* ===== BOOKING PAGE TOUR SELECTION GRID ===== */
.tours-section {
    margin-bottom: 60px;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.section-intro h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.section-intro p {
    font-size: 1.05rem;
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.7;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tour-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(212, 118, 78, 0.15);
    border-color: rgba(212, 118, 78, 0.2);
}

.tour-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.tour-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.difficulty-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--burnt-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.tour-content {
    padding: 30px;
}

.tour-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.tour-description {
    color: var(--charcoal);
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.tour-details {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.tour-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--charcoal);
    font-weight: 600;
}

.tour-detail-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--burnt-orange), var(--rust-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
}

.book-tour-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--burnt-orange), var(--rust-red));
    color: white;
    padding: 16px;
    border-radius: 15px;
    font-family: var(--font-heading);
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(212, 118, 78, 0.3);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.book-tour-btn:hover {
    background: linear-gradient(135deg, var(--rust-red), var(--canyon-red));
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 118, 78, 0.4);
}

/* ===== BOOKING PAGE HELP SECTION ===== */
.help-section {
    background: white;
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid rgba(212, 118, 78, 0.1);
}

.help-section h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.help-section p {
    font-size: 1.05rem;
    color: var(--charcoal);
    opacity: 0.8;
    margin-bottom: 30px;
}

.phone-cta {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--burnt-orange), var(--desert-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: var(--transition-smooth);
    margin-bottom: 15px;
}

.phone-cta:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 5px 15px rgba(212, 118, 78, 0.3));
}

.hours {
    font-size: 1.1rem;
    color: var(--charcoal);
    opacity: 0.85;
    font-weight: 600;
}

/* ===== BOOKING PAGE RESPONSIVE ===== */
@media (max-width: 768px) {
    .booking-page {
        margin-top: 140px;
        padding: 0 15px;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .help-section {
        padding: 35px 25px;
    }
    
    .phone-cta {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .tour-content {
        padding: 25px 20px;
    }
    
    .phone-cta {
        font-size: 1.8rem;
    }
}

/* ================================================================
   END OF BOOKING PAGE STYLES
   ================================================================ */

   /* ================================================================
   FAQ PAGE STYLES - RESPONSIVE & INTERACTIVE
   ================================================================ */

/* ===== FAQ PAGE BASE ===== */
.faq-page-body {
    background: linear-gradient(135deg, rgba(245, 237, 227, 0.8) 0%, rgba(248, 244, 240, 0.9) 100%);
    min-height: 100vh;
    padding: 80px 20px 60px;
}

.faq-section {
    position: relative;
    overflow: hidden;
}

/* Background watermark */
.faq-watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: clamp(120px, 25vw, 300px);
    font-weight: 900;
    color: rgba(212, 118, 78, 0.03);
    letter-spacing: 20px;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

/* ===== STATUS BADGE ===== */
.status-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--burnt-orange), var(--rust-red));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(212, 118, 78, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

/* ===== FAQ CONTAINER ===== */
.faq-container {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
    z-index: 1;
}

/* ===== FAQ ITEM ===== */
.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 15px 40px rgba(212, 118, 78, 0.15);
    border-color: rgba(212, 118, 78, 0.1);
    transform: translateY(-2px);
}

/* Hide default checkbox */
.faq-toggle {
    display: none;
}

/* ===== FAQ QUESTION ===== */
.faq-question {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 700;
    color: var(--charcoal);
    position: relative;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--burnt-orange);
    background: rgba(212, 118, 78, 0.02);
}

/* FAQ Index Number */
.faq-index {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--burnt-orange), var(--rust-red));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(212, 118, 78, 0.3);
    transition: all 0.3s ease;
}

.faq-item:hover .faq-index {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(212, 118, 78, 0.4);
}

/* Plus/Minus Icon */
.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(212, 118, 78, 0.1), rgba(184, 92, 62, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 300;
    color: var(--burnt-orange);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.faq-toggle:checked + .faq-question::after {
    content: '−';
    transform: rotate(180deg);
    background: linear-gradient(135deg, var(--burnt-orange), var(--rust-red));
    color: white;
}

/* ===== FAQ ANSWER ===== */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 1000px;
}

.answer-content {
    padding: 0 30px 30px 100px;
    color: var(--charcoal);
    line-height: 1.8;
    font-size: 1.05rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease 0.1s;
}

.faq-toggle:checked ~ .faq-answer .answer-content {
    opacity: 1;
    transform: translateY(0);
}

.answer-content p {
    margin-bottom: 15px;
}

.answer-content p:last-child {
    margin-bottom: 0;
}

.answer-content strong {
    color: var(--burnt-orange);
    font-weight: 700;
}

/* FAQ Links */
.faq-link {
    color: var(--burnt-orange);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid var(--burnt-orange);
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.faq-link:hover {
    color: var(--rust-red);
    border-bottom-color: var(--rust-red);
    padding-bottom: 4px;
}

/* ===== ACTIVE/EXPANDED STATE ===== */
.faq-toggle:checked + .faq-question {
    background: linear-gradient(135deg, rgba(212, 118, 78, 0.05), rgba(184, 92, 62, 0.05));
    color: var(--burnt-orange);
}

.faq-toggle:checked ~ .faq-item {
    box-shadow: 0 20px 50px rgba(212, 118, 78, 0.2);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 768px) {
    .faq-page-body {
        padding: 60px 15px 40px;
    }

    .faq-question {
        padding: 20px 20px;
        gap: 15px;
        font-size: 1.1rem;
    }

    .faq-index {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .faq-question::after {
        right: 20px;
        width: 35px;
        height: 35px;
        font-size: 1.8rem;
    }

    .answer-content {
        padding: 0 20px 25px 80px;
        font-size: 1rem;
    }

    .faq-watermark {
        font-size: 100px;
        letter-spacing: 10px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .faq-page-body {
        padding: 40px 10px 30px;
    }

    .faq-container {
        margin-top: 40px;
    }

    .faq-item {
        margin-bottom: 15px;
        border-radius: 15px;
    }

    .faq-question {
        padding: 18px 15px;
        gap: 12px;
        font-size: 0.95rem;
        flex-direction: row;
        align-items: flex-start;
    }

    .faq-index {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    .faq-question::after {
        right: 15px;
        top: 18px;
        width: 32px;
        height: 32px;
        font-size: 1.6rem;
    }

    .answer-content {
        padding: 0 15px 20px 15px;
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .faq-watermark {
        font-size: 80px;
        letter-spacing: 5px;
        opacity: 0.5;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .status-badge {
        font-size: 0.65rem;
        padding: 6px 16px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

/* Smooth scroll behavior */
.faq-item {
    scroll-margin-top: 100px;
}

/* ===== ACCESSIBILITY ===== */
.faq-question:focus {
    outline: 3px solid var(--burnt-orange);
    outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .faq-toggle {
        display: none;
    }
    
    .faq-answer {
        max-height: none !important;
    }
    
    .answer-content {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .faq-watermark {
        display: none;
    }
}

/* ================================================================
   CANCELLATION POLICY PAGE STYLES
   ================================================================ */

/* ===== POLICY PAGE BASE ===== */
.policy-page-body {
    background: linear-gradient(135deg, rgba(245, 237, 227, 0.8) 0%, rgba(248, 244, 240, 0.9) 100%);
    min-height: 100vh;
}

.policy-section {
    padding: 100px 20px 60px;
    position: relative;
}

.policy-container {
    max-width: 900px;
    margin: 60px auto 0;
}

/* ===== POLICY CARDS ===== */
.policy-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid rgba(212, 118, 78, 0.1);
    transition: all 0.3s ease;
}

.policy-card:hover {
    box-shadow: 0 15px 50px rgba(212, 118, 78, 0.15);
    transform: translateY(-3px);
}

/* ===== POLICY ICONS ===== */
.policy-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    background: linear-gradient(135deg, var(--burnt-orange), var(--rust-red));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(212, 118, 78, 0.3);
}

/* ===== POLICY HEADINGS ===== */
.policy-heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

/* ===== CANCELLATION TABLE ===== */
.policy-table {
    margin: 30px 0;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(212, 118, 78, 0.1);
}

.policy-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease;
}

.policy-row:last-child {
    border-bottom: none;
}

.policy-row:hover {
    background: rgba(212, 118, 78, 0.03);
}

.policy-row.highlight {
    background: linear-gradient(135deg, rgba(212, 118, 78, 0.05), rgba(218, 165, 32, 0.05));
    border-top: 2px solid rgba(212, 118, 78, 0.2);
    border-bottom: 2px solid rgba(212, 118, 78, 0.2);
}

.policy-timeframe {
    font-weight: 700;
    color: var(--charcoal);
    font-size: 1.05rem;
}

.policy-refund {
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    text-align: center;
    font-size: 0.95rem;
}

.refund-none {
    background: linear-gradient(135deg, #E74C3C, #C0392B);
    color: white;
}

.refund-partial {
    background: linear-gradient(135deg, #F39C12, #E67E22);
    color: white;
}

.refund-full {
    background: linear-gradient(135deg, #27AE60, #229954);
    color: white;
}

/* ===== POLICY NOTE ===== */
.policy-note {
    background: rgba(168, 205, 236, 0.1);
    border-left: 4px solid var(--sky-blue);
    padding: 15px 20px;
    margin-top: 25px;
    border-radius: 8px;
    font-size: 0.95rem;
}

/* ===== POLICY WARNING ===== */
.policy-warning {
    background: linear-gradient(135deg, rgba(212, 118, 78, 0.1), rgba(193, 68, 14, 0.1));
    border-left: 4px solid var(--burnt-orange);
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
    font-size: 1rem;
}

/* ===== REQUIRED BADGE ===== */
.required-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--burnt-orange), var(--rust-red));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* ===== POLICY LISTS ===== */
.policy-list {
    margin-top: 25px;
}

.policy-list h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--burnt-orange);
    margin-top: 25px;
    margin-bottom: 15px;
}

.policy-list ul {
    list-style: none;
    padding-left: 0;
}

.policy-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    line-height: 1.7;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.policy-list li:last-child {
    border-bottom: none;
}

.policy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--burnt-orange), var(--rust-red));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
}

/* ===== DEDUCTIBLE INFO ===== */
.deductible-info {
    background: linear-gradient(135deg, rgba(245, 237, 227, 0.5), rgba(232, 213, 196, 0.5));
    border-radius: 15px;
    padding: 25px;
    margin-top: 25px;
}

.deductible-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 15px;
}

/* ===== COVERAGE DETAILS ===== */
.coverage-details {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    border: 2px solid rgba(212, 118, 78, 0.1);
}

.coverage-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.coverage-item:last-child {
    border-bottom: none;
}

.coverage-label {
    font-weight: 700;
    color: var(--charcoal);
}

.coverage-amount {
    color: var(--burnt-orange);
    font-weight: 700;
}

/* ===== POLICY DISCLAIMER ===== */
.policy-disclaimer {
    background: rgba(255, 255, 255, 0.5);
    border: 2px dashed rgba(212, 118, 78, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-top: 25px;
    font-size: 0.95rem;
    font-style: italic;
}

/* ===== POLICY CTA ===== */
.policy-cta {
    background: linear-gradient(135deg, var(--burnt-orange), var(--rust-red));
    color: white;
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 20px 60px rgba(212, 118, 78, 0.3);
}

.policy-cta h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.policy-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 16px 35px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    display: inline-block;
}

.cta-button.primary {
    background: white;
    color: var(--burnt-orange);
}

.cta-button.primary:hover {
    background: var(--off-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--burnt-orange);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .policy-section {
        padding: 80px 15px 40px;
    }

    .policy-card {
        padding: 30px 20px;
    }

    .policy-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .policy-heading {
        font-size: 1.5rem;
    }

    .policy-row {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px 15px;
    }

    .policy-timeframe {
        font-size: 1rem;
    }

    .policy-refund {
        width: 100%;
    }

    .coverage-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .policy-cta {
        padding: 35px 25px;
    }

    .policy-cta h3 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .policy-card {
        padding: 25px 15px;
    }

    .policy-heading {
        font-size: 1.3rem;
    }

    .policy-list li {
        padding-left: 30px;
        font-size: 0.95rem;
    }

    .deductible-info,
    .coverage-details {
        padding: 20px 15px;
    }

    .policy-cta {
        padding: 30px 20px;
    }

    .policy-cta h3 {
        font-size: 1.3rem;
    }

    .policy-cta p {
        font-size: 1rem;
    }
}

/* ================================================================
   PRIVACY POLICY PAGE - ADDITIONAL STYLES
   Add these to your styles.css (in addition to cancellation policy styles)
   ================================================================ */

/* ===== EFFECTIVE DATE ===== */
.policy-effective-date {
    font-size: 1rem;
    color: var(--charcoal);
    opacity: 0.7;
    font-style: italic;
    margin-top: 10px;
}

/* ===== USAGE GRID ===== */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.usage-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(245, 237, 227, 0.3), rgba(248, 244, 240, 0.3));
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(212, 118, 78, 0.1);
    transition: all 0.3s ease;
}

.usage-item:hover {
    background: linear-gradient(135deg, rgba(245, 237, 227, 0.5), rgba(248, 244, 240, 0.5));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 118, 78, 0.1);
}

.usage-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--burnt-orange), var(--rust-red));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 118, 78, 0.2);
}

.usage-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.usage-text p {
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.8;
    margin: 0;
    line-height: 1.5;
}

/* ===== INFO BOX ===== */
.info-box {
    background: linear-gradient(135deg, rgba(168, 205, 236, 0.1), rgba(184, 197, 168, 0.1));
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    border: 2px solid rgba(168, 205, 236, 0.2);
}

.info-box h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.info-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.info-tag {
    display: inline-block;
    background: white;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 118, 78, 0.1);
}

/* ===== RIGHTS LIST ===== */
.rights-list {
    margin: 30px 0;
}

.right-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(245, 237, 227, 0.4), rgba(248, 244, 240, 0.4));
    border-radius: 15px;
    border-left: 5px solid var(--burnt-orange);
    transition: all 0.3s ease;
}

.right-item:hover {
    background: linear-gradient(135deg, rgba(245, 237, 227, 0.6), rgba(248, 244, 240, 0.6));
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(212, 118, 78, 0.1);
}

.right-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--burnt-orange), var(--rust-red));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(212, 118, 78, 0.3);
}

.right-content strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.right-content p {
    margin: 0;
    line-height: 1.7;
    color: var(--charcoal);
    opacity: 0.85;
}

/* ===== GDPR RIGHTS ===== */
.gdpr-rights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.gdpr-right {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid rgba(212, 118, 78, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gdpr-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, var(--burnt-orange), var(--rust-red));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.gdpr-right:hover::before {
    transform: scaleY(1);
}

.gdpr-right:hover {
    border-color: var(--burnt-orange);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(212, 118, 78, 0.15);
}

.gdpr-right h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--burnt-orange);
    margin-bottom: 12px;
    font-weight: 700;
}

.gdpr-right p {
    margin: 0;
    line-height: 1.7;
    color: var(--charcoal);
    opacity: 0.85;
    font-size: 0.95rem;
}

/* ===== RESPONSIVE - PRIVACY SPECIFIC ===== */
@media (max-width: 768px) {
    .usage-grid {
        grid-template-columns: 1fr;
    }

    .usage-item {
        padding: 18px;
    }

    .usage-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .right-item {
        flex-direction: column;
        padding: 20px;
    }

    .right-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .gdpr-rights {
        grid-template-columns: 1fr;
    }

    .info-items {
        gap: 10px;
    }

    .info-tag {
        font-size: 0.85rem;
        padding: 8px 14px;
    }
}

@media (max-width: 480px) {
    .usage-text strong {
        font-size: 1rem;
    }

    .usage-text p {
        font-size: 0.85rem;
    }

    .right-content strong {
        font-size: 1.1rem;
    }

    .gdpr-right h4 {
        font-size: 1.1rem;
    }

    .gdpr-right p {
        font-size: 0.9rem;
    }
}

/* ================================================================
   SAFETY GUIDELINES & WHAT TO BRING - ADDITIONAL STYLES
   Add these to your styles.css (after privacy policy styles)
   ================================================================ */

/* ===== PACKING GRID ===== */
.packing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.packing-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: white;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid rgba(212, 118, 78, 0.1);
    transition: all 0.3s ease;
}

.packing-item:hover {
    border-color: var(--burnt-orange);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(212, 118, 78, 0.15);
}

.packing-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.packing-content strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.packing-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.5;
}

/* ===== SEASONAL GUIDE ===== */
.seasonal-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.season-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.season-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 118, 78, 0.15);
}

.season-header {
    padding: 25px;
    color: white;
    text-align: center;
}

.season-header.spring {
    background: linear-gradient(135deg, #27AE60, #229954);
}

.season-header.summer {
    background: linear-gradient(135deg, #F39C12, #E67E22);
}

.season-header.fall {
    background: linear-gradient(135deg, #D35400, #BA4A00);
}

.season-header.winter {
    background: linear-gradient(135deg, #2980B9, #21618C);
}

.season-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.temp-range {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.95;
    margin: 0;
}

.season-content {
    padding: 25px;
}

.season-content h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.season-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.season-content li {
    padding: 8px 0 8px 30px;
    position: relative;
    line-height: 1.6;
}

.season-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--burnt-orange);
    font-weight: 700;
    font-size: 1.1rem;
}

.season-note {
    background: rgba(212, 118, 78, 0.05);
    padding: 15px;
    border-left: 4px solid var(--burnt-orange);
    border-radius: 8px;
    font-size: 0.95rem;
    margin: 0;
}

/* ===== PROVIDED GRID ===== */
.provided-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.provided-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(245, 237, 227, 0.5), rgba(248, 244, 240, 0.5));
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(212, 118, 78, 0.1);
    transition: all 0.3s ease;
}

.provided-item:hover {
    background: linear-gradient(135deg, rgba(245, 237, 227, 0.8), rgba(248, 244, 240, 0.8));
    transform: translateX(5px);
}

.provided-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.provided-text {
    font-weight: 600;
    color: var(--charcoal);
    font-size: 0.95rem;
}

/* ===== TIPS LIST ===== */
.tips-list {
    margin: 30px 0;
}

.tip-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(245, 237, 227, 0.4), rgba(248, 244, 240, 0.4));
    border-radius: 15px;
    border-left: 5px solid var(--burnt-orange);
    transition: all 0.3s ease;
}

.tip-item:hover {
    background: linear-gradient(135deg, rgba(245, 237, 227, 0.6), rgba(248, 244, 240, 0.6));
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(212, 118, 78, 0.1);
}

.tip-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--burnt-orange), var(--rust-red));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(212, 118, 78, 0.3);
}

.tip-content strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.tip-content p {
    margin: 0;
    line-height: 1.7;
    color: var(--charcoal);
    opacity: 0.85;
}

/* ===== CHECKLIST ===== */
.checklist-card {
    background: linear-gradient(135deg, rgba(168, 205, 236, 0.1), rgba(184, 197, 168, 0.1));
}

.checklist {
    margin: 25px 0;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin-bottom: 10px;
    background: white;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.checklist-item:hover {
    background: rgba(212, 118, 78, 0.03);
    border-color: rgba(212, 118, 78, 0.2);
    transform: translateX(5px);
}

.checklist-item input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    accent-color: var(--burnt-orange);
}

.checklist-item span {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--charcoal);
}

/* ===== RESPONSIVE - SAFETY & PACKING PAGES ===== */
@media (max-width: 768px) {
    .packing-grid {
        grid-template-columns: 1fr;
    }

    .packing-item {
        padding: 18px;
    }

    .packing-icon {
        font-size: 2rem;
    }

    .seasonal-guide {
        grid-template-columns: 1fr;
    }

    .season-header h3 {
        font-size: 1.3rem;
    }

    .temp-range {
        font-size: 1rem;
    }

    .provided-grid {
        grid-template-columns: 1fr;
    }

    .tip-item {
        flex-direction: column;
        padding: 20px;
    }

    .tip-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .packing-content strong {
        font-size: 1rem;
    }

    .packing-content p {
        font-size: 0.85rem;
    }

    .season-content {
        padding: 20px;
    }

    .season-content h4 {
        font-size: 1rem;
    }

    .season-content li {
        font-size: 0.9rem;
        padding-left: 25px;
    }

    .season-note {
        font-size: 0.85rem;
        padding: 12px;
    }

    .provided-item {
        padding: 12px;
    }

    .provided-icon {
        font-size: 1.5rem;
    }

    .provided-text {
        font-size: 0.85rem;
    }

    .tip-content strong {
        font-size: 1.1rem;
    }

    .tip-content p {
        font-size: 0.9rem;
    }

    .checklist-item {
        padding: 12px;
    }

    .checklist-item span {
        font-size: 0.95rem;
    }
}

/* ================================================================
   ABOUT PAGE STYLES
   Add these to your styles.css
   ================================================================ */

/* ===== ABOUT HERO ===== */
.about-hero {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, var(--burnt-orange) 0%, var(--rust-red) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/hero-pattern.svg');
    opacity: 0.1;
    pointer-events: none;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 118, 78, 0.8), rgba(184, 92, 62, 0.9));
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -2px;
}

.about-hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* ===== ABOUT MAIN ===== */
.about-main {
    padding: 80px 20px;
    background: var(--off-white);
}

.about-card {
    background: white;
    border-radius: 25px;
    padding: 60px;
    margin-bottom: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 118, 78, 0.1);
}

.about-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 30px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 25px;
    font-weight: 400;
}

.lead-text strong {
    color: var(--burnt-orange);
    font-weight: 700;
}

/* ===== MISSION CARD ===== */
.mission-card {
    background: linear-gradient(135deg, rgba(245, 237, 227, 0.3), rgba(248, 244, 240, 0.5));
    border: 2px solid rgba(212, 118, 78, 0.15);
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 20px;
}

/* ===== HIGHLIGHTS GRID ===== */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: white;
    padding: 25px;
    border-radius: 20px;
    border: 2px solid rgba(212, 118, 78, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-color: var(--burnt-orange);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 118, 78, 0.15);
}

.highlight-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.highlight-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--burnt-orange);
    margin-bottom: 8px;
}

.highlight-text p {
    margin: 0;
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.6;
}

/* ===== OUR STORY SECTION ===== */
.our-story-section {
    margin: 60px 0;
}

.story-content {
    background: white;
    border-radius: 25px;
    padding: 60px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.story-text {
    max-width: 900px;
}

.story-intro {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--burnt-orange);
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--charcoal);
    margin-bottom: 25px;
}

/* ===== FAMILY SECTION ===== */
.family-section {
    margin-top: 50px;
}

.family-photo-placeholder {
    background: linear-gradient(135deg, rgba(212, 118, 78, 0.1), rgba(184, 92, 62, 0.1));
    border-radius: 25px;
    padding: 60px;
    text-align: center;
    border: 3px dashed rgba(212, 118, 78, 0.3);
}

.family-photo-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.family-photo-text p {
    font-size: 1.2rem;
    color: var(--charcoal);
    opacity: 0.8;
    margin-bottom: 10px;
}

.family-names {
    font-style: italic;
    color: var(--burnt-orange);
    font-weight: 600;
}

/* ===== FUTURE CARD ===== */
.future-card {
    background: linear-gradient(135deg, rgba(168, 205, 236, 0.08), rgba(184, 197, 168, 0.08));
    border: 2px solid rgba(168, 205, 236, 0.15);
}

.future-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.vision-box {
    background: linear-gradient(135deg, var(--burnt-orange), var(--rust-red));
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
    box-shadow: 0 15px 40px rgba(212, 118, 78, 0.3);
}

.vision-box h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.vision-box p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 15px;
    opacity: 0.95;
}

.vision-box p:last-child {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 1.3rem;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose-section {
    margin: 80px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-item {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(212, 118, 78, 0.1);
    transition: all 0.3s ease;
}

.why-item:hover {
    border-color: var(--burnt-orange);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 118, 78, 0.15);
}

.why-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.why-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 15px;
    font-weight: 700;
}

.why-item p {
    font-size: 1.05rem;
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.6;
    margin: 0;
}

/* ===== ABOUT CTA ===== */
.about-cta {
    background: linear-gradient(135deg, var(--burnt-orange), var(--rust-red));
    color: white;
    border-radius: 30px;
    padding: 70px 50px;
    text-align: center;
    margin-top: 80px;
    box-shadow: 0 25px 70px rgba(212, 118, 78, 0.3);
}

.about-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 40px;
    opacity: 0.95;
}

.about-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta .cta-button {
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.about-cta .cta-button.primary {
    background: white;
    color: var(--burnt-orange);
}

.about-cta .cta-button.primary:hover {
    background: var(--off-white);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.about-cta .cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.about-cta .cta-button.secondary:hover {
    background: white;
    color: var(--burnt-orange);
    transform: translateY(-5px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .about-hero {
        height: 400px;
    }

    .about-card {
        padding: 40px 25px;
    }

    .story-content {
        padding: 40px 25px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .highlight-item {
        padding: 20px;
    }

    .highlight-icon {
        font-size: 2.5rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-item {
        padding: 30px 25px;
    }

    .vision-box {
        padding: 30px 25px;
    }

    .about-cta {
        padding: 50px 30px;
    }

    .about-cta .cta-buttons {
        flex-direction: column;
    }

    .about-cta .cta-button {
        width: 100%;
    }

    .family-photo-placeholder {
        padding: 40px 25px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 350px;
    }

    .about-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .story-content {
        padding: 30px 20px;
    }

    .about-heading {
        font-size: 1.8rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    .story-intro {
        font-size: 1.2rem;
    }

    .story-text p {
        font-size: 1rem;
    }

    .highlight-text strong {
        font-size: 1.1rem;
    }

    .why-icon {
        font-size: 3rem;
    }

    .why-item h3 {
        font-size: 1.3rem;
    }

    .vision-box {
        padding: 25px 20px;
    }

    .vision-box h3 {
        font-size: 1.5rem;
    }

    .vision-box p {
        font-size: 1rem;
    }

    .about-cta {
        padding: 40px 25px;
    }

    .family-photo-placeholder {
        padding: 30px 20px;
    }

    .family-photo-text h3 {
        font-size: 1.5rem;
    }

    .family-photo-text p {
        font-size: 1rem;
    }
}

/* Dropdown Menu Styles */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  user-select: none;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--off-white);
  min-width: 220px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 10px 0;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
  background: rgba(212, 118, 78, 0.1);
  border-left-color: var(--primary-color);
  color: var(--primary-color);
  padding-left: 25px;
}

/* Mobile Dropdown */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(212, 118, 78, 0.05);
    margin: 10px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .nav-dropdown.active .dropdown-menu {
    max-height: 400px;
  }
  
  .dropdown-toggle::after {
    content: ' ▾';
    transition: transform 0.3s ease;
  }
  
  .nav-dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
    display: inline-block;
  }
}