  :root {
    --navy: #0D1B3E;
    --coral: #FF6B35;
    --sky: #E8F4FD;
    --gold: #F5A623;
    --white: #FFFFFF;
    --light: #F7F9FC;
    --gray: #6B7280;
    --dark-text: #1A202C;
    --shadow: 0 20px 60px rgba(13,27,62,0.12);
    --shadow-hover: 0 30px 80px rgba(13,27,62,0.2);
    --radius: 20px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Inter', sans-serif; color: var(--dark-text); background: var(--white); overflow-x: hidden; }

  /* ===== NAVBAR ===== */
  .navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 18px 5%;
    display: flex; align-items: center; justify-content: space-between;
    transition: var(--transition);
    background: transparent;
  }
  .navbar.scrolled {
    background: rgba(13,27,62,0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
    padding: 12px 5%;
  }
  .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .logo-icon { width: 42px; height: 42px; background: var(--coral); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
  .logo-text { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: white; }
  .logo-text span { color: var(--coral); }
  .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
  .nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 15px; font-weight: 500; transition: color 0.3s; }
  .nav-links a:hover { color: var(--coral); }
  .nav-cta { background: var(--coral); color: white !important; padding: 10px 24px; border-radius: 50px; font-weight: 600 !important; transition: var(--transition) !important; }
  .nav-cta:hover { background: #e55a28 !important; transform: translateY(-2px); color: white !important; }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { width: 26px; height: 2px; background: white; border-radius: 2px; transition: 0.3s; }

  /* ===== HERO ===== */
  .hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0D1B3E 0%, #1a3a6e 50%, #0D1B3E 100%);
    position: relative; overflow: hidden;
    display: flex; align-items: center;
  }
  .hero-bg-circles {
    position: absolute; width: 100%; height: 100%; top: 0; left: 0;
    pointer-events: none; overflow: hidden;
  }
  .circle {
    position: absolute; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 70%);
  }
  .circle-1 { width: 700px; height: 700px; top: -200px; right: -100px; }
  .circle-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%); }
  .circle-3 { width: 300px; height: 300px; top: 40%; right: 25%; background: radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 70%); }
  .hero-content {
    position: relative; z-index: 2;
    width: 50%; padding: 0 5%; padding-top: 80px;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,107,53,0.15); border: 1px solid rgba(255,107,53,0.3);
    color: var(--coral); padding: 8px 18px; border-radius: 50px;
    font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 24px;
  }
  .hero-badge::before { content: '✈'; font-size: 16px; }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 900; line-height: 1.1;
    color: white; margin-bottom: 20px;
  }
  .hero h1 .accent { color: var(--coral); position: relative; }
  .hero h1 .accent::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 100%; height: 3px;
    background: var(--gold); border-radius: 2px;
  }
  .hero p {
    color: rgba(255,255,255,0.7); font-size: 17px; line-height: 1.8;
    max-width: 480px; margin-bottom: 40px;
  }
  .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
  .btn-primary {
    background: var(--coral); color: white; padding: 16px 36px;
    border-radius: 50px; font-size: 16px; font-weight: 600; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: var(--transition); border: none; cursor: pointer;
  }
  .btn-primary:hover { background: #e55a28; transform: translateY(-3px); box-shadow: 0 15px 40px rgba(255,107,53,0.4); }
  .btn-secondary {
    background: transparent; color: white; padding: 16px 36px;
    border-radius: 50px; font-size: 16px; font-weight: 600; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: var(--transition); border: 2px solid rgba(255,255,255,0.3); cursor: pointer;
  }
  .btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.1); }
  .hero-stats {
    display: flex; gap: 40px;
  }
  .stat { }
  .stat-num {
    font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700;
    color: white; line-height: 1;
  }
  .stat-num span { color: var(--coral); }
  .stat-label { color: rgba(255,255,255,0.5); font-size: 13px; margin-top: 4px; }
  .hero-image {
    position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
    width: 42%; z-index: 2;
  }
  .hero-img-wrap {
    position: relative;
  }
  .hero-card-float {
    position: absolute; background: white; border-radius: 16px;
    padding: 14px 18px; box-shadow: var(--shadow);
    display: flex; align-items: center; gap: 12px;
    animation: float 3s ease-in-out infinite;
  }
  .hero-card-float.card-1 { top: 15%; left: -10%; animation-delay: 0s; }
  .hero-card-float.card-2 { bottom: 20%; right: -5%; animation-delay: 1.5s; }
  @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
  .card-icon { width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, var(--coral), var(--gold)); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
  .card-info .label { font-size: 11px; color: var(--gray); font-weight: 500; }
  .card-info .value { font-size: 14px; font-weight: 700; color: var(--navy); }
  .hero-main-img {
    width: 100%; border-radius: 30px;
    background: linear-gradient(145deg, #1e3a6e, #2a5298);
    overflow: hidden; aspect-ratio: 4/5;
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .hero-img-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(145deg, #1e4080 0%, #16306b 50%, #0f2250 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    border-radius: 30px; gap: 16px; position: relative; overflow: hidden;
  }
  .destination-showcase {
    position: absolute; width: 100%; height: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  }
  .dest-thumb {
    overflow: hidden; position: relative;
  }
  .dest-thumb:nth-child(1) { grid-row: span 2; border-radius: 26px 4px 4px 26px; }
  .dest-thumb:nth-child(2) { border-radius: 4px 26px 4px 4px; }
  .dest-thumb:nth-child(3) { border-radius: 4px 4px 26px 4px; }
  .dest-thumb img { width: 100%; height: 100%; object-fit: cover; }
  .dest-thumb-bg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 50px; }
  .dt1 { background: linear-gradient(135deg, #667eea, #764ba2); }
  .dt2 { background: linear-gradient(135deg, #11998e, #38ef7d); }
  .dt3 { background: linear-gradient(135deg, #f093fb, #f5576c); }


  section { padding: 100px 5%; }
  .section-badge {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--coral); font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px;
  }
  .section-badge::before { content: ''; width: 24px; height: 2px; background: var(--coral); border-radius: 2px; }
  .section-title {
    font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 50px);
    font-weight: 700; color: var(--navy); margin-bottom: 14px; line-height: 1.2;
  }
  .section-title span { color: var(--coral); }
  .section-sub { color: var(--gray); font-size: 16px; line-height: 1.7; max-width: 540px; }
  .section-header { margin-bottom: 56px; }
  .section-header-flex {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 56px;
  }
  .see-all {
    color: var(--coral); text-decoration: none; font-weight: 600; font-size: 15px;
    display: flex; align-items: center; gap: 6px; transition: gap 0.3s;
  }
  .see-all:hover { gap: 12px; }

  /* ===== DESTINATIONS ===== */
  .destinations-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  }
  .dest-card {
    border-radius: var(--radius); overflow: hidden; position: relative;
    cursor: pointer; transition: var(--transition);
    aspect-ratio: 3/4;
  }
  .dest-card:first-child { grid-column: span 2; aspect-ratio: unset; min-height: 480px; }
  .dest-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
  .dest-card-bg {
    width: 100%; height: 100%; position: absolute; inset: 0;
    transition: transform 0.6s ease;
  }
  .dest-card:hover .dest-card-bg { transform: scale(1.07); }
  .dc1 { background: linear-gradient(165deg, #1e3c72, #2a69ac, #87CEEB); }
  .dc2 { background: linear-gradient(165deg, #134e5e, #71b280); }
  .dc3 { background: linear-gradient(165deg, #c94b4b, #4b134f); }
  .dc4 { background: linear-gradient(165deg, #e96c00, #f5af19); }
  .dc5 { background: linear-gradient(165deg, #1c92d2, #f2fcfe); }
  .dest-img-emoji {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    font-size: 80px; opacity: 0.3;
  }
  .dest-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,27,62,0.9) 0%, rgba(13,27,62,0.2) 50%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 24px;
  }
  .dest-tag {
    display: inline-block; background: var(--coral); color: white;
    font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    padding: 4px 12px; border-radius: 50px; margin-bottom: 10px; align-self: flex-start;
  }
  .dest-name {
    font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700;
    color: white; margin-bottom: 4px;
  }
  .dest-country { color: rgba(255,255,255,0.7); font-size: 13px; margin-bottom: 14px; }
  .dest-meta { display: flex; justify-content: space-between; align-items: center; }
  .dest-price { color: white; font-weight: 700; font-size: 18px; }
  .dest-price span { font-size: 13px; font-weight: 400; opacity: 0.7; }
  .dest-rating { background: var(--gold); color: var(--navy); padding: 4px 10px; border-radius: 50px; font-size: 12px; font-weight: 700; }

  /* ===== PACKAGES ===== */
  .packages-section { background: var(--light); }
  .packages-tabs {
    display: flex; gap: 8px; margin-bottom: 48px;
    background: white; padding: 6px; border-radius: 50px;
    width: fit-content; box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    flex-wrap: wrap;
  }
  .tab-btn {
    padding: 10px 24px; border-radius: 50px; border: none; cursor: pointer;
    font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
    transition: var(--transition); background: transparent; color: var(--gray);
  }
  .tab-btn.active { background: var(--coral); color: white; }
  .packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

  /* ---- NEW CARD STYLES ---- */
  .pkg-card {
    background: white; border-radius: 18px; overflow: hidden;
    box-shadow: 0 4px 24px rgba(13,27,62,0.09); transition: var(--transition);
    position: relative;
  }
  .pkg-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(13,27,62,0.16); }

  /* Ribbon */
  .pkg-ribbon { position: absolute; top: 0; right: 0; width: 90px; height: 90px; overflow: hidden; pointer-events: none; z-index: 5; }
  .pkg-ribbon span {
    position: absolute; top: 20px; right: -22px; transform: rotate(45deg);
    background: #F97316; color: #fff; font-size: 10px; font-weight: 800;
    letter-spacing: 1.5px; padding: 5px 28px; text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(249,115,22,0.5);
  }
  .pkg-ribbon.green span { background: #16A34A; box-shadow: 0 2px 8px rgba(22,163,74,0.5); }
  .pkg-ribbon.red span { background: #DC2626; box-shadow: 0 2px 8px rgba(220,38,38,0.5); }
  .pkg-ribbon.blue span { background: #2563EB; }

  /* Category pill */
  .pkg-cat-pill {
    position: absolute; top: 12px; left: 12px; z-index: 5;
    background: #FBBF24; color: #111;
    font-size: 11px; font-weight: 700; padding: 4px 14px;
    border-radius: 50px; letter-spacing: 0.5px;
  }

  /* WhatsApp circle on image */
  .pkg-wa-circle {
    position: absolute; bottom: -18px; right: 16px; z-index: 10;
    width: 46px; height: 46px; border-radius: 50%; background: #25D366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.55); text-decoration: none;
    transition: transform 0.2s;
  }
  .pkg-wa-circle:hover { transform: scale(1.12); }
  .pkg-wa-circle svg { width: 24px; height: 24px; fill: white; }

  /* Image area */
  .pkg-img {
    height: 210px; position: relative; overflow: hidden;
  }
  .pkg-img-bg {
    width: 100%; height: 100%; display: flex; align-items: center;
    justify-content: center; font-size: 80px;
    transition: transform 0.5s ease;
  }
  .pkg-card:hover .pkg-img-bg { transform: scale(1.07); }
  .pkg-duration-badge {
    position: absolute; bottom: 14px; left: 14px;
    background: rgba(13,27,62,0.85); color: white; backdrop-filter: blur(8px);
    padding: 5px 13px; border-radius: 50px; font-size: 12px; font-weight: 600;
  }

  /* Body */
  .pkg-body { padding: 22px 18px 0; }
  .pkg-category { color: var(--coral); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 5px; }
  .pkg-name {
    font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 800;
    color: var(--navy); margin-bottom: 14px; line-height: 1.3;
  }

  /* Amenities row */
  .pkg-amenities {
    display: flex; justify-content: space-around;
    padding: 12px 0; border-top: 1px solid #F3F4F6; border-bottom: 1px solid #F3F4F6;
    margin-bottom: 14px;
  }
  .pkg-amenity { display: flex; flex-direction: column; align-items: center; gap: 4px; }
  .pkg-amenity-icon { font-size: 18px; }
  .pkg-amenity-label { font-size: 10px; font-weight: 600; color: #9CA3AF; white-space: nowrap; }
  .pkg-amenity.on .pkg-amenity-label { color: var(--coral); }

  /* 
  */
  .pkg-dest-label { font-size: 11px; font-weight: 700; color: #111827; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 5px; }
  .pkg-dest-route { display: flex; align-items: center; gap: 3px; flex-wrap: wrap; margin-bottom: 12px; }
  .pkg-dest-stop { font-size: 12px; color: #374151; font-weight: 500; }
  .pkg-dest-arrow { color: var(--coral); font-size: 11px; font-weight: 700; }

  /* Inclusions */
  .pkg-incl-label { font-size: 11px; font-weight: 700; color: #111827; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
  .pkg-incl-list { list-style: none; margin-bottom: 2px; }
  .pkg-incl-list li {
    font-size: 12.5px; color: #4B5563; padding: 2px 0;
    display: flex; align-items: flex-start; gap: 6px; line-height: 1.5;
  }
  .pkg-incl-list li::before { content: '»'; color: var(--coral); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
  .pkg-extra-incl { display: none; }
  .pkg-extra-incl.open { display: block; }
  .pkg-read-more {
    color: var(--coral); font-size: 12px; font-weight: 600; cursor: pointer;
    background: none; border: none; text-align: left; padding: 4px 0 12px;
    font-family: 'Inter',sans-serif; display: block;
  }

  /* Price row */
  .pkg-price-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 0; border-top: 1px solid #F3F4F6;
  }
  .pkg-old-price { font-size: 12px; color: #9CA3AF; text-decoration: line-through; }
  .pkg-new-price { font-size: 19px; font-weight: 800; color: var(--navy); }
  .pkg-new-price span { font-size: 12px; font-weight: 500; color: var(--gray); }
  .pkg-discount-badge { background: #FEF3C7; color: #D97706; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 50px; }

  /* Footer buttons */
  .pkg-card-footer { display: grid; grid-template-columns: 1fr 2.5fr; }
  .pkg-btn-call {
    background: var(--navy); color: white; border: none;
    padding: 14px; font-size: 20px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
  }
  .pkg-btn-call:hover { background: #1e3a6e; }
  .pkg-btn-enquiry {
    background: var(--coral); color: white; border: none; padding: 14px;
    font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    cursor: pointer; transition: background 0.2s; font-family: 'Inter',sans-serif;
    display: flex; align-items: center; justify-content: center; gap: 8px;
  }
  .pkg-btn-enquiry:hover { background: #e55a28; }

  /* ===== WHY US ===== */
  .why-us { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .why-visual { position: relative; }
  .why-img-main {
    width: 100%; border-radius: 30px; aspect-ratio: 4/5; overflow: hidden;
    background: linear-gradient(135deg, #0D1B3E, #1a3a6e);
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .why-img-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
    width: 100%; height: 100%; padding: 6px;
  }
  .why-thumb {
    border-radius: 16px; display: flex; align-items: center;
    justify-content: center; font-size: 40px;
  }
  .wt1 { background: linear-gradient(135deg, #ff9a9e, #fecfef); }
  .wt2 { background: linear-gradient(135deg, #a1c4fd, #c2e9fb); }
  .wt3 { background: linear-gradient(135deg, #ffecd2, #fcb69f); }
  .wt4 { background: linear-gradient(135deg, #a8edea, #fed6e3); }
  .why-exp-badge {
    position: absolute; bottom: 30px; left: -20px;
    background: var(--coral); color: white; border-radius: 20px; padding: 20px 24px;
    box-shadow: 0 20px 50px rgba(255,107,53,0.4);
    text-align: center;
  }
  .why-exp-badge .big { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 900; line-height: 1; }
  .why-exp-badge .small { font-size: 13px; opacity: 0.9; }
  .why-content { }
  .why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
  .why-feature {
    background: var(--light); border-radius: 16px; padding: 22px;
    transition: var(--transition); border: 1px solid transparent;
  }
  .why-feature:hover { border-color: var(--coral); background: white; box-shadow: 0 10px 30px rgba(255,107,53,0.1); }
  .why-icon { width: 46px; height: 46px; background: var(--coral); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 14px; }
  .why-feat-title { font-weight: 700; color: var(--navy); margin-bottom: 6px; font-size: 15px; }
  .why-feat-text { color: var(--gray); font-size: 13px; line-height: 1.6; }

  /* ===== TESTIMONIALS ===== */
  .testimonials { background: var(--navy); }
  .testimonials .section-title { color: white; }
  .testimonials .section-badge { color: var(--gold); }
  .testimonials .section-badge::before { background: var(--gold); }
  .testimonials .section-sub { color: rgba(255,255,255,0.6); }
  .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .review-card {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius); padding: 28px; transition: var(--transition);
    backdrop-filter: blur(10px);
  }
  .review-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
  .review-stars { color: var(--gold); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
  .review-text { color: rgba(255,255,255,0.8); font-size: 15px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
  .review-author { display: flex; align-items: center; gap: 14px; }
  .review-avatar { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; color: white; flex-shrink: 0; }
  .ra1 { background: linear-gradient(135deg, #f093fb, #f5576c); }
  .ra2 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
  .ra3 { background: linear-gradient(135deg, #43e97b, #38f9d7); }
  .review-name { font-weight: 700; color: white; font-size: 15px; }
  .review-dest { color: rgba(255,255,255,0.5); font-size: 13px; }

  /* ===== CTA SECTION ===== */
  .cta-section {
    background: linear-gradient(135deg, var(--coral) 0%, #ff8c5a 50%, var(--gold) 100%);
    text-align: center; border-radius: 30px;
    margin: 0 5%; padding: 80px 40px;
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .cta-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(30px,4vw,52px); font-weight: 700; color: white; margin-bottom: 16px; position: relative; }
  .cta-section p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 36px; position: relative; }
  .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
  .btn-white { background: white; color: var(--coral); padding: 16px 36px; border-radius: 50px; font-size: 16px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: var(--transition); }
  .btn-white:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0,0,0,0.2); }
  .btn-whatsapp-outline { background: transparent; color: white; padding: 16px 36px; border-radius: 50px; font-size: 16px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: var(--transition); border: 2px solid rgba(255,255,255,0.6); }
  .btn-whatsapp-outline:hover { background: rgba(255,255,255,0.15); border-color: white; }

  /* ===== FOOTER ===== */
  footer {
    background: var(--navy); color: rgba(255,255,255,0.7);
    padding: 80px 5% 40px;
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
  .footer-brand .logo-text { display: block; font-size: 26px; margin-bottom: 16px; }
  .footer-brand p { font-size: 14px; line-height: 1.8; max-width: 280px; margin-bottom: 24px; }
  .social-links { display: flex; gap: 12px; }
  .social-link { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 18px; transition: 0.3s; }
  .social-link:hover { background: var(--coral); }
  .footer-col h4 { color: white; font-weight: 700; margin-bottom: 20px; font-size: 16px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-col ul a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.3s; }
  .footer-col ul a:hover { color: var(--coral); }
  .newsletter-form { display: flex; gap: 8px; }
  .newsletter-form input { flex: 1; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; padding: 12px 16px; color: white; font-family: 'Inter',sans-serif; font-size: 14px; outline: none; }
  .newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
  .newsletter-form button { background: var(--coral); color: white; border: none; border-radius: 10px; padding: 12px 16px; cursor: pointer; font-size: 18px; transition: 0.3s; }
  .newsletter-form button:hover { background: #e55a28; }
  .footer-contact { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
  .footer-contact a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 8px; transition: color 0.3s; }
  .footer-contact a:hover { color: var(--coral); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; }
  .footer-bottom p { font-size: 13px; }

  /* ===== WHATSAPP FLOAT ===== */
  .whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; z-index: 9999;
  }
  .wa-btn {
    width: 60px; height: 60px; border-radius: 50%; background: #25D366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
    text-decoration: none; transition: var(--transition);
    animation: pulse-wa 2s infinite;
  }
  .wa-btn:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.6); }
  .wa-btn svg { width: 32px; height: 32px; fill: white; }
  @keyframes pulse-wa {
    0%,100% { box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 8px 40px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.15); }
  }
  .wa-tooltip {
    position: absolute; right: 70px; bottom: 50%; transform: translateY(50%);
    background: var(--navy); color: white; padding: 8px 16px; border-radius: 10px;
    font-size: 13px; font-weight: 600; white-space: nowrap; opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
  }
  .wa-tooltip::after { content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-right: none; border-left-color: var(--navy); }
  .wa-btn:hover + .wa-tooltip { opacity: 1; }

  /* ===== MODAL ===== */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 99999;
    background: rgba(13,27,62,0.8); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
    padding: 20px;
  }
  .modal-overlay.open { opacity: 1; pointer-events: all; }
  .modal {
    background: white; border-radius: 24px; padding: 40px;
    max-width: 500px; width: 100%; position: relative;
    transform: translateY(20px); transition: transform 0.3s;
  }
  .modal-overlay.open .modal { transform: translateY(0); }
  .modal-close { position: absolute; top: 16px; right: 16px; background: var(--light); border: none; border-radius: 50%; width: 36px; height: 36px; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
  .modal-close:hover { background: var(--coral); color: white; }
  .modal h3 { font-family: 'Playfair Display',serif; font-size: 24px; color: var(--navy); margin-bottom: 6px; }
  .modal .pkg-name-modal { color: var(--coral); font-weight: 700; margin-bottom: 24px; font-size: 16px; }
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
  .form-group input, .form-group select, .form-group textarea { width: 100%; border: 1.5px solid #E5E7EB; border-radius: 12px; padding: 12px 16px; font-size: 15px; font-family: 'Inter',sans-serif; outline: none; transition: border-color 0.3s; resize: none; }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--coral); }
  .modal-buttons { display: flex; gap: 12px; margin-top: 24px; }
  .enquiry-btn { flex: 1; background: var(--coral); color: white; border: none; padding: 14px; border-radius: 12px; font-size: 15px; font-weight: 600; cursor: pointer; font-family: 'Inter',sans-serif; display: flex; align-items: center; justify-content: center; gap: 8px; transition: 0.3s; }
  .enquiry-btn:hover { background: #e55a28; }
  .enquiry-btn:disabled { opacity: 0.6; cursor: not-allowed; }
  .form-status { font-size: 14px; font-weight: 600; margin-top: 14px; min-height: 18px; text-align: center; }
  .form-status.success { color: #1ebe5d; }
  .form-status.error { color: #e02424; }
  .form-status.loading { color: var(--gray); }
  .call-btn { background: var(--navy); color: white; border: none; padding: 14px 20px; border-radius: 12px; font-size: 15px; font-weight: 600; cursor: pointer; font-family: 'Inter',sans-serif; display: flex; align-items: center; gap: 6px; transition: 0.3s; }
  .call-btn:hover { background: var(--coral); }

  /* ===== MOBILE NAV ===== */
  .mobile-nav {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--navy); z-index: 999; transform: translateX(-100%);
    transition: transform 0.4s ease; display: flex; flex-direction: column;
    padding: 100px 40px 40px;
  }
  .mobile-nav.open { transform: translateX(0); }
  .mobile-nav a { color: white; font-size: 24px; font-family: 'Playfair Display',serif; font-weight: 700; text-decoration: none; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.1); display: block; transition: color 0.3s; }
  .mobile-nav a:hover { color: var(--coral); }
  .mobile-nav .nav-cta { background: var(--coral); border-radius: 12px; text-align: center; margin-top: 24px; border: none; color: white !important; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .destinations-grid { grid-template-columns: repeat(2, 1fr); }
    .dest-card:first-child { grid-column: span 2; }
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .hero-image { width: 45%; }
    .hero-content { width: 50%; }
  }
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero { flex-direction: column; text-align: center; padding-top: 40px; }
    .hero-content { width: 100%; padding-top: 120px; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; gap: 30px; }
    .hero-image { position: relative; width: 90%; transform: none; top: auto; right: auto; margin: 40px auto 0; }
    .hero-card-float.card-1 { top: 10%; left: 0; }
    .hero-card-float.card-2 { bottom: 10%; right: 0; }
    .destinations-grid { grid-template-columns: 1fr 1fr; }
    .dest-card:first-child { grid-column: span 2; }
    .packages-grid { grid-template-columns: 1fr; }
    .why-us { grid-template-columns: 1fr; gap: 40px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .section-header-flex { flex-direction: column; gap: 12px; align-items: flex-start; }
    .cta-section { margin: 0 3%; padding: 60px 24px; }
  }
