 /* 
  AYURVOYAGE - Main Stylesheet
  Luxury Ayurvedic Wellness Concierge
*/

 :root {
     /* Breakpoints */
     --bp-xs: 320px;
     --bp-sm: 576px;
     --bp-md: 768px;
     --bp-lg: 992px;
     --bp-xl: 1200px;
     --bp-xxl: 1400px;

     /* Color Palette */
     --primary-green: #2D5A27;
     --primary-green-rgb: 45, 90, 39;
     --accent-gold: #D4AF37;
     --gold-lite: #F5E6AD;
     --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F5E6AD 100%);
     --gold-shadow: rgba(212, 175, 55, 0.2);
     --cream-white: #F9F7F2;
     --dark-charcoal: #1A1A1A;
     --light-beige: #E8DFCA;
     --overlay-dark: rgba(0, 0, 0, 0.4);
     --forest-overlay: rgba(45, 90, 39, 0.35);

     /* Typography */
     --font-heading: 'Playfair Display', serif;
     --font-body: 'Inter', sans-serif;

     /* Spacing */
     --section-padding: 60px 0;
     /* Mobile default */
     --container-width: 1200px;
 }

 @media (min-width: 768px) {
     :root {
         --section-padding: 80px 0;
     }
 }

 @media (min-width: 992px) {
     :root {
         --section-padding: 100px 0;
     }
 }

 /* Global Resets & Base Styles */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     scroll-behavior: smooth;
 }

 html {
     font-size: 14px;
     /* Base for mobile */
     height: auto;
     width: 100%;
     overflow-x: hidden;
     scroll-behavior: smooth;
     /* Managed by Lenis */
     -webkit-text-size-adjust: 100%;
 }

 @media (min-width: 576px) {
     html {
         font-size: 15px;
     }
 }

 @media (min-width: 768px) {
     html {
         font-size: 16px;
     }
 }

 body {
     font-family: var(--font-body);
     background-color: var(--cream-white);
     color: var(--dark-charcoal);
     line-height: 1.6;
     width: 100%;
     overflow-x: hidden;
     min-height: 100vh;
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
     scroll-behavior: smooth;
 }

 h1 {
     font-size: clamp(2.5rem, 10vw, 5.5rem);
 }

 h2 {
     font-size: clamp(2rem, 8vw, 3.5rem);
 }

 h3 {
     font-size: clamp(1.5rem, 5vw, 2.2rem);
 }

 h4 {
     font-size: clamp(1.2rem, 4vw, 1.8rem);
 }

 h1,
 h2,
 h3,
 h4,
 .h-luxury {
     font-family: var(--font-heading);
     font-weight: 500;
 }

 a {
     text-decoration: none;
     transition: all 0.3s ease;
     color: inherit;
 }

 ul {
     list-style: none;
 }

 /* Typography Utilities */
 .text-gold {
     color: var(--accent-gold);
 }

 .text-green {
     color: var(--primary-green);
 }

 .ls-2 {
     letter-spacing: 2px;
 }

 .ls-5 {
     letter-spacing: 5px;
 }

 /* Button Styles */
 .btn-ayur {
     padding: 14px 24px;
     font-size: 12px;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 2px;
     border-radius: 0;
     transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
     position: relative;
     overflow: hidden;
     z-index: 1;
     width: 100%;
     text-align: center;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     min-height: 44px;
 }

 @media (min-width: 576px) {
     .btn-ayur {
         width: auto;
         padding: 16px 32px;
         font-size: 14px;
     }
 }

 .btn-primary-ayur {
     background: var(--gold-gradient);
     color: var(--dark-charcoal);
     border: none;
     background-size: 200% auto;
     transition: 0.5s;
 }

 .btn-primary-ayur:hover {
     background-position: right center;
     color: var(--primary-green);
     box-shadow: 0 10px 20px var(--gold-shadow);
 }

 .btn-outline-ayur {
     background-color: transparent;
     color: white;
     border: 1px solid rgba(255, 255, 255, 0.8);
     backdrop-filter: blur(5px);
 }

 .btn-outline-ayur:hover {
     background-color: white;
     color: var(--primary-green);
     border-color: white;
 }

 .btn-white {
     background-color: white;
     color: var(--primary-green);
     border: 1px solid white;
 }

 .btn-white:hover {
     background: var(--gold-gradient);
     color: var(--dark-charcoal);
     border-color: transparent;
 }

 /* Luxury Header System */
 header.luxury-nav {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 1000;
     padding: 10px 0;
     transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
     border-bottom: none;
     pointer-events: none;
 }

 @media (min-width: 768px) {
     header.luxury-nav {
         padding: 15px 0;
     }
 }

 header.luxury-nav * {
     pointer-events: all;
 }

 header.scrolled {
     padding: 8px 0;
     background: rgba(255, 255, 255, 0.85);
     backdrop-filter: blur(25px) saturate(180%);
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
     border-bottom: none;
 }

 @media (min-width: 768px) {
     header.scrolled {
         padding: 12px 0;
     }
 }

 header.luxury-nav .container-fluid {
     display: grid !important;
     grid-template-columns: auto 1fr;
     align-items: center;
     width: 100%;
     gap: 10px;
 }

 @media (min-width: 992px) {
     header.luxury-nav .container-fluid {
         grid-template-columns: 1fr auto 1fr;
         gap: 0;
     }
 }

 .header-left {
     display: flex;
     align-items: center;
     gap: 15px;
     justify-self: start;
 }

 @media (min-width: 992px) {
     .header-left {
         gap: 30px;
     }
 }

 .header-center {
     justify-self: start;
     display: flex;
     justify-content: flex-start;
     align-items: center;
     order: -1;
 }

 @media (min-width: 992px) {
     .header-center {
         justify-self: center;
         justify-content: center;
         order: 0;
     }
 }

 .header-right {
     display: flex;
     align-items: center;
     gap: 10px;
     justify-self: end;
     justify-content: flex-end;
 }

 @media (min-width: 768px) {
     .header-right {
         gap: 15px;
     }
 }

 @media (min-width: 992px) {
     .header-right {
         gap: 30px;
     }
 }

 /* Logo Sizing */
 .logo-img {
     height: 100px;
     width: auto;
     transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
     image-rendering: -webkit-optimize-contrast;
     image-rendering: crisp-edges;
     -webkit-backface-visibility: hidden;
     backface-visibility: hidden;
     transform: translateZ(0);
 }

 header.scrolled .logo-img {
     height: 100px;
     
 }

 @media (min-width: 576px) {
     .logo-img {
         height: 60px;
     }

     header.scrolled .logo-img {
         height: 50px;
     }
 }

 @media (min-width: 768px) {
     .logo-img {
         height: 80px;
     }

     header.scrolled .logo-img {
         height: 65px;
     }
 }

 @media (min-width: 992px) {
     .logo-img {
         height: 110px;
     }

     header.scrolled .logo-img {
         height: 80px;
     }
 }

 /* Navigation Links */
 .nav-classic {
     font-family: var(--font-heading);
     font-weight: 500;
     font-size: 13px;
     letter-spacing: 2.5px;
     color: var(--dark-charcoal);
     text-decoration: none;
     position: relative;
     transition: opacity 0.3s ease;
 }

 .nav-classic:hover {
     opacity: 0.6;
     color: var(--dark-charcoal);
 }

 .nav-secondary-link {
     font-size: 11px;
     letter-spacing: 1.5px;
     font-weight: 600;
     color: var(--dark-charcoal);
     text-decoration: none;
     opacity: 0.7;
     transition: opacity 0.3s ease;
     display: inline-flex;
     align-items: center;
 }

 /* Language Dropdown */
 .lang-dropdown {
     position: relative;
 }

 .lang-switcher {
     font-size: 11px;
     letter-spacing: 2px;
     font-weight: 700;
     cursor: pointer;
     display: inline-flex;
     align-items: center;
     gap: 6px;
     opacity: 0.7;
     transition: all 0.4s ease;
     background: none;
     border: none;
     color: var(--dark-charcoal);
     padding: 0;
 }

 .lang-switcher .chevron-icon {
     width: 16px;
     height: 16px;
     flex-shrink: 0;
     transition: transform 0.3s ease;
     display: block;
 }

 .lang-switcher:hover {
     opacity: 1;
     color: var(--accent-gold);
 }

 .lang-dropdown.active .lang-switcher .chevron-icon {
     transform: rotate(180deg);
 }

 .lang-dropdown-menu {
     position: absolute;
     top: calc(100% + 10px);
     right: 0;
     background: white;
     border: 1px solid rgba(0, 0, 0, 0.1);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
     min-width: 150px;
     opacity: 0;
     visibility: hidden;
     transform: translateY(-10px);
     transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
     z-index: 1000;
 }

 .lang-dropdown.active .lang-dropdown-menu {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .lang-option {
     display: block;
     padding: 12px 20px;
     font-size: 13px;
     letter-spacing: 1px;
     color: var(--dark-charcoal);
     text-decoration: none;
     transition: all 0.2s ease;
     border-bottom: 1px solid rgba(0, 0, 0, 0.05);
 }

 .lang-option:last-child {
     border-bottom: none;
 }

 .lang-option:hover {
     background: var(--light-beige);
     color: var(--accent-gold);
     padding-left: 25px;
 }

 .nav-secondary-link:hover {
     opacity: 1;
     color: var(--accent-gold);
 }

 /* Specialist "Book Now" Button */
 .btn-book {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     background: var(--gold-gradient);
     background-size: 200% auto;
     color: var(--dark-charcoal) !important;
     padding: 10px 16px;
     font-size: 10px;
     font-weight: 600;
     letter-spacing: 1.5px;
     text-decoration: none;
     transition: all 0.4s ease;
     clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
     white-space: nowrap;
 }

 @media (min-width: 576px) {
     .btn-book {
         padding: 11px 20px;
         font-size: 11px;
         gap: 8px;
         letter-spacing: 2px;
     }
 }

 @media (min-width: 768px) {
     .btn-book {
         padding: 12px 24px;
         font-size: 12px;
         gap: 12px;
     }
 }

 .btn-book svg {
     flex-shrink: 0;
 }

 .btn-book:hover {
     background-position: right center;
     transform: translateY(-2px);
     box-shadow: 0 10px 20px var(--gold-shadow);
     color: var(--primary-green) !important;
 }

 /* Mobile UI */
 .menu-toggle {
     background: none;
     border: none;
     width: 30px;
     height: 24px;
     min-width: 44px;
     min-height: 44px;
     position: relative;
     cursor: pointer;
     z-index: 1001;
     padding: 12px 7px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
 }

 .menu-toggle .line {
     display: block;
     width: 100%;
     height: 2px;
     background: var(--dark-charcoal);
     position: absolute;
     transition: all 0.3s ease;
 }

 .menu-toggle .line:first-child {
     top: 12px;
 }

 .menu-toggle .line:last-child {
     bottom: 12px;
 }

 .menu-toggle.active .line:first-child {
     transform: rotate(45deg);
     top: 50%;
     margin-top: -1px;
 }

 .menu-toggle.active .line:last-child {
     transform: rotate(-45deg);
     bottom: 50%;
     margin-bottom: -1px;
 }

 .mobile-menu-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: white;
     z-index: 999;
     display: flex;
     align-items: center;
     justify-content: center;
     transform: translateY(-100%);
     transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
 }

 .mobile-menu-overlay.active {
     transform: translateY(0);
 }

 .mobile-menu-content {
     text-align: center;
     width: 100%;
     padding: 40px;
 }

 .mobile-nav-link {
     display: block;
     font-family: var(--font-heading);
     font-size: 28px;
     margin-bottom: 30px;
     letter-spacing: 4px;
     color: var(--dark-charcoal);
     text-decoration: none;
     opacity: 0;
     transform: translateY(20px);
     transition: all 0.4s ease;
 }

 .mobile-menu-overlay.active .mobile-nav-link {
     opacity: 1;
     transform: translateY(0);
 }

 .mobile-lang-selector {
     margin-top: 30px;
     padding-top: 30px;
     border-top: 1px solid rgba(0, 0, 0, 0.1);
 }

 .mobile-lang-selector p {
     font-size: 11px;
     letter-spacing: 2px;
     font-weight: 600;
     margin-bottom: 15px;
 }

 .mobile-lang-options {
     display: flex;
     gap: 15px;
     justify-content: center;
     flex-wrap: wrap;
 }

 .mobile-lang-option {
     display: inline-block;
     padding: 10px 20px;
     font-size: 14px;
     font-weight: 600;
     letter-spacing: 2px;
     color: var(--dark-charcoal);
     text-decoration: none;
     border: 1px solid rgba(0, 0, 0, 0.2);
     transition: all 0.3s ease;
     min-width: 60px;
     text-align: center;
 }

 .mobile-lang-option:hover,
 .mobile-lang-option.active {
     background: var(--gold-gradient);
     border-color: var(--accent-gold);
     color: var(--dark-charcoal);
 }


 /* Layout Containers */
 section {
     padding: var(--section-padding);
 }

 /* SECTION 1: HERO */
 .hero {
     position: relative;
     height: 100vh;
     min-height: 80vh;
     width: 100%;
     overflow: hidden;
     color: white;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 100px 20px 40px;
 }

 .hero-video {
     position: absolute;
     top: 50%;
     left: 50%;
     min-width: 100%;
     min-height: 100%;
     width: auto;
     height: auto;
     transform: translate(-50%, -50%);
     object-fit: cover;
     z-index: -2;
 }

 .hero-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     /* Forest green tint, roughly 40% - using mix of black and primary green */
     background: linear-gradient(to bottom, rgba(45, 90, 39, 0.4), rgba(26, 26, 26, 0.3));
     z-index: -1;
 }

 .hero-content {
     z-index: 10;
     text-align: center;
     max-width: 900px;
 }

 .hero h1 {
     font-size: clamp(2.5rem, 10vw, 5.5rem);
     margin-bottom: 20px;
     opacity: 0;
     transform: translateY(30px);
 }

 .hero p {
     font-size: clamp(1rem, 3vw, 1.25rem);
     margin-bottom: 40px;
     letter-spacing: 1px;
     font-weight: 300;
     opacity: 0;
     transform: translateY(20px);
 }

 .hero-ctas {
     display: flex;
     flex-direction: column;
     gap: 15px;
     justify-content: center;
     opacity: 0;
     transform: translateY(20px);
     width: 100%;
     max-width: 400px;
     margin: 0 auto;
 }

 @media (min-width: 576px) {
     .hero-ctas {
         flex-direction: row;
         max-width: none;
         gap: 20px;
     }
 }

 .micro-trust {
     position: absolute;
     bottom: 20px;
     width: 100%;
     text-align: center;
     font-size: 10px;
     letter-spacing: 1px;
     text-transform: uppercase;
     font-weight: 400;
     opacity: 0;
     padding: 0 20px;
 }

 @media (min-width: 576px) {
     .micro-trust {
         font-size: 11px;
         letter-spacing: 2px;
         bottom: 30px;
     }
 }

 @media (min-width: 768px) {
     .micro-trust {
         font-size: 13px;
         letter-spacing: 3px;
         bottom: 40px;
     }
 }

 .full-screen {
     height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 /* Section 2: Clarity Section */
 .section-headline {
     margin-bottom: 50px;
     font-size: clamp(2rem, 8vw, 3.5rem);
     position: relative;
     display: inline-block;
 }

 @media (min-width: 768px) {
     .section-headline {
         margin-bottom: 70px;
     }
 }

 .section-headline::after {
     content: '';
     position: absolute;
     bottom: -15px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 3px;
     background: var(--gold-gradient);
 }

 .feature-box {
     padding: 15px;
     margin-bottom: 20px;
     transition: transform 0.4s ease;
 }

 .feature-box:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
 }

 @media (min-width: 768px) {
     .feature-box {
         padding: 20px;
         margin-bottom: 0;
     }
 }

 .feature-icon {
     width: 50px;
     height: 50px;
     margin-bottom: 20px;
     color: var(--accent-gold);
 }

 @media (min-width: 768px) {
     .feature-icon {
         width: 60px;
         height: 60px;
         margin-bottom: 25px;
     }
 }

 .feature-box h3 {
     font-size: 1.5rem;
     margin-bottom: 15px;
 }

 .feature-box p {
     font-size: 1rem;
     color: #666;
     line-height: 1.7;
 }

 /* Section 3: How It Works */
 .bg-beige {
     background-color: var(--light-beige);
 }

 .step-card {
     position: relative;
     padding: 30px 20px;
     margin-bottom: 20px;
     background: white;
     height: 100%;
     border: 1px solid rgba(212, 175, 55, 0.1);
     transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
     display: flex;
     flex-direction: column;
 }

 @media (min-width: 768px) {
     .step-card {
         padding: 50px 40px;
         margin-bottom: 0;
     }
 }

 .step-card h3 {
     margin-bottom: 15px;
 }

 .step-card p {
     margin-top: auto;
 }

 .step-card:hover {
     border-color: var(--accent-gold);
     transform: translateY(-10px);
     box-shadow: 0 20px 40px var(--gold-shadow);
 }

 /* Section 4: Signature Wellness Journeys */
 .program-card {
     position: relative;
     height: 350px;
     margin-bottom: 20px;
     overflow: hidden;
     cursor: pointer;
 }

 @media (min-width: 768px) {
     .program-card {
         height: 450px;
         margin-bottom: 0;
     }
 }

 @media (min-width: 992px) {
     .program-card {
         height: 500px;
     }
 }

 .program-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
 }

 .program-card:hover .program-img {
     transform: scale(1.1);
 }

 .program-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     padding: 25px;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
     color: white;
     transition: all 0.5s ease;
 }

 @media (min-width: 768px) {
     .program-overlay {
         padding: 30px;
     }
 }

 @media (min-width: 992px) {
     .program-overlay {
         padding: 40px;
     }
 }

 .program-card h3 {
     font-size: 1.8rem;
     margin-bottom: 10px;
 }

 .program-card p {
     font-size: 0.95rem;
     opacity: 0;
     transform: translateY(20px);
     transition: all 0.5s ease;
 }

 .program-card:hover p {
     opacity: 0.9;
     transform: translateY(0);
 }

 /* Section 5: Featured Luxury Resorts */
 .resort-carousel {
     padding: 50px 0;
 }

 .resort-card {
     display: flex;
     flex-direction: column;
     height: 100%;
     min-height: 480px;
     background: white;
     border: 1px solid rgba(0, 0, 0, 0.05);
     transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
     margin-bottom: 10px;
     /* Space for shadow */
 }

 @media (min-width: 768px) {
     .resort-card {
         min-height: 520px;
     }
 }

 .resort-card:hover {
     border-color: var(--accent-gold);
     box-shadow: 0 20px 40px var(--gold-shadow);
     transform: translateY(-5px);
 }

 .resort-img-wrapper {
     height: 250px;
     width: 100%;
     overflow: hidden;
     flex-shrink: 0;
 }

 @media (min-width: 768px) {
     .resort-img-wrapper {
         height: 280px;
     }
 }

 .resort-info {
     padding: 25px;
     flex-grow: 1;
     display: flex;
     flex-direction: column;
 }

 .resort-info h4 {
     margin-bottom: 15px;
 }

 .resort-info .small.text-muted {
     margin-bottom: 25px !important;
 }

 /* Sticky Footer for Resort Card */
 .resort-info>div:last-child {
     margin-top: auto;
     padding-top: 15px;
 }

 .swiper-pagination {
     position: relative !important;
     bottom: 0 !important;
     margin-top: 40px;
 }

 .resort-meta {
     font-size: 12px;
     text-transform: uppercase;
     letter-spacing: 2px;
     margin-bottom: 10px;
 }

 .resort-card h4 {
     font-size: 1.3rem;
     margin-bottom: 15px;
 }

 .swiper-pagination-bullet-active {
     background: var(--accent-gold) !important;
     width: 25px;
     border-radius: 10px;
     transition: all 0.3s ease;
 }


 .step-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(45, 90, 39, 0.1);
 }

 .step-num {
     font-family: var(--font-heading);
     font-size: 4.5rem;
     color: var(--gold-lite);
     opacity: 0.2;
     position: absolute;
     top: 10px;
     right: 25px;
     line-height: 1;
 }

 .btn-center {
     margin-top: 50px;
 }

 /* Section 6: Medical Trust & Authenticity */
 @media (max-width: 991px) {
     .medical-trust .row {
         flex-direction: column-reverse;
     }
 }

 .trust-points-list {
     text-align: left;
     display: inline-block;
 }

 .trust-item {
     font-size: 1.1rem;
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     gap: 15px;
 }

 .trust-item svg {
     color: var(--primary-green);
     flex-shrink: 0;
 }

 .sanctuary-card {
     background: white;
     padding: 15px;
     transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
 }

 .sanctuary-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
 }

 .sanctuary-img {
     width: 100%;
     aspect-ratio: 1/1;
     object-fit: cover;
     transition: all 0.6s ease;
 }

 .sanctuary-card:hover .sanctuary-img {
     transform: scale(1.05);
 }

 /* Section 7: International Traveller Support */
 @media (max-width: 991px) {
     .intl-support .row>div {
         margin-bottom: 20px;
     }
 }

 .support-card {
     padding: 30px;
     border: 1px solid rgba(45, 90, 39, 0.1);
     height: 100%;
     transition: all 0.3s ease;
 }

 .support-card:hover {
     background: white;
     border-color: var(--accent-gold);
     transform: translateY(-5px);
     box-shadow: 0 15px 30px var(--gold-shadow);
 }

 .support-icon {
     width: 40px;
     height: 40px;
     color: var(--accent-gold);
     margin-bottom: 20px;
 }

 /* Section 8: Real Stories */
 .testimonial-swiper {
     padding: 60px 0;
 }

 .testimonial-card {
     padding: 30px 20px;
     background: white;
     border-radius: 0;
     max-width: 800px;
     margin: 0 15px;
 }

 @media (min-width: 768px) {
     .testimonial-card {
         padding: 40px;
         margin: 0 auto;
     }
 }

 .quote-icon {
     font-size: 2.5rem;
     color: var(--accent-gold);
     opacity: 0.3;
     margin-bottom: 15px;
 }

 @media (min-width: 768px) {
     .quote-icon {
         font-size: 3.5rem;
     }
 }

 .testimonial-text {
     font-family: var(--font-heading);
     font-size: 1.25rem;
     line-height: 1.5;
     margin-bottom: 30px;
 }

 @media (min-width: 768px) {
     .testimonial-text {
         font-size: 1.5rem;
     }
 }

 .guest-meta {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 15px;
 }

 .flag-icon {
     width: 24px;
     height: 18px;
     object-fit: cover;
 }

 /* Section 9: Why AyurVoyage */
 .differentiation-list {
     max-width: 600px;
     margin: 0 auto;
     text-align: left;
 }

 .diff-item {
     padding: 20px 0;
     border-bottom: 1px solid rgba(45, 90, 39, 0.1);
     display: flex;
     gap: 20px;
 }

 .diff-item svg {
     color: var(--primary-green);
     flex-shrink: 0;
     margin-top: 5px;
 }

 /* Section 10: Final CTA */
 .final-cta {
     background: linear-gradient(rgba(45, 90, 39, 0.85), rgba(45, 90, 39, 0.85)),
         url('https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&w=1920&q=80');
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
     /* Parallax effect */
     color: white;
     padding: 100px 0;
 }

 @media (min-width: 768px) {
     .final-cta {
         padding: 150px 0;
     }
 }

 /* Footer */
 footer {
     background: var(--dark-charcoal);
     color: #999;
     padding: 50px 0 30px;
     text-align: center;
 }

 @media (min-width: 768px) {
     footer {
         padding: 80px 0 40px;
     }
 }

 .footer-monogram {
     display: inline-block;
     margin-bottom: 20px;
     transition: transform 0.3s ease;
 }

 .footer-monogram:hover {
     transform: scale(1.05);
 }

 .logo-img-footer {
     height: 50px;
     width: auto;
     transition: all 0.3s ease;
     filter: brightness(1.3);
 }

 @media (min-width: 768px) {
     .logo-img-footer {
         height: 60px;
     }

     .footer-monogram {
         margin-bottom: 30px;
     }
 }

 .footer-links {
     margin-bottom: 30px;
 }

 @media (min-width: 768px) {
     .footer-links {
         margin-bottom: 0;
     }
 }

 .footer-links h6 {
     color: var(--accent-gold);
     font-family: var(--font-heading);
     text-transform: uppercase;
     letter-spacing: 3px;
     margin-bottom: 25px;
     font-size: 1rem;
     font-weight: 400;
 }

 @media (min-width: 768px) {
     .footer-links h6 {
         font-size: 1.1rem;
         margin-bottom: 30px;
     }
 }

 .footer-links ul li {
     margin-bottom: 15px;
 }

 .footer-links ul li a {
     transition: all 0.3s ease;
     display: inline-block;
     color: #999;
     font-size: 0.95rem;
     letter-spacing: 0.5px;
 }

 .footer-links ul li a:hover {
     color: var(--accent-gold);
     transform: translateX(5px);
 }

 .footer-bottom {
     margin-top: 60px;
     padding-top: 40px;
     border-top: 1px solid rgba(212, 175, 55, 0.2);
     font-size: 11px;
     letter-spacing: 1px;
     text-transform: uppercase;
     color: rgba(255, 255, 255, 0.4);
     flex-direction: column;
     gap: 20px;
     text-align: center;
 }

 @media (min-width: 768px) {
     .footer-bottom {
         margin-top: 60px;
         flex-direction: row;
         text-align: center;
         gap: 20px;
         justify-content: center;
     }
 }

 .social-links {
     display: flex;
     gap: 15px;
     align-items: center;
     justify-content: center;
 }

 .social-links a {
     font-size: 0;
     min-width: 44px;
     min-height: 44px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
     position: relative;
 }

 .social-links a svg {
     width: 24px;
     height: 24px;
     transition: transform 0.3s ease;
 }

 .social-links a:hover svg {
     transform: scale(1.1);
 }

 /* ===== TOUCH & PERFORMANCE OPTIMIZATIONS ===== */
 a,
 button,
 select,
 input,
 textarea {
     min-height: 44px;
     min-width: 44px;
 }

 img {
     max-width: 100%;
     height: auto;
 }

 @media (max-width: 768px) {
     .program-card:hover .program-img {
         transform: none;
     }

     .step-card:hover {
         transform: none;
     }

     .btn-primary-ayur:hover {
         box-shadow: 0 5px 15px var(--gold-shadow);
     }
 }

 @media (prefers-reduced-motion: reduce) {

     *,
     *::before,
     *::after {
         animation-duration: 0.01ms !important;
         animation-iteration-count: 1 !important;
         transition-duration: 0.01ms !important;
     }
 }

 /* ===== ORIENTATION SPECIFIC STYLES ===== */
 @media (orientation: landscape) and (max-height: 500px) {
     .hero {
         height: auto;
         min-height: 100vh;
         padding: 80px 20px;
     }
 }

 /* ===== HIGH DPI SCREENS OPTIMIZATION ===== */


 /* ===== PRINT STYLES ===== */
 @media print {

     .hero-video,
     .swiper-pagination,
     .btn-ayur,
     header,
     footer .social-links {
         display: none !important;
     }

     body {
         background: white !important;
         color: black !important;
     }

     section {
         padding: 30px 0 !important;
     }
 }

 /* ===== UTILITY CLASSES ===== */
 .logo-img-cta {
     height: 70px;
     width: auto;
     margin-bottom: 10px;
     filter: brightness(1.3);
 }

 @media (min-width: 768px) {
     .logo-img-cta {
         height: 80px;
     }
 }

 .d-none-mobile {
     display: none;
 }

 @media (min-width: 768px) {
     .d-none-mobile {
         display: block;
     }

     .d-none-desktop {
         display: none;
     }
 }