/* =============================================
   INDIA TRAVEL VIAUS (ITU) — Main Stylesheet
   Warm "Spice Trail" travel palette
   ============================================= */

   @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Crimson+Pro:wght@300;400;600&family=Rajdhani:wght@400;500;600;700&display=swap');

   /* ---- CSS Variables ---- */
   :root {
     /* Warm primary — sunset terracotta */
     --saffron: #E5612C;
     --saffron-dark: #C44E1E;
     --terracotta: #C97049;

     /* Earthy depth — henna red & antique gold */
     --deep-red: #B23A1A;
     --gold: #C99528;
     --gold-light: #F2C04E;
     --copper: #B87333;

     /* Warm neutrals */
     --cream: #FFF4E2;
     --sand: #F5E0BD;
     --dark: #2A1810;
     --charcoal: #4A2E1E;
     --muted: #8F7256;
     --white: #FFFFFF;

     /* Light warm panels (replaces dark chocolate panels) */
     --panel-warm: #FBE9CB;
     --panel-warm-2: #F5DBB0;
     --panel-soft: #FFF8EC;

     --shadow: 0 8px 40px rgba(42,24,16,0.18);
     --shadow-sm: 0 2px 12px rgba(42,24,16,0.10);
     --shadow-warm: 0 12px 36px rgba(229,97,44,0.18);
     --radius: 6px;
     --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
   }
   
   /* ---- Reset & Base ---- */
   *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
   
   html { scroll-behavior: smooth; font-size: 16px; }
   
   body {
     font-family: 'Crimson Pro', Georgia, serif;
     background:
       radial-gradient(ellipse at 80% -10%, rgba(229,97,44,0.08) 0%, transparent 55%),
       radial-gradient(ellipse at -10% 30%, rgba(201,149,40,0.07) 0%, transparent 50%),
       var(--cream);
     background-attachment: fixed;
     color: var(--dark);
     line-height: 1.7;
     overflow-x: hidden;
   }
   
   img { max-width: 100%; display: block; }
   a { text-decoration: none; color: inherit; }
   ul { list-style: none; }
   
   /* ---- Typography ---- */
   h1, h2, h3, h4 {
     font-family: 'Playfair Display', Georgia, serif;
     line-height: 1.2;
   }
   
   .section-label {
     font-family: 'Rajdhani', sans-serif;
     font-size: 0.75rem;
     font-weight: 700;
     letter-spacing: 0.25em;
     text-transform: uppercase;
     color: var(--saffron);
     display: block;
     margin-bottom: 0.5rem;
   }
   
   .section-title {
     font-size: clamp(2rem, 4vw, 3rem);
     color: var(--dark);
     margin-bottom: 1rem;
   }
   
   .section-subtitle {
     font-size: 1.15rem;
     color: var(--muted);
     max-width: 600px;
     font-weight: 300;
   }
   
   /* =============================================
      NAVIGATION
      ============================================= */
   .navbar {
     position: fixed;
     top: 0; left: 0; right: 0;
     z-index: 1000;
     padding: 1rem 2rem;
     display: flex;
     align-items: center;
     justify-content: space-between;
     background: linear-gradient(180deg, rgba(42,24,16,0.70) 0%, rgba(42,24,16,0.30) 70%, transparent 100%);
     transition: var(--transition);
   }

   .navbar.scrolled {
     background: rgba(42, 24, 16, 0.96);
     backdrop-filter: blur(12px);
     -webkit-backdrop-filter: blur(12px);
     padding: 0.75rem 2rem;
     box-shadow: 0 2px 20px rgba(0,0,0,0.3);
   }
   
   .nav-logo {
     display: flex;
     align-items: center;
     gap: 0.75rem;
   }
   
   .nav-logo-icon {
     width: 42px;
     height: 42px;
     background: linear-gradient(135deg, var(--saffron), var(--gold));
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.2rem;
     box-shadow: 0 2px 10px rgba(229,97,44,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
     flex-shrink: 0;
   }
   
   .nav-logo-text {
     font-family: 'Playfair Display', serif;
     color: var(--white);
     font-size: 1.2rem;
     font-weight: 700;
     line-height: 1.1;
     text-shadow: 0 1px 8px rgba(0,0,0,0.35);
   }

   .nav-logo-text span {
     display: block;
     font-family: 'Rajdhani', sans-serif;
     font-size: 0.65rem;
     font-weight: 700;
     letter-spacing: 0.2em;
     color: var(--gold-light);
     text-transform: uppercase;
     margin-top: 2px;
     text-shadow: 0 1px 6px rgba(0,0,0,0.3);
   }
   
   .nav-menu {
     display: flex;
     align-items: center;
     gap: 2rem;
     margin-left: auto;
   }

   .nav-end {
     display: flex;
     align-items: center;
     gap: 0.6rem;
     margin-left: 1.25rem;
     position: relative;
     z-index: 102;
   }
   
   .nav-link {
     font-family: 'Rajdhani', sans-serif;
     font-size: 0.85rem;
     font-weight: 600;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     color: rgba(255,255,255,0.88);
     transition: var(--transition);
     position: relative;
     padding-bottom: 2px;
   }

   .nav-link::after {
     content: '';
     position: absolute;
     bottom: 0; left: 0;
     width: 0; height: 1px;
     background: var(--gold-light);
     transition: width 0.3s ease;
   }

   .nav-link:hover { color: var(--gold-light); }
   .nav-link:hover::after { width: 100%; }
   
   .nav-cta {
     background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
     color: var(--white) !important;
     padding: 0.5rem 1.25rem;
     border-radius: 2px;
     font-family: 'Rajdhani', sans-serif;
     font-weight: 700;
     letter-spacing: 0.08em;
     transition: var(--transition);
     box-shadow: 0 2px 12px rgba(229,97,44,0.4);
   }
   
   .nav-cta:hover {
     background: linear-gradient(135deg, var(--saffron-dark), var(--deep-red));
     transform: translateY(-1px);
     box-shadow: 0 4px 20px rgba(229,97,44,0.5);
   }
   
   .nav-cta::after { display: none; }
   
   .nav-lang-item {
     list-style: none;
     margin: 0;
     padding: 0;
     display: flex;
     align-items: center;
   }
   
   .nav-lang {
     position: relative;
     z-index: 1002;
   }
   
   .nav-lang-btn {
     display: inline-flex;
     align-items: center;
     gap: 0.45rem;
     font-family: 'Rajdhani', sans-serif;
     font-size: 0.78rem;
     font-weight: 700;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     color: rgba(255,255,255,0.95);
     background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
     border: 1px solid rgba(201,149,40,0.45);
     border-radius: 999px;
     padding: 0.42rem 0.75rem 0.42rem 0.55rem;
     cursor: pointer;
     transition: var(--transition);
     box-shadow: 0 2px 12px rgba(0,0,0,0.2);
   }

   .nav-lang-btn:hover,
   .nav-lang-btn:focus-visible {
     border-color: var(--gold-light);
     outline: none;
     background: linear-gradient(145deg, rgba(201,149,40,0.22), rgba(255,255,255,0.08));
     color: var(--white);
     box-shadow: 0 4px 18px rgba(201,149,40,0.2);
   }

   .nav-lang-icon {
     display: flex;
     color: var(--gold-light);
     opacity: 0.95;
   }
   
   .nav-lang-current {
     min-width: 4.5rem;
     text-align: left;
   }
   
   .nav-lang-chevron {
     display: flex;
     opacity: 0.75;
     transition: transform 0.2s ease;
   }
   
   .nav-lang-btn[aria-expanded="true"] .nav-lang-chevron {
     transform: rotate(180deg);
   }
   
   .nav-lang-list {
     position: absolute;
     top: calc(100% + 6px);
     right: 0;
     min-width: 11rem;
     margin: 0;
     padding: 0.35rem 0;
     list-style: none;
     background: rgba(34, 20, 13, 0.98);
     border: 1px solid rgba(201,149,40,0.35);
     border-radius: 10px;
     box-shadow: 0 12px 40px rgba(0,0,0,0.45);
     backdrop-filter: blur(16px);
   }

   .nav-lang-list[hidden] {
     display: none !important;
   }

   .nav-lang-opt {
     display: block;
     width: 100%;
     text-align: left;
     font-family: 'Rajdhani', sans-serif;
     font-size: 0.82rem;
     font-weight: 600;
     letter-spacing: 0.06em;
     padding: 0.55rem 1rem;
     color: rgba(255,255,255,0.88);
     background: transparent;
     border: none;
     cursor: pointer;
     transition: background 0.15s ease, color 0.15s ease;
   }
   
   .nav-lang-opt:hover,
   .nav-lang-opt:focus-visible {
     outline: none;
     background: rgba(201,149,40,0.15);
     color: var(--white);
   }

   .nav-lang-opt.is-active {
     color: var(--gold-light);
     background: rgba(201,149,40,0.12);
   }
   
   .hamburger {
     display: none;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     gap: 5px;
     width: 44px;
     height: 44px;
     cursor: pointer;
     padding: 0;
     background: linear-gradient(135deg, rgba(229,97,44,0.95), rgba(196,78,30,0.95));
     border: 1px solid rgba(255,255,255,0.18);
     border-radius: 10px;
     box-shadow: 0 4px 14px rgba(229,97,44,0.35);
     transition: var(--transition);
   }

   .hamburger:hover,
   .hamburger:focus-visible {
     outline: none;
     transform: translateY(-1px);
     box-shadow: 0 6px 18px rgba(229,97,44,0.5);
     border-color: rgba(255,255,255,0.35);
   }

   .hamburger span {
     display: block;
     width: 22px;
     height: 2.5px;
     background: var(--white);
     transition: var(--transition);
     border-radius: 3px;
   }

   .hamburger.open {
     background: linear-gradient(135deg, rgba(178,58,26,0.95), rgba(150,45,18,0.95));
   }

   .hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
   .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
   .hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
   
   /* =============================================
      HERO
      ============================================= */
   .hero {
     min-height: 100vh;
     position: relative;
     display: flex;
     align-items: center;
     overflow: hidden;
     background: var(--dark);
   }
   
   .hero-bg {
     position: absolute;
     inset: 0;
     background:
       linear-gradient(160deg, rgba(42,24,16,0.85) 0%, rgba(42,24,16,0.4) 50%, rgba(42,24,16,0.75) 100%),
       url('https://images.unsplash.com/photo-1524492412937-b28074a5d7da?w=1800&q=80') center/cover no-repeat;
     transform: scale(1.05);
     animation: heroZoom 12s ease-in-out infinite alternate;
   }
   
   @keyframes heroZoom {
     from { transform: scale(1.05); }
     to { transform: scale(1.12); }
   }
   
   .hero-overlay {
     position: absolute;
     inset: 0;
     background: radial-gradient(ellipse at 30% 60%, rgba(201,149,40,0.08) 0%, transparent 60%);
   }
   
   /* Decorative mandala pattern */
   .hero-deco {
     position: absolute;
     right: -80px;
     top: 50%;
     transform: translateY(-50%);
     width: 600px;
     height: 600px;
     opacity: 0.06;
     border-radius: 50%;
     border: 2px solid var(--gold);
     animation: rotateSlow 40s linear infinite;
   }
   
   .hero-deco::before, .hero-deco::after {
     content: '';
     position: absolute;
     inset: 30px;
     border-radius: 50%;
     border: 1px solid var(--gold);
   }
   
   .hero-deco::after { inset: 60px; }
   
   @keyframes rotateSlow { to { transform: translateY(-50%) rotate(360deg); } }
   
   .hero-content {
     position: relative;
     z-index: 2;
     max-width: 1200px;
     margin: 0 auto;
     padding: 8rem 2rem 4rem;
     width: 100%;
   }
   
   .hero-badge {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     background: rgba(201,149,40,0.15);
     border: 1px solid rgba(201,149,40,0.3);
     color: var(--gold-light);
     padding: 0.35rem 1rem;
     border-radius: 50px;
     font-family: 'Rajdhani', sans-serif;
     font-size: 0.75rem;
     font-weight: 600;
     letter-spacing: 0.15em;
     text-transform: uppercase;
     margin-bottom: 1.5rem;
     animation: fadeUp 0.8s ease both;
   }
   
   .hero-title {
     font-size: clamp(2.8rem, 7vw, 5.5rem);
     color: var(--white);
     font-weight: 900;
     line-height: 1.05;
     margin-bottom: 1.5rem;
     animation: fadeUp 0.8s 0.15s ease both;
     max-width: 750px;
   }
   
   .hero-title em {
     font-style: italic;
     color: var(--gold-light);
     display: block;
   }
   
   .hero-desc {
     font-size: 1.2rem;
     color: rgba(255,255,255,0.8);
     max-width: 520px;
     margin-bottom: 2.5rem;
     font-weight: 300;
     animation: fadeUp 0.8s 0.3s ease both;
   }
   
   .hero-actions {
     display: flex;
     gap: 1rem;
     flex-wrap: wrap;
     animation: fadeUp 0.8s 0.45s ease both;
   }
   
   .btn-primary {
     display: inline-flex;
     align-items: center;
     gap: 0.6rem;
     background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
     color: var(--white);
     padding: 0.9rem 2rem;
     border-radius: 2px;
     font-family: 'Rajdhani', sans-serif;
     font-weight: 700;
     font-size: 0.9rem;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     transition: var(--transition);
     box-shadow: 0 4px 20px rgba(229,97,44,0.45);
   }
   
   .btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 30px rgba(229,97,44,0.55);
   }
   
   .btn-whatsapp {
     display: inline-flex;
     align-items: center;
     gap: 0.6rem;
     background: #25D366;
     color: var(--white);
     padding: 0.9rem 2rem;
     border-radius: 2px;
     font-family: 'Rajdhani', sans-serif;
     font-weight: 700;
     font-size: 0.9rem;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     transition: var(--transition);
     box-shadow: 0 4px 20px rgba(37,211,102,0.35);
   }
   
   .btn-whatsapp:hover {
     background: #20ba5a;
     transform: translateY(-3px);
     box-shadow: 0 8px 30px rgba(37,211,102,0.45);
   }
   
   .btn-whatsapp svg, .btn-primary svg { width: 18px; height: 18px; flex-shrink: 0; }
   
   .hero-stats {
     display: flex;
     gap: 2.5rem;
     margin-top: 4rem;
     padding-top: 2rem;
     border-top: 1px solid rgba(255,255,255,0.1);
     animation: fadeUp 0.8s 0.6s ease both;
     flex-wrap: wrap;
   }
   
   .stat-item { text-align: left; }
   
   .stat-number {
     font-family: 'Playfair Display', serif;
     font-size: 2rem;
     font-weight: 900;
     color: var(--gold-light);
     line-height: 1;
   }
   
   .stat-label {
     font-family: 'Rajdhani', sans-serif;
     font-size: 0.7rem;
     letter-spacing: 0.15em;
     text-transform: uppercase;
     color: rgba(255,255,255,0.5);
     margin-top: 0.2rem;
   }
   
   /* =============================================
      DESTINATIONS
      ============================================= */
   .destinations {
     padding: 6rem 2rem;
     max-width: 1200px;
     margin: 0 auto;
   }
   
   .section-header {
     margin-bottom: 3.5rem;
   }
   
   .destinations-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 1.5rem;
   }
   
   .dest-card {
     position: relative;
     border-radius: var(--radius);
     overflow: hidden;
     cursor: pointer;
     group: true;
     aspect-ratio: 3/4;
   }
   
   .dest-card.featured {
     grid-row: span 2;
     aspect-ratio: auto;
   }
   
   .dest-card-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
   }
   
   .dest-card:hover .dest-card-img { transform: scale(1.08); }
   
   .dest-card-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to top, rgba(42,24,16,0.9) 0%, rgba(42,24,16,0.2) 50%, transparent 100%);
     transition: var(--transition);
   }
   
   .dest-card:hover .dest-card-overlay {
     background: linear-gradient(to top, rgba(42,24,16,0.95) 0%, rgba(42,24,16,0.4) 60%, rgba(42,24,16,0.1) 100%);
   }
   
   .dest-card-content {
     position: absolute;
     bottom: 0; left: 0; right: 0;
     padding: 1.5rem;
     transform: translateY(8px);
     transition: var(--transition);
   }
   
   .dest-card:hover .dest-card-content { transform: translateY(0); }
   
   .dest-tag {
     display: inline-block;
     background: rgba(201,149,40,0.2);
     border: 1px solid rgba(201,149,40,0.4);
     color: var(--gold-light);
     font-family: 'Rajdhani', sans-serif;
     font-size: 0.65rem;
     font-weight: 700;
     letter-spacing: 0.15em;
     text-transform: uppercase;
     padding: 0.2rem 0.6rem;
     border-radius: 2px;
     margin-bottom: 0.5rem;
   }
   
   .dest-name {
     font-size: 1.5rem;
     color: var(--white);
     font-weight: 700;
     margin-bottom: 0.3rem;
   }
   
   .dest-card.featured .dest-name { font-size: 2rem; }
   
   .dest-desc {
     font-size: 0.9rem;
     color: rgba(255,255,255,0.7);
     line-height: 1.5;
     opacity: 0;
     max-height: 0;
     overflow: hidden;
     transition: all 0.4s ease;
     font-weight: 300;
   }
   
   .dest-card:hover .dest-desc {
     opacity: 1;
     max-height: 80px;
     margin-top: 0.5rem;
   }
   
   .dest-meta {
     display: flex;
     align-items: center;
     gap: 1rem;
     margin-top: 0.75rem;
   }
   
   .dest-meta span {
     font-family: 'Rajdhani', sans-serif;
     font-size: 0.75rem;
     color: rgba(255,255,255,0.6);
     display: flex;
     align-items: center;
     gap: 0.3rem;
   }
   
   /* =============================================
      TOURS / PACKAGES — light warm panel
      ============================================= */
   .tours {
     background: linear-gradient(160deg, var(--panel-warm) 0%, var(--panel-warm-2) 100%);
     padding: 6rem 2rem;
     position: relative;
     overflow: hidden;
   }

   .tours::before {
     content: '';
     position: absolute;
     top: -100px; right: -100px;
     width: 500px; height: 500px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(229,97,44,0.10) 0%, transparent 70%);
   }

   .tours-inner {
     max-width: 1200px;
     margin: 0 auto;
     position: relative;
     z-index: 1;
   }

   .tours .section-title { color: var(--dark); }
   .tours .section-subtitle { color: var(--muted); }
   .tours .section-label { color: var(--saffron); }
   
   .tours-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 1.5rem;
     margin-top: 3rem;
   }
   
   .tour-card {
     background: var(--white);
     border: 1px solid rgba(42,24,16,0.08);
     border-radius: var(--radius);
     padding: 2rem;
     transition: var(--transition);
     position: relative;
     overflow: hidden;
     box-shadow: var(--shadow-sm);
     cursor: pointer;
   }

   .tour-card::before {
     content: '';
     position: absolute;
     top: 0; left: 0; right: 0;
     height: 3px;
     background: linear-gradient(90deg, var(--saffron), var(--gold));
     transform: scaleX(0);
     transition: transform 0.4s ease;
     transform-origin: left;
   }

   .tour-card:hover {
     background: var(--white);
     border-color: rgba(229,97,44,0.35);
     transform: translateY(-4px);
     box-shadow: 0 14px 40px rgba(42,24,16,0.12);
   }
   
   .tour-card:hover::before { transform: scaleX(1); }
   
   .tour-icon {
     font-size: 2rem;
     margin-bottom: 1rem;
     display: block;
   }
   
   .tour-name {
     font-size: 1.25rem;
     color: var(--dark);
     margin-bottom: 0.5rem;
   }

   .tour-dest {
     font-family: 'Rajdhani', sans-serif;
     font-size: 0.75rem;
     font-weight: 700;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     color: var(--saffron);
     margin-bottom: 0.75rem;
   }

   .tour-desc {
     font-size: 0.95rem;
     color: var(--muted);
     line-height: 1.6;
     font-weight: 400;
     margin-bottom: 1.25rem;
   }

   .tour-highlights {
     margin-bottom: 1.5rem;
   }

   .tour-highlights li {
     font-size: 0.88rem;
     color: var(--charcoal);
     padding: 0.2rem 0;
     display: flex;
     align-items: center;
     gap: 0.5rem;
   }

   .tour-highlights li::before {
     content: '✦';
     color: var(--gold);
     font-size: 0.6rem;
     flex-shrink: 0;
   }

   .tour-footer {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding-top: 1.25rem;
     border-top: 1px solid rgba(42,24,16,0.08);
   }

   .tour-price {
     font-family: 'Playfair Display', serif;
     color: var(--saffron);
   }

   .tour-price span {
     font-size: 1.5rem;
     font-weight: 700;
   }

   .tour-price small {
     font-family: 'Rajdhani', sans-serif;
     font-size: 0.7rem;
     color: var(--muted);
     display: block;
     letter-spacing: 0.05em;
   }

   .tour-meta-foot {
     font-family: 'Playfair Display', serif;
     color: var(--saffron);
   }

   .tour-meta-foot span {
     font-size: 1.15rem;
     font-weight: 700;
     display: block;
   }

   .tour-meta-foot small {
     font-family: 'Rajdhani', sans-serif;
     font-size: 0.7rem;
     color: var(--muted);
     display: block;
     letter-spacing: 0.05em;
   }
   
   .btn-tour {
     background: transparent;
     border: 1px solid var(--saffron);
     color: var(--saffron);
     padding: 0.5rem 1rem;
     border-radius: 2px;
     font-family: 'Rajdhani', sans-serif;
     font-weight: 700;
     font-size: 0.75rem;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     transition: var(--transition);
     cursor: pointer;
     text-decoration: none;
     display: inline-block;
   }
   
   .btn-tour:hover {
     background: var(--saffron);
     color: var(--white);
   }
   
   /* =============================================
      WHY US
      ============================================= */
   .why-us {
     padding: 6rem 2rem;
     max-width: 1200px;
     margin: 0 auto;
   }
   
   .why-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
   }
   
   .why-card {
     text-align: center;
     padding: 2rem 1.5rem;
     border-radius: var(--radius);
     transition: var(--transition);
     position: relative;
   }
   
   .why-card:hover {
     background: rgba(229,97,44,0.04);
   }
   
   .why-icon {
     width: 64px;
     height: 64px;
     background: linear-gradient(135deg, rgba(229,97,44,0.12), rgba(201,149,40,0.12));
     border: 1px solid rgba(201,149,40,0.2);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1.25rem;
     font-size: 1.5rem;
     transition: var(--transition);
   }
   
   .why-card:hover .why-icon {
     background: linear-gradient(135deg, rgba(229,97,44,0.2), rgba(201,149,40,0.2));
     transform: scale(1.1) rotate(5deg);
   }
   
   .why-title {
     font-size: 1.15rem;
     margin-bottom: 0.6rem;
     color: var(--dark);
   }
   
   .why-desc {
     font-size: 0.95rem;
     color: var(--muted);
     line-height: 1.6;
     font-weight: 300;
   }
   
   /* =============================================
      CONTACT / CTA — light warm panel
      ============================================= */
   .contact {
     background: linear-gradient(135deg, var(--panel-warm) 0%, var(--panel-soft) 100%);
     padding: 6rem 2rem;
     text-align: center;
     position: relative;
     overflow: hidden;
   }

   .contact::before {
     content: '';
     position: absolute;
     top: 50%; left: 50%;
     transform: translate(-50%, -50%);
     width: 800px; height: 800px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(229,97,44,0.10) 0%, transparent 65%);
   }

   .contact-inner {
     position: relative;
     z-index: 1;
     max-width: 680px;
     margin: 0 auto;
   }

   .contact .section-label { color: var(--saffron); }
   .contact .section-title { color: var(--dark); }
   .contact .section-subtitle {
     color: var(--muted);
     margin: 0 auto 2.5rem;
     max-width: 480px;
   }

   .contact-options {
     display: flex;
     gap: 1rem;
     justify-content: center;
     flex-wrap: wrap;
     margin-bottom: 2.5rem;
   }

   .contact-card {
     background: var(--white);
     border: 1px solid rgba(42,24,16,0.08);
     border-radius: var(--radius);
     padding: 1.5rem 2rem;
     display: flex;
     align-items: center;
     gap: 1rem;
     transition: var(--transition);
     min-width: 200px;
     text-decoration: none;
     box-shadow: var(--shadow-sm);
   }

   .contact-card:hover {
     border-color: rgba(229,97,44,0.4);
     background: var(--white);
     transform: translateY(-3px);
     box-shadow: 0 14px 40px rgba(42,24,16,0.12);
   }

   .contact-card-icon {
     font-size: 1.6rem;
     flex-shrink: 0;
   }

   .contact-card-text {
     text-align: left;
   }

   .contact-card-label {
     font-family: 'Rajdhani', sans-serif;
     font-size: 0.65rem;
     font-weight: 700;
     letter-spacing: 0.15em;
     text-transform: uppercase;
     color: var(--muted);
     margin-bottom: 0.2rem;
   }

   .contact-card-value {
     font-size: 1rem;
     color: var(--dark);
     font-weight: 700;
   }
   
   .whatsapp-btn-large {
     display: inline-flex;
     align-items: center;
     gap: 0.75rem;
     background: #25D366;
     color: var(--white);
     padding: 1.1rem 2.5rem;
     border-radius: 2px;
     font-family: 'Rajdhani', sans-serif;
     font-weight: 700;
     font-size: 1rem;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     transition: var(--transition);
     box-shadow: 0 6px 30px rgba(37,211,102,0.3);
     margin-bottom: 1rem;
   }
   
   .whatsapp-btn-large:hover {
     background: #20ba5a;
     transform: translateY(-3px);
     box-shadow: 0 10px 40px rgba(37,211,102,0.4);
   }
   
   .whatsapp-btn-large svg { width: 22px; height: 22px; }
   
   .pay-after-note {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     background: rgba(229,97,44,0.10);
     border: 1px solid rgba(229,97,44,0.30);
     color: var(--saffron-dark);
     padding: 0.6rem 1.25rem;
     border-radius: 50px;
     font-family: 'Rajdhani', sans-serif;
     font-size: 0.8rem;
     font-weight: 700;
     letter-spacing: 0.08em;
   }
   
   /* =============================================
      FOOTER — light warm panel
      ============================================= */
   footer {
     background: linear-gradient(180deg, var(--sand) 0%, #EFCD96 100%);
     padding: 4rem 2rem 0;
     border-top: 1px solid rgba(229,97,44,0.18);
     position: relative;
   }

   .footer-inner {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1.5fr;
     gap: 3rem;
     padding-bottom: 3rem;
     border-bottom: 1px solid rgba(42,24,16,0.10);
   }

   .footer-brand {}

   .footer-logo-row {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     margin-bottom: 0.75rem;
   }

   .footer-logo-icon { font-size: 1.4rem; }

   .footer-logo-text {
     font-family: 'Playfair Display', serif;
     font-size: 1.2rem;
     color: var(--dark);
     font-weight: 700;
   }

   .footer-tagline {
     font-family: 'Rajdhani', sans-serif;
     font-size: 0.72rem;
     letter-spacing: 0.18em;
     text-transform: uppercase;
     color: var(--saffron);
     margin-bottom: 0.85rem;
     font-weight: 700;
   }

   .footer-about {
     font-size: 0.9rem;
     color: var(--charcoal);
     line-height: 1.65;
     font-weight: 400;
     max-width: 280px;
   }

   .footer-col-title {
     font-family: 'Rajdhani', sans-serif;
     font-size: 0.7rem;
     font-weight: 700;
     letter-spacing: 0.18em;
     text-transform: uppercase;
     color: var(--saffron);
     margin-bottom: 1rem;
   }

   .footer-links-col ul {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 0.5rem;
   }

   .footer-links-col a {
     font-size: 0.9rem;
     color: var(--charcoal);
     text-decoration: none;
     transition: color 0.2s;
     font-weight: 500;
   }

   .footer-links-col a:hover { color: var(--saffron); }

   .footer-contact-col {}

   .footer-contact-item {
     display: flex;
     align-items: center;
     gap: 0.6rem;
     font-size: 0.9rem;
     color: var(--charcoal);
     text-decoration: none;
     margin-bottom: 0.6rem;
     transition: color 0.2s;
     font-weight: 500;
   }

   .footer-contact-item:hover { color: var(--saffron); }
   
   .footer-wa-btn {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     background: #25D366;
     color: var(--white);
     padding: 0.55rem 1.1rem;
     border-radius: 2px;
     font-family: 'Rajdhani', sans-serif;
     font-weight: 700;
     font-size: 0.78rem;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     text-decoration: none;
     margin-top: 0.25rem;
     margin-bottom: 0.85rem;
     transition: background 0.2s;
     width: fit-content;
   }
   
   .footer-wa-btn:hover { background: #20ba5a; }
   
   .footer-pay-note {
     font-family: 'Rajdhani', sans-serif;
     font-size: 0.7rem;
     font-weight: 700;
     color: var(--saffron-dark);
     letter-spacing: 0.08em;
   }

   /* Social icons */
   .footer-social {
     display: flex;
     gap: 0.5rem;
     margin-top: 1.25rem;
     flex-wrap: wrap;
   }

   .social-icon {
     width: 36px;
     height: 36px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--charcoal);
     transition: all 0.25s ease;
     text-decoration: none;
   }

   .social-icon svg { width: 17px; height: 17px; }

   .social-insta { background: var(--white); border: 1px solid rgba(42,24,16,0.10); }
   .social-insta:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: transparent; transform: translateY(-3px); color: white; }

   .social-fb { background: var(--white); border: 1px solid rgba(42,24,16,0.10); }
   .social-fb:hover { background: #1877f2; border-color: transparent; transform: translateY(-3px); color: white; }

   .social-x { background: var(--white); border: 1px solid rgba(42,24,16,0.10); }
   .social-x:hover { background: #000; border-color: #555; transform: translateY(-3px); color: white; }

   .social-yt { background: var(--white); border: 1px solid rgba(42,24,16,0.10); }
   .social-yt:hover { background: #ff0000; border-color: transparent; transform: translateY(-3px); color: white; }

   .social-wa { background: var(--white); border: 1px solid rgba(42,24,16,0.10); }
   .social-wa:hover { background: #25d366; border-color: transparent; transform: translateY(-3px); color: white; }

   /* Footer bottom bar */
   .footer-bottom {
     max-width: 1200px;
     margin: 0 auto;
     padding: 1.5rem 0 2rem;
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 0.75rem;
   }

   .footer-bottom p {
     font-size: 0.8rem;
     color: var(--muted);
   }

   .footer-bottom-social {
     display: flex;
     align-items: center;
     gap: 0.75rem;
   }

   .footer-bottom-social a {
     color: var(--muted);
     transition: color 0.2s;
     display: flex;
     align-items: center;
   }

   .footer-bottom-social a:hover { color: var(--saffron); }
   
   /* Footer responsive */
   @media (max-width: 1024px) {
     .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
     .footer-brand { grid-column: span 2; }
   }
   
   @media (max-width: 768px) {
     footer { padding: 3rem 1.25rem 0; }
     .footer-inner { grid-template-columns: 1fr 1fr; gap: 1.75rem; padding-bottom: 2rem; }
     .footer-brand { grid-column: span 2; }
     .footer-about { max-width: 100%; }
     .footer-bottom { flex-direction: column; text-align: center; gap: 0.85rem; }
     .footer-bottom-social { justify-content: center; }
   }
   
   @media (max-width: 480px) {
     .footer-inner { grid-template-columns: 1fr; }
     .footer-brand { grid-column: span 1; }
     .footer-social { justify-content: flex-start; }
   }
   
   /* =============================================
      FLOATING WHATSAPP BUTTON
      ============================================= */
   .float-wa {
     position: fixed;
     bottom: 2rem;
     right: 2rem;
     z-index: 999;
     background: #25D366;
     color: var(--white);
     width: 58px;
     height: 58px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 4px 20px rgba(37,211,102,0.5);
     transition: var(--transition);
     animation: pulse 2.5s ease-in-out infinite;
   }
   
   .float-wa:hover {
     transform: scale(1.12);
     box-shadow: 0 8px 30px rgba(37,211,102,0.6);
     animation: none;
   }
   
   .float-wa svg { width: 28px; height: 28px; }
   
   @keyframes pulse {
     0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
     50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.15); }
   }
   
   /* =============================================
      ANIMATIONS
      ============================================= */
   @keyframes fadeUp {
     from { opacity: 0; transform: translateY(24px); }
     to { opacity: 1; transform: translateY(0); }
   }
   
   .reveal {
     opacity: 0;
     transform: translateY(30px);
     transition: opacity 0.7s ease, transform 0.7s ease;
   }
   
   .reveal.visible {
     opacity: 1;
     transform: translateY(0);
   }
   
   /* =============================================
      RESPONSIVE
      ============================================= */
   @media (max-width: 900px) {
     .destinations-grid {
       grid-template-columns: repeat(2, 1fr);
     }
   
     .dest-card.featured {
       grid-column: span 2;
       grid-row: span 1;
       aspect-ratio: 16/7;
     }
   }
   
   @media (max-width: 768px) {
     .navbar { padding: 1rem 1.25rem; }
     .navbar.scrolled { padding: 0.75rem 1.25rem; }
   
     .nav-menu {
       position: fixed;
       top: 0; right: 0; bottom: 0;
       width: min(300px, 80vw);
       background: rgba(42,24,16,0.98);
       backdrop-filter: blur(20px);
       flex-direction: column;
       align-items: flex-start;
       padding: 5rem 2rem 2rem;
       gap: 1.5rem;
       transform: translateX(100%);
       transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
       z-index: 100;
       box-shadow: -10px 0 40px rgba(0,0,0,0.4);
     }
   
     .nav-menu.open { transform: translateX(0); }
   
     .nav-link {
       font-size: 1rem;
       padding: 0.25rem 0;
     }

     /* Lang button in mobile header — peer to the hamburger, on dark navbar */
     .nav-lang-btn {
       height: 44px;
       padding: 0 0.9rem;
       gap: 0.4rem;
       border-radius: 10px;
       background: linear-gradient(145deg, rgba(242,192,78,0.22), rgba(229,97,44,0.16));
       border: 1px solid rgba(242,192,78,0.55);
       color: var(--gold-light);
       box-shadow: 0 4px 12px rgba(42,24,16,0.25);
     }

     .nav-lang-btn:hover,
     .nav-lang-btn:focus-visible {
       background: linear-gradient(145deg, rgba(242,192,78,0.32), rgba(229,97,44,0.22));
       border-color: var(--gold-light);
     }

     .nav-lang-icon { color: var(--gold-light); }
     .nav-lang-icon svg {
       width: 17px;
       height: 17px;
     }

     .nav-lang-current {
       min-width: 0;
       font-size: 0.82rem;
       font-weight: 800;
       color: var(--gold-light);
       letter-spacing: 0.06em;
     }

     .nav-lang-chevron { color: var(--gold-light); }
     .nav-lang-chevron svg {
       width: 11px;
       height: 11px;
     }

     .nav-lang-list {
       right: 0;
       min-width: 9rem;
     }

     /* Mobile logo — keep tagline, sized to fit on one line */
     .nav-logo { gap: 0.55rem; }
     .nav-logo-icon { width: 38px; height: 38px; font-size: 1.05rem; }
     .nav-logo-text {
       font-size: 0.98rem;
       letter-spacing: 0.005em;
       line-height: 1.05;
     }
     .nav-logo-text span {
       display: block;
       font-size: 0.52rem;
       letter-spacing: 0.13em;
       margin-top: 2px;
       white-space: nowrap;
     }

     .hamburger { display: flex; z-index: 101; }
   
     .hero-content { padding: 7rem 1.25rem 3rem; }
     .hero-stats { gap: 1.5rem; }
   
     .destinations, .why-us { padding: 4rem 1.25rem; }
     .tours { padding: 4rem 1.25rem; }
     .contact { padding: 4rem 1.25rem; }
   
     .destinations-grid {
       grid-template-columns: 1fr;
     }
   
     .dest-card.featured {
       grid-column: span 1;
       aspect-ratio: 4/3;
     }
   
     .dest-card { aspect-ratio: 4/3; }
   }
   
   @media (max-width: 480px) {
     .hero-title { font-size: clamp(2rem, 10vw, 3rem); }
     .hero-actions { flex-direction: column; }
     .btn-primary, .btn-whatsapp { width: 100%; justify-content: center; }
     .contact-options { flex-direction: column; align-items: stretch; }
     .contact-card { justify-content: flex-start; }
     .float-wa { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
   }
   
   /* =============================================
      REVIEWS SECTION
      ============================================= */
   .reviews {
     padding: 6rem 2rem;
     background: var(--cream);
     max-width: 100%;
     overflow: hidden;
   }
   
   .reviews-inner {
     max-width: 1200px;
     margin: 0 auto;
   }
   
   /* Testimonial carousel */
   .testimonials-wrap {
     position: relative;
     margin-top: 3rem;
     margin-bottom: 3.5rem;
   }
   
   .testimonials-track {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 1.5rem;
   }
   
   .testi-card {
     background: var(--white);
     border: 1px solid rgba(42,24,16,0.07);
     border-radius: var(--radius);
     padding: 1.75rem;
     position: relative;
     transition: var(--transition);
     box-shadow: var(--shadow-sm);
   }
   
   .testi-card:hover {
     transform: translateY(-4px);
     box-shadow: var(--shadow);
     border-color: rgba(201,149,40,0.2);
   }
   
   .testi-card.featured-review {
     border-color: rgba(201,149,40,0.35);
     background: linear-gradient(135deg, #FFF8E8, var(--white));
   }
   
   .testi-quote-mark {
     font-family: 'Playfair Display', serif;
     font-size: 4rem;
     line-height: 1;
     color: var(--gold-light);
     opacity: 0.4;
     position: absolute;
     top: 1rem;
     right: 1.5rem;
     font-style: italic;
   }
   
   .testi-stars {
     display: flex;
     gap: 3px;
     margin-bottom: 0.75rem;
   }
   
   .testi-stars span {
     color: var(--gold);
     font-size: 0.95rem;
   }
   
   .testi-text {
     font-size: 1rem;
     color: var(--charcoal);
     line-height: 1.7;
     font-style: italic;
     font-weight: 300;
     margin-bottom: 1.25rem;
     min-height: 80px;
   }
   
   .testi-author {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     padding-top: 1rem;
     border-top: 1px solid rgba(42,24,16,0.06);
   }
   
   .testi-avatar {
     width: 42px;
     height: 42px;
     border-radius: 50%;
     background: linear-gradient(135deg, var(--saffron), var(--gold));
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.1rem;
     font-weight: 700;
     color: var(--white);
     font-family: 'Rajdhani', sans-serif;
     flex-shrink: 0;
   }
   
   .testi-info {}
   
   .testi-name {
     font-family: 'Rajdhani', sans-serif;
     font-weight: 700;
     font-size: 0.95rem;
     color: var(--dark);
     letter-spacing: 0.04em;
   }
   
   .testi-meta {
     font-family: 'Rajdhani', sans-serif;
     font-size: 0.7rem;
     font-weight: 600;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     color: var(--muted);
     margin-top: 1px;
   }
   
   .testi-dest-badge {
     margin-left: auto;
     background: rgba(229,97,44,0.08);
     border: 1px solid rgba(229,97,44,0.15);
     color: var(--saffron);
     font-family: 'Rajdhani', sans-serif;
     font-size: 0.65rem;
     font-weight: 700;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     padding: 0.2rem 0.55rem;
     border-radius: 2px;
     flex-shrink: 0;
   }
   
   /* Pending badge */
   .testi-pending {
     position: absolute;
     top: 0.75rem;
     left: 0.75rem;
     background: rgba(201,149,40,0.12);
     border: 1px solid rgba(201,149,40,0.3);
     color: var(--gold);
     font-family: 'Rajdhani', sans-serif;
     font-size: 0.6rem;
     font-weight: 700;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     padding: 0.15rem 0.5rem;
     border-radius: 2px;
   }
   
   /* Empty state */
   .reviews-empty {
     text-align: center;
     padding: 3rem;
     color: var(--muted);
     font-style: italic;
     background: rgba(255,255,255,0.5);
     border-radius: var(--radius);
     border: 1px dashed rgba(42,24,16,0.1);
   }
   
   /* ---- Share Your Experience Form — light warm panel ---- */
   .share-experience {
     background: linear-gradient(135deg, var(--panel-soft) 0%, var(--panel-warm) 100%);
     border: 1px solid rgba(229,97,44,0.18);
     border-radius: var(--radius);
     padding: 3rem;
     position: relative;
     overflow: hidden;
     margin-top: 1rem;
     box-shadow: var(--shadow-sm);
   }

   .share-experience::before {
     content: '';
     position: absolute;
     top: -80px; right: -80px;
     width: 300px; height: 300px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(229,97,44,0.10) 0%, transparent 70%);
   }

   .share-experience .section-label { color: var(--saffron); }

   .share-title {
     font-family: 'Playfair Display', serif;
     font-size: 1.8rem;
     color: var(--dark);
     margin-bottom: 0.5rem;
   }

   .share-subtitle {
     font-size: 1rem;
     color: var(--muted);
     font-weight: 400;
     margin-bottom: 2rem;
   }
   
   .review-form {
     position: relative;
     z-index: 1;
   }
   
   .form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1rem;
     margin-bottom: 1rem;
   }
   
   .form-group {
     display: flex;
     flex-direction: column;
     gap: 0.4rem;
   }
   
   .form-group.full { grid-column: span 2; }
   
   .form-label {
     font-family: 'Rajdhani', sans-serif;
     font-size: 0.72rem;
     font-weight: 700;
     letter-spacing: 0.15em;
     text-transform: uppercase;
     color: var(--charcoal);
   }

   .form-input, .form-select, .form-textarea {
     background: var(--white);
     border: 1px solid rgba(42,24,16,0.15);
     border-radius: 4px;
     color: var(--dark);
     font-family: 'Crimson Pro', serif;
     font-size: 1rem;
     padding: 0.75rem 1rem;
     transition: var(--transition);
     outline: none;
     width: 100%;
   }

   .form-input::placeholder, .form-textarea::placeholder {
     color: rgba(42,24,16,0.35);
   }

   .form-input:focus, .form-select:focus, .form-textarea:focus {
     border-color: var(--saffron);
     background: var(--white);
     box-shadow: 0 0 0 3px rgba(229,97,44,0.12);
   }

   .form-select {
     cursor: pointer;
     appearance: none;
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(42,24,16,0.5)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
     background-repeat: no-repeat;
     background-position: right 1rem center;
     padding-right: 2.5rem;
   }

   .form-select option { background: var(--white); color: var(--dark); }
   
   .form-textarea {
     resize: vertical;
     min-height: 110px;
     line-height: 1.6;
   }
   
   /* Star rating input */
   .star-rating-input {
     display: flex;
     gap: 6px;
     align-items: center;
   }
   
   .star-rating-input input[type="radio"] { display: none; }
   
   .star-rating-input label {
     font-size: 1.6rem;
     color: rgba(42,24,16,0.18);
     cursor: pointer;
     transition: color 0.15s, transform 0.15s;
     line-height: 1;
   }

   .star-rating-input label:hover,
   .star-rating-input label:hover ~ label,
   .star-rating-input input:checked ~ label {
     color: var(--gold);
   }

   .star-rating-input:hover label,
   .star-rating-input input:checked + label,
   .star-rating-input input:checked ~ label {
     color: rgba(42,24,16,0.18);
   }

   .star-rating-input label:hover,
   .star-rating-input label:hover ~ label { color: var(--gold); }

   /* Fix: highlight stars up to hovered */
   .star-rating-input {
     flex-direction: row-reverse;
     justify-content: flex-end;
   }

   .star-rating-input label:hover,
   .star-rating-input label:hover ~ label {
     color: var(--gold);
   }

   .star-rating-input input[type="radio"]:checked ~ label {
     color: var(--gold);
   }
   
   .form-submit {
     display: inline-flex;
     align-items: center;
     gap: 0.6rem;
     background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
     color: var(--white);
     border: none;
     padding: 0.9rem 2.25rem;
     border-radius: 2px;
     font-family: 'Rajdhani', sans-serif;
     font-weight: 700;
     font-size: 0.9rem;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     cursor: pointer;
     transition: var(--transition);
     margin-top: 0.5rem;
     box-shadow: 0 4px 20px rgba(229,97,44,0.4);
   }
   
   .form-submit:hover:not(:disabled) {
     transform: translateY(-2px);
     box-shadow: 0 8px 30px rgba(229,97,44,0.5);
   }
   
   .form-submit:disabled {
     opacity: 0.6;
     cursor: not-allowed;
   }
   
   .form-notice {
     font-size: 0.82rem;
     color: var(--muted);
     margin-top: 0.75rem;
     display: flex;
     align-items: center;
     gap: 0.4rem;
   }

   /* Success / Error messages */
   .form-message {
     display: none;
     padding: 1rem 1.25rem;
     border-radius: var(--radius);
     font-family: 'Rajdhani', sans-serif;
     font-weight: 600;
     font-size: 0.9rem;
     letter-spacing: 0.04em;
     margin-top: 1rem;
   }

   .form-message.success {
     display: flex;
     align-items: center;
     gap: 0.6rem;
     background: rgba(37,211,102,0.12);
     border: 1px solid rgba(37,211,102,0.35);
     color: #15803d;
   }

   .form-message.error {
     display: flex;
     align-items: center;
     gap: 0.6rem;
     background: rgba(239,68,68,0.12);
     border: 1px solid rgba(239,68,68,0.35);
     color: #b91c1c;
   }
   
   /* Responsive */
   @media (max-width: 900px) {
     .testimonials-track {
       grid-template-columns: repeat(2, 1fr);
     }
   }
   
   @media (max-width: 640px) {
     .testimonials-track {
       grid-template-columns: 1fr;
     }
   
     .share-experience {
       padding: 2rem 1.25rem;
     }
   
     .form-row {
       grid-template-columns: 1fr;
     }
   
     .form-group.full { grid-column: span 1; }
   }
   
   /* =============================================
      TOUR DETAIL MODAL
      ============================================= */
   
   /* Overlay */
   .modal-overlay {
     position: fixed;
     inset: 0;
     z-index: 2000;
     background: rgba(10,7,3,0.85);
     backdrop-filter: blur(6px);
     display: flex;
     align-items: flex-start;
     justify-content: center;
     padding: 2rem 1rem;
     overflow-y: auto;
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.3s ease, visibility 0.3s ease;
   }
   
   .modal-overlay.open {
     opacity: 1;
     visibility: visible;
   }
   
   /* Modal box */
   .modal-box {
     background: var(--cream);
     width: 100%;
     max-width: 720px;
     border-radius: 6px;
     overflow: hidden;
     position: relative;
     transform: translateY(30px) scale(0.98);
     transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
     margin: auto;
     box-shadow: 0 30px 80px rgba(0,0,0,0.5);
   }
   
   .modal-overlay.open .modal-box {
     transform: translateY(0) scale(1);
   }
   
   /* Close button */
   .modal-close {
     position: absolute;
     top: 1rem;
     right: 1rem;
     z-index: 10;
     width: 36px;
     height: 36px;
     border-radius: 50%;
     border: none;
     background: rgba(0,0,0,0.45);
     color: var(--white);
     font-size: 1.3rem;
     line-height: 1;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: background 0.2s;
     backdrop-filter: blur(4px);
   }
   
   .modal-close:hover { background: rgba(0,0,0,0.7); }
   
   /* Modal hero image */
   .modal-hero-img-wrap {
     position: relative;
     height: 220px;
     overflow: hidden;
   }
   
   .modal-hero-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
   }
   
   .modal-hero-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to top, rgba(42,24,16,0.85) 0%, transparent 60%);
   }
   
   .modal-header-content {
     position: absolute;
     bottom: 0;
     left: 0; right: 0;
     padding: 1.25rem 1.75rem;
   }
   
   .modal-header { position: relative; }
   
   .modal-tag {
     display: inline-block;
     background: rgba(201,149,40,0.25);
     border: 1px solid rgba(201,149,40,0.5);
     color: var(--gold-light);
     font-family: 'Rajdhani', sans-serif;
     font-size: 0.65rem;
     font-weight: 700;
     letter-spacing: 0.15em;
     text-transform: uppercase;
     padding: 0.2rem 0.6rem;
     border-radius: 2px;
     margin-bottom: 0.4rem;
   }
   
   .modal-title {
     font-size: 1.75rem;
     color: var(--white);
     font-weight: 800;
     margin-bottom: 0.6rem;
   }
   
   .modal-meta-row {
     display: flex;
     gap: 1rem;
     flex-wrap: wrap;
   }
   
   .modal-meta-item {
     font-family: 'Rajdhani', sans-serif;
     font-size: 0.78rem;
     font-weight: 600;
     color: rgba(255,255,255,0.75);
     letter-spacing: 0.04em;
   }
   
   /* Modal body */
   .modal-body {
     padding: 1.75rem;
   }
   
   .modal-section {
     margin-bottom: 1.75rem;
   }
   
   .modal-section-title {
     font-family: 'Rajdhani', sans-serif;
     font-size: 0.75rem;
     font-weight: 700;
     letter-spacing: 0.18em;
     text-transform: uppercase;
     color: var(--saffron);
     margin-bottom: 0.75rem;
     padding-bottom: 0.5rem;
     border-bottom: 1px solid rgba(42,24,16,0.08);
   }
   
   .modal-overview {
     font-size: 1rem;
     color: var(--charcoal);
     line-height: 1.75;
     font-weight: 300;
   }
   
   /* Itinerary steps */
   .modal-itinerary {
     display: flex;
     flex-direction: column;
     gap: 0;
   }
   
   .itinerary-step {
     display: grid;
     grid-template-columns: 48px 1fr;
     gap: 0 1rem;
     position: relative;
   }
   
   .itinerary-step:not(:last-child)::before {
     content: '';
     position: absolute;
     left: 23px;
     top: 36px;
     bottom: 0;
     width: 2px;
     background: rgba(201,149,40,0.2);
   }
   
   .step-dot {
     width: 36px;
     height: 36px;
     border-radius: 50%;
     background: linear-gradient(135deg, var(--saffron), var(--gold));
     display: flex;
     align-items: center;
     justify-content: center;
     font-family: 'Rajdhani', sans-serif;
     font-size: 0.75rem;
     font-weight: 800;
     color: var(--white);
     flex-shrink: 0;
     margin-top: 2px;
     position: relative;
     z-index: 1;
   }
   
   .step-content {
     padding-bottom: 1.25rem;
   }
   
   .step-time {
     font-family: 'Rajdhani', sans-serif;
     font-size: 0.7rem;
     font-weight: 700;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     color: var(--gold);
     margin-bottom: 0.2rem;
   }
   
   .step-title {
     font-family: 'Playfair Display', serif;
     font-size: 1rem;
     color: var(--dark);
     margin-bottom: 0.3rem;
   }
   
   .step-desc {
     font-size: 0.9rem;
     color: var(--muted);
     line-height: 1.6;
     font-weight: 300;
   }
   
   /* Two column included/excluded */
   .modal-two-col {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1.5rem;
     margin-bottom: 1.75rem;
   }
   
   .modal-list {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 0.45rem;
   }
   
   .modal-list li {
     font-size: 0.92rem;
     color: var(--charcoal);
     display: flex;
     align-items: flex-start;
     gap: 0.5rem;
     line-height: 1.45;
   }
   
   .modal-list.green li::before { content: '✓'; color: #22c55e; font-weight: 700; flex-shrink: 0; }
   .modal-list.red li::before   { content: '✗'; color: #ef4444; font-weight: 700; flex-shrink: 0; }
   .modal-list.tips li::before  { content: '→'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
   
   /* Pricing block */
   .modal-pricing {
     background: var(--dark);
     border-radius: 4px;
     padding: 1.25rem 1.5rem;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 1rem;
     flex-wrap: wrap;
     margin-bottom: 1.25rem;
   }
   
   .modal-price-block { text-align: left; }
   
   .modal-price-label {
     font-family: 'Rajdhani', sans-serif;
     font-size: 0.65rem;
     font-weight: 700;
     letter-spacing: 0.2em;
     text-transform: uppercase;
     color: rgba(255,255,255,0.4);
     display: block;
     margin-bottom: 0.2rem;
   }
   
   .modal-price-value {
     font-family: 'Playfair Display', serif;
     font-size: 2rem;
     font-weight: 900;
     color: var(--gold-light);
     display: block;
     line-height: 1;
   }
   
   .modal-price-sub {
     font-family: 'Rajdhani', sans-serif;
     font-size: 0.7rem;
     color: rgba(255,255,255,0.4);
     display: block;
     margin-top: 0.25rem;
   }
   
   .modal-pay-note {
     font-family: 'Rajdhani', sans-serif;
     font-size: 0.78rem;
     font-weight: 600;
     color: rgba(255,255,255,0.55);
     background: rgba(255,255,255,0.05);
     border: 1px solid rgba(255,255,255,0.1);
     padding: 0.5rem 0.85rem;
     border-radius: 4px;
     letter-spacing: 0.03em;
   }

   .modal-pay-note-standalone {
     margin-bottom: 1.25rem;
   }
   
   /* CTA row */
   .modal-cta-row {
     display: flex;
     gap: 0.85rem;
     flex-wrap: wrap;
   }
   
   .modal-btn-wa {
     flex: 1;
     min-width: 180px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 0.6rem;
     background: #25D366;
     color: var(--white);
     border: none;
     padding: 0.9rem 1.5rem;
     border-radius: 3px;
     font-family: 'Rajdhani', sans-serif;
     font-weight: 700;
     font-size: 0.9rem;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     cursor: pointer;
     transition: var(--transition);
     box-shadow: 0 4px 16px rgba(37,211,102,0.3);
   }
   
   .modal-btn-wa:hover {
     background: #20ba5a;
     transform: translateY(-2px);
     box-shadow: 0 6px 24px rgba(37,211,102,0.45);
   }
   
   .modal-btn-call {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 0.6rem;
     background: transparent;
     border: 2px solid var(--saffron);
     color: var(--saffron);
     padding: 0.9rem 1.5rem;
     border-radius: 3px;
     font-family: 'Rajdhani', sans-serif;
     font-weight: 700;
     font-size: 0.9rem;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     text-decoration: none;
     transition: var(--transition);
   }
   
   .modal-btn-call:hover {
     background: var(--saffron);
     color: var(--white);
   }
   
   /* =============================================
      RESPONSIVE FIXES (comprehensive)
      ============================================= */
   
   /* Tablet 768–1024px */
   @media (max-width: 1024px) {
     .tours-grid {
       grid-template-columns: repeat(2, 1fr);
     }
     .why-grid {
       grid-template-columns: repeat(2, 1fr);
     }
   }
   
   /* Tablet portrait & large mobile */
   @media (max-width: 768px) {
     /* Tours */
     .tours-grid {
       grid-template-columns: 1fr;
     }
   
     /* Why us */
     .why-grid {
       grid-template-columns: repeat(2, 1fr);
       gap: 1.25rem;
     }
   
     /* Reviews section */
     .reviews { padding: 4rem 1.25rem; }
   
     /* Modal responsive */
     .modal-overlay { padding: 0; align-items: flex-end; }
     .modal-box {
       max-width: 100%;
       border-radius: 16px 16px 0 0;
       max-height: 92vh;
       overflow-y: auto;
       transform: translateY(100%);
     }
     .modal-overlay.open .modal-box { transform: translateY(0); }
   
     .modal-hero-img-wrap { height: 180px; }
     .modal-title { font-size: 1.4rem; }
     .modal-two-col { grid-template-columns: 1fr; gap: 0; }
     .modal-body { padding: 1.25rem; }
     .modal-cta-row { flex-direction: column; }
     .modal-btn-wa, .modal-btn-call { width: 100%; min-width: unset; }
   
     /* Contact */
     .contact { padding: 4rem 1.25rem; }
     .whatsapp-btn-large { width: 100%; justify-content: center; }
   }
   
   /* Small mobile */
   @media (max-width: 480px) {
     .why-grid { grid-template-columns: 1fr; }
     .hero-stats { gap: 1.25rem; }
     .stat-number { font-size: 1.6rem; }

     /* Tour cards on mobile */
     .tour-card { padding: 1.5rem; }
     .tour-footer { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
     .btn-tour { width: 100%; text-align: center; }

     /* Testimonials on mobile */
     .share-experience { padding: 1.75rem 1.25rem; }

     /* Tighter logo on small phones */
     .nav-logo { gap: 0.5rem; }
     .nav-logo-icon { width: 34px; height: 34px; font-size: 0.95rem; }
     .nav-logo-text { font-size: 0.92rem; }
     .nav-logo-text span { font-size: 0.46rem; letter-spacing: 0.11em; }

     /* Replace lang label with 2-letter code so it stays compact */
     .nav-lang-btn { padding: 0 0.75rem; gap: 0.4rem; }
     .nav-lang-current { font-size: 0; line-height: 0; }
     .nav-lang-current::before {
       content: attr(data-short);
       font-size: 0.88rem;
       line-height: 1;
       font-weight: 800;
       letter-spacing: 0.05em;
       color: var(--gold-light);
     }
     .nav-lang-chevron { display: none; }
   }
   
   /* Ensure tour cards are clickable */
   .tour-card { cursor: pointer; }
   .tour-card .btn-tour { pointer-events: none; } /* prevent double-click on button */