
  :root {
    --gold: #D4A017;
    --deep-gold: #B8860B;
    --saffron: #FF6B00;
    --dark: #0D0D0D;
    --dark2: #1a1a2e;
    --cream: #FFF8E7;
    --blue: #1a3a6b;
    --light-gold: #FFD700;
    --text-light: #f0e6d3;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: #fff;
    overflow-x: hidden;
  }

  /* ─── SCROLLBAR ─── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--dark); }
  ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

  /* ─── PRELOADER ─── */
  #preloader {
    position: fixed; inset: 0;
    background: var(--dark2);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
  }
  #preloader.hide { opacity: 0; visibility: hidden; }
  .loader-mandala {
    width: 80px; height: 80px;
    border: 3px solid transparent;
    border-top-color: var(--gold);
    border-right-color: var(--saffron);
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  .loader-inner {
    width: 50px; height: 50px;
    border: 3px solid transparent;
    border-bottom-color: var(--gold);
    border-left-color: var(--saffron);
    border-radius: 50%;
    animation: spin 0.7s linear infinite reverse;
    position: absolute;
  }
  .loader-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
  .loader-text {
    margin-top: 20px;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 3px;
    animation: pulse 1.5s ease infinite;
  }
  @keyframes spin { to { transform: rotate(360deg); } }
  @keyframes pulse { 0%,100%{opacity:0.5} 50%{opacity:1} }

  /* ─── NAVBAR ─── */
  nav {
    position: fixed; top: 0; width: 100%;
    z-index: 1000;
    padding: 15px 5%;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.4s ease;
    background: transparent;
  }
  nav.scrolled {
    background: rgba(13,13,13,0.95);
    backdrop-filter: blur(20px);
    padding: 10px 5%;
    box-shadow: 0 2px 30px rgba(212,160,23,0.2);
  }
  .nav-logo img { height: 65px; filter: drop-shadow(0 2px 8px rgba(212,160,23,0.4)); }
  .nav-links { display: flex; gap: 30px; list-style: none; }
  .nav-links a {
    color: #fff; text-decoration: none;
    font-weight: 500; font-size: 0.9rem;
    letter-spacing: 1px; text-transform: uppercase;
    position: relative; padding-bottom: 4px;
    transition: color 0.3s;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--gold);
    transition: width 0.3s ease;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    color: #000 !important; padding: 10px 24px !important;
    border-radius: 30px; font-weight: 700 !important;
    box-shadow: 0 4px 20px rgba(212,160,23,0.4);
    transition: transform 0.3s, box-shadow 0.3s !important;
  }
  .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,160,23,0.6) !important; }
  .nav-cta::after { display: none !important; }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { width: 25px; height: 2px; background: var(--gold); transition: all 0.3s; }

  /* ─── HERO ─── */
  #hero {
    position: relative; height: 100vh; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  #hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
    filter: brightness(0.45);
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(13,13,13,0.3) 0%, rgba(13,13,13,0.1) 50%, rgba(13,13,13,0.9) 100%);
    z-index: 1;
  }
  .hero-particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
  .particle {
    position: absolute;
    background: var(--gold);
    border-radius: 50%;
    animation: floatParticle linear infinite;
    opacity: 0;
  }
  @keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
  }
  .hero-content {
    position: relative; z-index: 3;
    text-align: center; max-width: 900px; padding: 0 20px;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(212,160,23,0.15);
    border: 1px solid rgba(212,160,23,0.4);
    padding: 8px 20px; border-radius: 30px;
    color: var(--gold); font-size: 0.85rem;
    letter-spacing: 2px; text-transform: uppercase;
	    margin-top: 15px;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease 0.5s both;
  }
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900; line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.8s both;
  }
  .hero-title span { color: var(--gold); }
  .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-light); line-height: 1.8;
    margin-bottom: 40px; font-weight: 300;
    animation: fadeInUp 1s ease 1.1s both;
  }
  .hero-btns {
    display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
    animation: fadeInUp 1s ease 1.4s both;
  }
  .btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    color: #000; padding: 16px 40px;
    border-radius: 50px; font-weight: 700;
    font-size: 1rem; text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    box-shadow: 0 8px 30px rgba(212,160,23,0.5);
    transition: all 0.3s; border: none; cursor: pointer;
    letter-spacing: 0.5px;
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(212,160,23,0.7); }
  .btn-outline {
    background: transparent;
    color: #fff; padding: 16px 40px;
    border-radius: 50px; font-weight: 600;
    font-size: 1rem; text-decoration: none;
    border: 2px solid rgba(255,255,255,0.5);
    display: inline-flex; align-items: center; gap: 10px;
    transition: all 0.3s; cursor: pointer;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,160,23,0.1); transform: translateY(-3px); }
  .hero-stats {
    position: absolute; bottom: 0px; left: 0; right: 0;
    display: flex; justify-content: center; gap: 50px;
    z-index: 3; animation: fadeInUp 1s ease 1.7s both;
  }
  .stat-item { text-align: center; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 900; color: var(--gold);
  }
  .stat-label { font-size: 0.75rem; color: var(--text-light); letter-spacing: 1px; text-transform: uppercase; }
  .scroll-indicator {
    position: absolute; bottom: 20px; left: 50%;
    transform: translateX(-50%); z-index: 3;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    animation: bounce 2s infinite;
  }
  .scroll-indicator span { font-size: 0.7rem; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }
  @keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

  /* ─── SECTION COMMONS ─── */
  section { padding: 100px 5%; }
  .section-header { text-align: center; margin-bottom: 60px; }
  .section-tag {
    display: inline-block;
    color: var(--gold); font-size: 0.8rem;
    letter-spacing: 3px; text-transform: uppercase;
    margin-bottom: 12px;
  }
  .section-tag::before, .section-tag::after {
    content: '— '; color: var(--saffron);
  }
  .section-tag::after { content: ' —'; }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700; line-height: 1.2;
    margin-bottom: 15px;
  }
  .section-title span { color: var(--gold); }
  .section-desc { color: #aaa; max-width: 600px; margin: 0 auto; line-height: 1.8; }
  .divider {
    display: flex; align-items: center; justify-content: center;
    gap: 15px; margin: 15px auto 0; width: fit-content;
  }
  .divider-line { width: 60px; height: 1px; background: var(--gold); opacity: 0.5; }
  .divider-icon { color: var(--gold); font-size: 1rem; }

  /* ─── PARALLAX STRIP ─── */
  .parallax-strip {
    height: 350px; position: relative; overflow: hidden;
    background-attachment: fixed;
    background-size: cover; background-position: center;
	    background: rgb(51 59 106 / 63%);
    display: flex; align-items: center; justify-content: center;
  }
  .parallax-strip::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(13,13,13,0.7), rgba(212,160,23,0.3));
  }
  .parallax-content { position: relative; z-index: 1; text-align: center; }
  .parallax-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 10px; color: #fff;
  }
  .parallax-content p { color: var(--text-light); font-size: 1.1rem; }

  /* ─── WHY CHOOSE ─── */
  #why { background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%); }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
  }
  .feature-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(212,160,23,0.05));
    border: 1px solid rgba(212,160,23,0.15);
    border-radius: 20px; padding: 40px 30px;
     transition: all 0.4s;
    position: relative; overflow: hidden;
    cursor: default;
	text-align: center;
  }
  .feature-card::before {
    content: ''; position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(212,160,23,0.08) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.4s;
  }
  .feature-card:hover::before { opacity: 1; }
  .feature-card:hover { border-color: rgba(212,160,23,0.5); transform: translateY(-8px); box-shadow: 0 20px 40px rgba(212,160,23,0.15); }
  .feature-icon {
    width: 70px; height: 70px; border-radius: 50%;
    
    display: flex;  justify-content: center;
    margin: 0 auto 20px; font-size: 1.8rem; color: var(--gold);
    transition: all 0.4s;
  }
  .feature-card:hover .feature-icon {
   
    color: #000; transform: rotateY(360deg);
    box-shadow: 0 0 30px rgba(212,160,23,0.5);
  }
  .feature-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 10px; color: var(--cream); }
  .feature-card p { font-size: 0.85rem; color: #888; line-height: 1.7; }

  /* ─── PACKAGES ─── */
  #packages { background: var(--dark2); }
  .pkg-filter {
    display: flex; justify-content: center;
    gap: 12px; flex-wrap: wrap; margin-bottom: 50px;
  }
  .filter-btn {
    padding: 10px 24px; border-radius: 30px;
    border: 1px solid rgba(212,160,23,0.3);
    background: transparent; color: #aaa;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem; cursor: pointer;
    transition: all 0.3s; letter-spacing: 0.5px;
  }
  .filter-btn:hover, .filter-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    color: #000; font-weight: 600;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(212,160,23,0.4);
  }
  .packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
  }
  .pkg-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,160,23,0.1);
    border-radius: 24px; overflow: hidden;
    transition: all 0.4s; position: relative;
    animation: fadeInUp 0.6s ease both;
  }
  .pkg-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(212,160,23,0.2); border-color: rgba(212,160,23,0.4); }
  .pkg-img {
    position: relative; height: 240px; overflow: hidden;
  }
  .pkg-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
  }
  .pkg-card:hover .pkg-img img { transform: scale(1.08); }
  .pkg-badge {
    position: absolute; top: 16px; left: 16px;
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    color: #000; padding: 5px 14px;
    border-radius: 20px; font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.5px;
  }
  .pkg-wishlist {
    position: absolute; top: 16px; right: 16px;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(0,0,0,0.5); backdrop-filter: blur(5px);
    border: none; cursor: pointer; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; transition: all 0.3s;
  }
  .pkg-wishlist:hover, .pkg-wishlist.active { background: var(--saffron); color: #fff; transform: scale(1.1); }
  .pkg-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,13,13,0.8) 0%, transparent 50%);
  }
  .pkg-rating {
    position: absolute; bottom: 16px; left: 16px;
    display: flex; align-items: center; gap: 5px;
    color: var(--gold); font-size: 0.8rem;
  }
  .pkg-body { padding: 24px; }
  .pkg-meta {
    display: flex; justify-content: space-between;
    align-items: center; margin-bottom: 10px;
  }
  .pkg-duration {
    display: flex; align-items: center; gap: 5px;
    color: #888; font-size: 0.8rem;
  }
  .pkg-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; font-weight: 700;
    margin-bottom: 10px; color: var(--cream);
    line-height: 1.3;
  }
  .pkg-highlights {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 16px;
  }
  .highlight-tag {
    background: rgba(212,160,23,0.1);
    border: 1px solid rgba(212,160,23,0.2);
    color: var(--gold); padding: 3px 10px;
    border-radius: 12px; font-size: 0.72rem;
  }
  .pkg-footer {
    display: flex; align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .pkg-price { }
  .pkg-price .from { font-size: 0.72rem; color: #777; display: block; }
  .pkg-price .amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-weight: 900; color: var(--gold);
  }
  .pkg-price .per { font-size: 0.72rem; color: #777; }
  .btn-details {
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    color: #000; padding: 10px 22px;
    border-radius: 30px; font-weight: 700;
    font-size: 0.85rem; border: none; cursor: pointer;
    transition: all 0.3s; display: flex; align-items: center; gap: 6px;
  }
  .btn-details:hover { transform: scale(1.05); box-shadow: 0 8px 25px rgba(212,160,23,0.5); }

  /* ─── MODAL ─── */
  .modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.85); backdrop-filter: blur(10px);
    z-index: 2000; display: none;
    align-items: center; justify-content: center;
    padding: 20px;
  }
  .modal-overlay.open { display: flex; animation: fadeIn 0.3s ease; }
  @keyframes fadeIn { from{opacity:0} to{opacity:1} }
  .modal {
    background: linear-gradient(135deg, #111118, #1a1a2e);
    border: 1px solid rgba(212,160,23,0.3);
    border-radius: 28px; max-width: 900px; width: 100%;
    max-height: 90vh; overflow-y: auto;
    position: relative; animation: slideUp 0.4s ease;
  }
  @keyframes slideUp { from{transform:translateY(30px);opacity:0} to{transform:translateY(0);opacity:1} }
  .modal-close {
    position: sticky; top: 16px; left: calc(100% - 50px);
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(212,160,23,0.2); border: 1px solid var(--gold);
    color: var(--gold); cursor: pointer; font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; z-index: 10;
  }
  .modal-close:hover { background: var(--gold); color: #000; }
  .modal-hero {
    height: 280px; position: relative; overflow: hidden;
    border-radius: 28px 28px 0 0;
  }
  .modal-hero img { width: 100%; height: 100%; object-fit: cover; }
  .modal-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(17,17,24,1) 0%, transparent 60%);
  }
  .modal-hero-info {
    position: absolute; bottom: 20px; left: 30px; right: 30px;
  }
  .modal-hero-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem; color: #fff; margin-bottom: 5px;
  }
  .modal-body { padding: 30px; }
  .modal-tabs {
    display: flex; gap: 5px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px; padding: 5px;
    margin-bottom: 30px; overflow-x: auto;
  }
  .modal-tab {
    padding: 10px 20px; border-radius: 10px;
    border: none; background: transparent;
    color: #888; cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem; font-weight: 500;
    transition: all 0.3s; white-space: nowrap;
  }
  .modal-tab.active { background: linear-gradient(135deg, var(--gold), var(--saffron)); color: #000; font-weight: 700; }
  .tab-content { display: none; animation: fadeIn 0.3s ease; }
  .tab-content.active { display: block; }

  /* Itinerary */
  .itinerary-day {
    display: flex; gap: 20px; margin-bottom: 25px;
    position: relative;
  }
  .itinerary-day::before {
    content: ''; position: absolute;
    left: 20px; top: 45px; bottom: -25px; width: 1px;
    background: linear-gradient(to bottom, var(--gold), transparent);
  }
  .itinerary-day:last-child::before { display: none; }
  .day-num {
    flex-shrink: 0; width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-weight: 700; color: #000;
    font-size: 0.85rem; z-index: 1;
  }
  .day-content h4 { color: var(--gold); font-size: 0.95rem; margin-bottom: 6px; }
  .day-content p { color: #aaa; font-size: 0.85rem; line-height: 1.7; }

  /* Hotels */
  .hotels-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
  }
  .hotel-card {
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 16px; overflow: hidden;
    cursor: pointer; transition: all 0.3s; position: relative;
  }
  .hotel-card:hover, .hotel-card.selected { border-color: var(--gold); box-shadow: 0 0 25px rgba(212,160,23,0.3); }
  .hotel-card.selected::after {
    content: '✓ Selected'; position: absolute;
    top: 12px; right: 12px;
    background: var(--gold); color: #000;
    padding: 3px 10px; border-radius: 12px;
    font-size: 0.72rem; font-weight: 700;
  }
  .hotel-img { height: 140px; overflow: hidden; }
  .hotel-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
  .hotel-card:hover .hotel-img img { transform: scale(1.05); }
  .hotel-info { padding: 14px; background: rgba(255,255,255,0.03); }
  .hotel-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; color: var(--cream); }
  .hotel-stars { color: var(--gold); font-size: 0.75rem; margin-bottom: 4px; }
  .hotel-price { color: var(--gold); font-weight: 700; font-size: 0.9rem; }
  .hotel-price span { color: #777; font-weight: 400; font-size: 0.75rem; }

  /* Inclusions */
  .inclusions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .inclusion-item {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,160,23,0.1);
    color: #ccc; font-size: 0.85rem;
  }
  .inclusion-item i { color: var(--gold); flex-shrink: 0; }
  .exclusion-item { border-color: rgba(255,50,50,0.1); }
  .exclusion-item i { color: #f44; }

  /* Booking bar */
  .booking-bar {
    background: rgba(212,160,23,0.08);
    border: 1px solid rgba(212,160,23,0.2);
    border-radius: 16px; padding: 20px 24px;
    display: flex; align-items: center;
    justify-content: space-between; flex-wrap: wrap; gap: 16px;
    margin-top: 30px;
  }
  .booking-price .from { font-size: 0.75rem; color: #888; }
  .booking-price .amount { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); font-weight: 900; }
  .booking-price .per { font-size: 0.75rem; color: #888; }
  .btn-book {
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    color: #000; padding: 14px 36px;
    border-radius: 40px; font-weight: 700;
    font-size: 1rem; border: none; cursor: pointer;
    display: flex; align-items: center; gap: 10px;
    transition: all 0.3s; box-shadow: 0 6px 25px rgba(212,160,23,0.4);
  }
  .btn-book:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(212,160,23,0.6); }

  /* ─── DESTINATIONS MAP ─── */
  #destinations { background: var(--dark); }
  .destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
  }
  .dest-card {
    position: relative; border-radius: 18px; overflow: hidden;
    height: 220px; cursor: pointer;
    transition: all 0.4s;
  }
  .dest-card:hover { transform: scale(1.04); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
  .dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
  .dest-card:hover img { transform: scale(1.1); }
  .dest-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    display: flex; flex-direction: column;
    justify-content: flex-end; padding: 16px;
  }
  .dest-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; }
  .dest-country { font-size: 0.75rem; color: var(--gold); }
  .dest-tours { font-size: 0.7rem; color: #aaa; margin-top: 2px; }

  /* TESTIMONIALS */
.testimonials-section{
    position:relative;
    padding:120px 0;
    background:url('https://images.unsplash.com/photo-1528181304800-259b08848526?w=1920')
               center center/cover fixed;
    overflow:hidden;
}

.testimonials-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.testimonials-section .container{
    position:relative;
    z-index:2;
}

.testimonials-section .section-title,
.testimonials-section .section-desc,
.testimonials-section .section-tag{
    color:#fff;
}

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

.testimonial-card{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:24px;
    padding:30px;
    transition:.4s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

.testimonial-top{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:20px;
}

.author-avatar{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #fff;
}

.testimonial-top h4{
    color:#fff;
    margin:0;
    font-size:18px;
}

.testimonial-top span{
    color:#ddd;
    font-size:14px;
}

.author-stars{
    color:#FFD700;
    margin-top:5px;
}

.testimonial-text{
    color:#fff;
    line-height:1.8;
    font-size:15px;
}

@media(max-width:768px){

    .testimonials-section{
        background-attachment:scroll;
    }

    .testimonial-card{
        padding:25px;
    }
}

  /* ─── NEWSLETTER ─── */
  #newsletter {
    background: linear-gradient(135deg, rgba(212,160,23,0.08), rgba(255,107,0,0.05));
    border-top: 1px solid rgba(212,160,23,0.15);
    border-bottom: 1px solid rgba(212,160,23,0.15);
    padding: 80px 5%;
  }
  .newsletter-inner {
    max-width: 600px; margin: 0 auto; text-align: center;
  }
  .newsletter-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; margin-bottom: 12px;
  }
  .newsletter-inner p { color: #aaa; margin-bottom: 30px; }
  .newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
  .newsletter-form input {
    flex: 1; min-width: 240px; padding: 14px 24px;
    border-radius: 40px; border: 1px solid rgba(212,160,23,0.3);
    background: rgba(255,255,255,0.05); color: #fff;
    font-family: 'Poppins', sans-serif; font-size: 0.9rem;
    outline: none; transition: border-color 0.3s;
  }
  .newsletter-form input:focus { border-color: var(--gold); }
  .newsletter-form input::placeholder { color: #666; }

 /* =========================
   FOOTER
========================= */

footer{
    background:#050508;
        color: #7c7a7a;
    padding:70px 0 20px;
}

.footer-grid{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-brand img{
        width: 250px;
    max-width:100%;
    margin-bottom:20px;
}

.footer-brand p{
        color: #7c7a7a;
    line-height:1.8;
    margin-bottom:25px;
}

.footer-socials{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.social-btn{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#111;
    color:#d4a017;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s;
}

.social-btn:hover{
    background:#d4a017;
    color:#fff;
    transform:translateY(-4px);
}

.footer-col h4{
    margin-bottom:20px;
    color:#fff;
    font-size:18px;
}

.footer-col ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-col li{
    margin-bottom:12px;
}

.footer-col a{
       color: #7c7a7a;
    text-decoration:none;
    transition:.3s;
    line-height:1.6;
}

.footer-col a:hover{
    color:#d4a017;
    padding-left:5px;
}

.footer-col i{
    margin-right:8px;
    width:18px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:50px;
    padding:25px 20px 0;
    text-align:center;
}

.footer-bottom p{
    color:#888;
    margin:8px 0;
}

.footer-bottom span{
    color:#d4a017;
}

/* =========================
   TABLET
========================= */

@media (max-width:992px){

    .footer-grid{
        grid-template-columns:1fr 1fr;
        gap:35px;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

    footer{
        padding:50px 0 20px;
    }
	.hero-title {margin-top:-40px !important;}
    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
        gap:30px;
    }

    .footer-brand img{
        margin:0 auto 20px;
        display:block;
    }

    .footer-socials{
        justify-content:center;
    }

    .footer-col ul{
        display:flex;
        flex-direction:column;
        align-items:center;
    }

    .footer-col a{
        padding:5px 0;
        display:inline-block;
    }

    .footer-bottom{
        margin-top:30px;
    }

    .footer-bottom p{
        font-size:14px;
        line-height:1.7;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width:480px){
	
	.nav-logo img {    height: 55px;}
	.hero-title {    font-size: clamp(2.0rem, 6vw, 5rem) !important;}

    .footer-brand img{
        width:150px;
    }

    .social-btn{
        width:38px;
        height:38px;
    }

    .footer-col h4{
        font-size:17px;
    }

    .footer-brand p,
    .footer-col a{
        font-size:14px;
    }
}

  /* ─── FLOATING ENQUIRY ─── */
  .float-enquiry {
    position: fixed; right: 20px; bottom: 20px;
    z-index: 999; display: flex; flex-direction: column;
    align-items: flex-end; gap: 10px;
  }
  .float-enquiry-btn {
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    color: #000; padding: 14px 24px; border-radius: 40px;
    border: none; cursor: pointer; font-weight: 700;
    font-size: 0.9rem; display: flex; align-items: center;
    gap: 8px; box-shadow: 0 8px 25px rgba(212,160,23,0.5);
    transition: all 0.3s;
  }
  .float-enquiry-btn:hover { transform: scale(1.05); }
  .float-whatsapp {
    background: #25D366; color: #fff;
    padding: 12px; border-radius: 50%;
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    text-decoration: none; transition: all 0.3s;
  }
  .float-whatsapp:hover { transform: scale(1.1); }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible { opacity: 1;  }

/* HAMBURGER */
.hamburger{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.hamburger span{
    width:28px;
    height:3px;
    background:#fff;
    display:block;
}

/* MOBILE CLOSE */
.mobile-close{
    display:none;
}

@media (max-width:991px){

    .hamburger{
        display:flex;
    }

    .nav-links{
        position:fixed;
        top:0;
        right:-100%;
        width:300px;
        height:100vh;
        background:#050508;
        flex-direction:column;
        padding:80px 30px;
        transition:0.4s ease;
        z-index:9999;
    }

    .nav-links.show{
        right:0;
    }

    .mobile-close{
        display:block;
        position:absolute;
        top:20px;
        right:25px;
        list-style:none;
    }

    .mobile-close span{
        color:#fff;
        font-size:34px;
        cursor:pointer;
    }

    .nav-links li{
        margin:15px 0;
    }

    .nav-links a{
        color:#fff;
        font-size:18px;
        text-decoration:none;
    }
}
/* HERO STATS */
.hero-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:40px;
    width:100%;
}

.stat-item{
    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.15);
    border-radius:18px;
    padding:20px 15px;
    text-align:center;
    transition:0.3s ease;
}

.stat-item:hover{
    transform:translateY(-5px);
}

.stat-num{
    font-size:2rem;
    font-weight:700;
    color:#D4A017;
    line-height:1;
    margin-bottom:8px;
}

.stat-label{
    font-size:0.95rem;
    color:#fff;
    line-height:1.4;
}

/* Tablet */
@media (max-width:992px){

    .hero-stats{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .stat-num{
        font-size:1.8rem;
    }
}

/* Mobile */
@media (max-width:768px){

    .hero-stats{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
        margin-top:30px;
    }

    .stat-item{
        padding:15px 10px;
    }

    .stat-num{
        font-size:1.6rem;
    }

    .stat-label{
        font-size:0.85rem;
    }
}

/* Small Mobile */
@media (max-width:480px){

    .hero-stats{
        grid-template-columns:1fr 1fr;
        gap:10px;
    }

    .stat-item{
        padding:12px 8px;
    }

    .stat-num{
        font-size:1.4rem;
    }

    .stat-label{
        font-size:0.8rem;
    }
}