
    :root {
      --purple: #a73dab;
      --blue: #0136b8;
      --purple-light: #c260c6;
      --blue-light: #1a56d6;
      --gold: #f0b429;
      --dark: #0d0f1a;
      --text-dark: #1a1c2e;
      --text-muted: #6b7280;
      --white: #ffffff;
      --bg-light: #f7f8fc;
      --gradient: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
      --gradient-soft: linear-gradient(135deg, rgba(167,61,171,0.08) 0%, rgba(1,54,184,0.08) 100%);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: 'Nunito', sans-serif;
      color: var(--text-dark);
      overflow-x: hidden;
    }

    h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; }

    /* ── TOP BAR ── */
    .topbar {
      background: var(--gradient);
      color: white;
      font-size: 0.82rem;
      font-weight: 600;
      padding: 7px 0;
    }
    .topbar a { color: white; text-decoration: none; }
    .topbar a:hover { color: var(--gold); }
    .topbar .divider { opacity: 0.4; margin: 0 10px; }

    /* ── NAVBAR ── */
    .main-nav {
      background: white;
      box-shadow: 0 2px 20px rgba(1,54,184,0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
      padding: 0;
    }
    .main-nav .nav-link {
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--text-dark) ;
      padding: 1.2rem 0.9rem;
      letter-spacing: 0.3px;
      transition: color 0.2s;
      position: relative;
    }a.navbar-brand img {
    width: 150px;
}
    .main-nav .nav-link::after {
content: '';
    position: absolute;
    bottom: 50%;
    left: 90%;
    right: 50%;
    height: 3px;
    border-radius: 3px 3px 0 0;
    transition: left 0.25s, right 0.25s;
    }

    .main-nav .nav-link:hover { color: var(--purple) !important; }
    .main-nav .dropdown-menu {
      border: none;
      box-shadow: 0 10px 40px rgba(1,54,184,0.15);
      border-radius: 14px;
      padding: 1rem;
      min-width: 260px;
    }
    .main-nav .dropdown-header {
      font-family: 'Playfair Display', serif;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--purple);
      font-style: italic;
      padding: 6px 12px 4px;
    }
    .main-nav .dropdown-item {
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--text-dark);
      border-radius: 8px;
      padding: 6px 12px;
      transition: all 0.2s;
    }
    .main-nav .dropdown-item:hover {
      background: var(--gradient-soft);
      color: var(--blue);
      padding-left: 18px;
    }
    .btn-quote {
      background: var(--gradient);
      color: white !important;
      border-radius: 30px;
      padding: 8px 22px !important;
      font-weight: 800;
      font-size: 0.85rem;
      letter-spacing: 0.5px;
      border: none;
      transition: all 0.3s;
      box-shadow: 0 4px 15px rgba(167,61,171,0.3);
          padding: 10px 10px !important;
    }
    .btn-quote:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(167,61,171,0.45);
    }

    /* ── HERO SLIDER ── */
    .hero-slider {
      position: relative;
      height: 92vh;
      min-height: 580px;
      overflow: hidden;
    }
    .slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1.2s ease;
    }
    .slide.active { opacity: 1; }
    .slide::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(1,10,40,0.75) 0%, rgba(1,10,40,0.3) 60%, transparent 100%);
    }
    .slide-1 { background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80'); }
    .slide-2 { background-image: url('https://images.unsplash.com/photo-1573843981267-be1999ff37cd?w=1600&q=80'); }
    .slide-3 { background-image: url('https://images.unsplash.com/photo-1544085311-11a028465b03?w=1600&q=80'); }
    .slide-4 { background-image: url('https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?w=1600&q=80'); }

    .hero-content {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-left: 6%;
      padding-right: 20%;
      z-index: 10;
    }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(167,61,171,0.25);
      border: 1px solid rgba(167,61,171,0.5);
      color: #e8b4ea;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 30px;
      width: fit-content;
      margin-bottom: 1.2rem;
      backdrop-filter: blur(10px);
    }
    .hero-title {
      font-size: clamp(2.5rem, 5vw, 4.2rem);
      color: white;
      line-height: 1.15;
      margin-bottom: 1rem;
      text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    }
    .hero-title em { color: var(--gold); }
    .hero-subtitle {
      color: rgba(255,255,255,0.82);
      font-size: 1.1rem;
      font-weight: 400;
      max-width: 520px;
      margin-bottom: 2rem;
      line-height: 1.7;
    }
    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-hero-primary {
      background: var(--gradient);
      color: white;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 800;
      font-size: 0.95rem;
      border: none;
      box-shadow: 0 6px 25px rgba(167,61,171,0.5);
      transition: all 0.3s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-hero-primary:hover { transform: translateY(-3px); color: white; box-shadow: 0 12px 35px rgba(167,61,171,0.6); }
    .btn-hero-outline {
      background: rgba(255,255,255,0.1);
      border: 2px solid rgba(255,255,255,0.7);
      color: white;
      padding: 13px 30px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.95rem;
      backdrop-filter: blur(10px);
      transition: all 0.3s;
      text-decoration: none;
    }
    .btn-hero-outline:hover { background: white; color: var(--blue); }

    /* Slider controls */
    .slider-dots {
      position: absolute;
      bottom: 30px;
      left: 6%;
      display: flex;
      gap: 8px;
      z-index: 20;
    }
    .dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.4);
      cursor: pointer;
      transition: all 0.3s;
      border: none;
    }
    .dot.active { width: 28px; border-radius: 4px; background: var(--gold); }
    .slider-arrows {
      position: absolute;
      right: 40px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 20;
    }
    .arrow-btn {
      width: 46px; height: 46px;
      border-radius: 50%;
      background: rgba(255,255,255,0.15);
      border: 2px solid rgba(255,255,255,0.5);
      color: white;
      font-size: 1.1rem;
      cursor: pointer;
      backdrop-filter: blur(10px);
      transition: all 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .arrow-btn:hover { background: var(--gradient); border-color: transparent; }

    /* ── SEARCH BOX ── */
    .search-section {
      margin-top: -55px;
      position: relative;
      z-index: 100;
      padding: 0 20px;
    }
    .search-card {
      background: white;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(1,54,184,0.18);
      padding: 28px 32px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .search-tabs {
      display: flex;
      gap: 6px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }
    .search-tab {
      padding: 8px 20px;
      border-radius: 25px;
      font-weight: 700;
      font-size: 0.85rem;
      cursor: pointer;
      border: 2px solid #e5e7eb;
      color: var(--text-muted);
      transition: all 0.25s;
      background: white;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .search-tab.active, .search-tab:hover {
      background: var(--gradient);
      color: white;
      border-color: transparent;
    }
    .search-field label {
      font-size: 0.78rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--text-muted);
      margin-bottom: 6px;
      display: block;
    }
    .search-field input, .search-field select {
      border: 2px solid #e5e7eb;
      border-radius: 12px;
      padding: 10px 14px;
      font-size: 0.92rem;
      font-family: 'Nunito', sans-serif;
      font-weight: 600;
      color: var(--text-dark);
      width: 100%;
      outline: none;
      transition: border-color 0.2s;
    }
    .search-field input:focus, .search-field select:focus { border-color: var(--purple); }
    .btn-search {
      background: var(--gradient);
      color: white;
      border: none;
      border-radius: 14px;
      padding: 12px 28px;
      font-weight: 800;
      font-size: 0.95rem;
      width: 100%;
      margin-top: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      cursor: pointer;
      transition: all 0.3s;
      box-shadow: 0 5px 20px rgba(167,61,171,0.35);
    }
    .btn-search:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(167,61,171,0.5); }

    /* ── SECTION COMMONS ── */
    section { padding: 80px 0; }
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gradient-soft);
      border-radius: 25px;
      padding: 6px 18px;
      font-size: 0.8rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--purple);
      margin-bottom: 12px;
    }
    .section-title {
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      color: var(--text-dark);
      line-height: 1.25;
      margin-bottom: 10px;
    }
    .section-title em { color: var(--purple); }
    .section-subtitle {
      color: var(--text-muted);
      font-size: 1rem;
      max-width: 520px;
      line-height: 1.7;
    }
    .divider-bar {
      width: 60px;
      height: 4px;
      border-radius: 4px;
      background: var(--gradient);
      margin: 14px 0 20px;
    }

    /* ── WHY US STATS ── */
    .stats-section { background: var(--gradient); padding: 55px 0; }
    .stat-item { text-align: center; color: white; padding: 15px; }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--gold);
      display: block;
    }
    .stat-label { font-size: 0.9rem; font-weight: 600; opacity: 0.88; margin-top: 4px; }

    /* ── DESTINATIONS ── */
    .destinations-section { background: var(--bg-light); }
    .dest-filters {
      display: flex;
      gap: 8px;
      margin-bottom: 36px;
      flex-wrap: wrap;
    }
    .dest-filter-btn {
      padding: 8px 22px;
      border-radius: 25px;
      font-weight: 700;
      font-size: 0.85rem;
      border: 2px solid #e0e4f0;
      color: var(--text-muted);
      background: white;
      cursor: pointer;
      transition: all 0.25s;
    }
    .dest-filter-btn.active, .dest-filter-btn:hover {
      background: var(--gradient);
      color: white;
      border-color: transparent;
      box-shadow: 0 4px 15px rgba(167,61,171,0.3);
    }
    .dest-card {
      border-radius: 18px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      transition: transform 0.35s, box-shadow 0.35s;
      box-shadow: 0 6px 25px rgba(1,54,184,0.12);
    }
    .dest-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(1,54,184,0.22); }
    .dest-card img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      display: block;
      transition: transform 0.5s;
    }
    .dest-card:hover img { transform: scale(1.08); }
    .dest-card-overlay {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(to top, rgba(1,10,40,0.88) 0%, transparent 100%);
      padding: 24px 18px 18px;
      color: white;
    }
    .dest-card-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; }
    .dest-card-meta { font-size: 0.8rem; opacity: 0.8; font-weight: 600; margin-top: 3px; }
    .dest-card-badge {
      position: absolute;
      top: 14px; right: 14px;
      background: var(--gold);
      color: #1a0a00;
      font-size: 0.72rem;
      font-weight: 800;
      padding: 4px 12px;
      border-radius: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .dest-card-from {
      font-size: 0.82rem;
      font-weight: 800;
      color: var(--gold);
      margin-top: 6px;
    }

    /* ── PACKAGES ── */
    .pkg-card {
      border-radius: 18px;
      overflow: hidden;
      background: white;
      box-shadow: 0 6px 25px rgba(1,54,184,0.1);
      transition: all 0.35s;
    }
    .pkg-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(1,54,184,0.2); }
    .pkg-card img {
      width: 100%;
      height: 210px;
      object-fit: cover;
      transition: transform 0.5s;
    }
    .pkg-card:hover img { transform: scale(1.06); }
    .pkg-card-img-wrap { overflow: hidden; position: relative; }
    .pkg-card-tag {
      position: absolute;
      top: 14px; left: 14px;
      background: var(--gradient);
      color: white;
      font-size: 0.72rem;
      font-weight: 800;
      padding: 4px 14px;
      border-radius: 20px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .pkg-card-body { padding: 18px; }
    .pkg-card-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 8px; color: var(--text-dark); }
    .pkg-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
    .pkg-meta span { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
    .pkg-meta span i { color: var(--purple); }
    .pkg-price-row { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 14px; border-top: 1px solid #f0f0f5; }
    .pkg-price { font-family: 'Playfair Display', serif; }
    .pkg-price .from { font-size: 0.75rem; color: var(--text-muted); font-family: 'Nunito', sans-serif; font-weight: 600; }
    .pkg-price .amount { font-size: 1.3rem; font-weight: 700; color: var(--blue); }
    .pkg-price .pp { font-size: 0.75rem; color: var(--text-muted); font-family: 'Nunito', sans-serif; }
    .btn-pkg {
      background: var(--gradient-soft);
      color: var(--purple);
      border: none;
      padding: 8px 18px;
      border-radius: 25px;
      font-size: 0.82rem;
      font-weight: 800;
      cursor: pointer;
      transition: all 0.25s;
    }
    .btn-pkg:hover { background: var(--gradient); color: white; }

    /* ── CTA BANNER ── */
    .cta-banner {
      background: var(--gradient);
      position: relative;
      overflow: hidden;
      padding: 80px 0;
    }
    .cta-banner::before {
      content: '';
      position: absolute;
      top: -50%; right: -10%;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: rgba(255,255,255,0.07);
    }
    .cta-banner::after {
      content: '';
      position: absolute;
      bottom: -30%; left: 5%;
      width: 350px; height: 350px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
    }
    .cta-title { font-size: clamp(1.8rem,3vw,2.8rem); color: white; }
    .cta-title em { color: var(--gold); }
    .cta-sub { color: rgba(255,255,255,0.82); font-size: 1rem; margin: 12px 0 30px; }
    .btn-cta-white {
      background: white;
      color: var(--purple);
      border: none;
      padding: 14px 36px;
      border-radius: 50px;
      font-weight: 800;
      font-size: 1rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s;
      box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }
    .btn-cta-white:hover { transform: translateY(-3px); color: var(--blue); box-shadow: 0 14px 35px rgba(0,0,0,0.25); }
    .btn-cta-outline {
      background: transparent;
      border: 2px solid rgba(255,255,255,0.7);
      color: white;
      padding: 13px 32px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.3s;
    }
    .btn-cta-outline:hover { background: rgba(255,255,255,0.15); color: white; }

    /* ── TESTIMONIALS ── */
    .testimonials-section { background: var(--bg-light); }
    .testi-card {
      background: white;
      border-radius: 18px;
      padding: 28px;
      box-shadow: 0 6px 25px rgba(1,54,184,0.1);
      transition: transform 0.3s;
      height: 100%;
    }
    .testi-card:hover { transform: translateY(-6px); }
    .testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; }
    .testi-text { font-size: 0.95rem; line-height: 1.75; color: var(--text-dark); font-style: italic; margin-bottom: 20px; }
    .testi-text::before { content: '\201C'; font-size: 2rem; color: var(--purple); line-height: 0; vertical-align: -12px; margin-right: 4px; font-family: 'Playfair Display', serif; }
    .testi-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 3px solid var(--purple); }
    .testi-name { font-weight: 800; font-size: 0.95rem; color: var(--text-dark); }
    .testi-dest { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; display: flex; align-items: center; gap: 4px; }
    .testi-dest i { color: var(--purple); }

    /* ── WHY CHOOSE US ── */
    .why-card {
      background: white;
      border-radius: 18px;
      padding: 28px 24px;
      box-shadow: 0 4px 20px rgba(1,54,184,0.08);
      transition: all 0.3s;
      text-align: center;
      height: 100%;
    }
    .why-card:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(167,61,171,0.18); }
    .why-icon {
      width: 70px; height: 70px;
      border-radius: 20px;
      background: var(--gradient-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin: 0 auto 18px;
      background: var(--gradient);
      color: white;
      transition: transform 0.3s;
    }
    .why-card:hover .why-icon { transform: rotateY(15deg) scale(1.1); }
    .why-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 10px; }
    .why-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

    /* ── BLOG ── */
    .blog-card {
      background: white;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 6px 25px rgba(1,54,184,0.1);
      transition: all 0.35s;
    }
    .blog-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(1,54,184,0.18); }
    .blog-card-img-wrap { overflow: hidden; position: relative; }
    .blog-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform 0.5s;
    }
    .blog-card:hover img { transform: scale(1.08); }
    .blog-cat {
      position: absolute;
      top: 14px; left: 14px;
      background: var(--gradient);
      color: white;
      font-size: 0.72rem;
      font-weight: 800;
      padding: 4px 14px;
      border-radius: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .blog-body { padding: 20px; }
    .blog-date { font-size: 0.78rem; color: var(--text-muted); font-weight: 700; display: flex; align-items: center; gap: 5px; margin-bottom: 8px; }
    .blog-date i { color: var(--purple); }
    .blog-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--text-dark); margin-bottom: 10px; line-height: 1.4; }
    .blog-excerpt { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
    .blog-read-more { font-size: 0.84rem; font-weight: 800; color: var(--purple); text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s; }
    .blog-read-more:hover { gap: 10px; color: var(--blue); }

    /* ── CONTACT ── */
    .contact-section { background: white; }
    .contact-card {
      background: var(--gradient);
      border-radius: 24px;
      padding: 50px 40px;
      color: white;
      height: 100%;
    }
    .contact-card h3 { font-size: 1.7rem; margin-bottom: 10px; }
    .contact-card p { opacity: 0.85; margin-bottom: 28px; }
    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 20px;
      background: rgba(255,255,255,0.12);
      border-radius: 14px;
      padding: 14px 18px;
    }
    .contact-info-icon {
      width: 42px; height: 42px;
      background: rgba(255,255,255,0.2);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }
    .contact-info-label { font-size: 0.78rem; opacity: 0.7; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
    .contact-info-val { font-weight: 700; font-size: 0.95rem; margin-top: 2px; }
    .contact-form-card {
      background: white;
      border-radius: 24px;
      padding: 40px;
      box-shadow: 0 10px 40px rgba(1,54,184,0.12);
      height: 100%;
    }
    .form-label { font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 6px; }
    .form-control, .form-select {
      border: 2px solid #e5e7eb;
      border-radius: 12px;
      padding: 10px 14px;
      font-family: 'Nunito', sans-serif;
      font-weight: 600;
      font-size: 0.92rem;
      transition: border-color 0.2s;
    }
    .form-control:focus, .form-select:focus {
      border-color: var(--purple);
      box-shadow: 0 0 0 3px rgba(167,61,171,0.1);
    }
    .btn-form-submit {
      background: var(--gradient);
      color: white;
      border: none;
      border-radius: 12px;
      padding: 13px 30px;
      font-weight: 800;
      font-size: 0.95rem;
      width: 100%;
      cursor: pointer;
      transition: all 0.3s;
      box-shadow: 0 5px 20px rgba(167,61,171,0.35);
    }
    .btn-form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(167,61,171,0.5); }

    /* ── FOOTER ── */
    footer {
      background: var(--dark);
      color: rgba(255,255,255,0.75);
      padding: 70px 0 0;
    }
    .footer-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 700;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .footer-desc { font-size: 0.88rem; line-height: 1.7; margin: 14px 0 20px; }
    .social-links { display: flex; gap: 10px; }
    .social-link {
      width: 38px; height: 38px;
      border-radius: 10px;
      background: rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.7);
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.25s;
    }
    .social-link:hover { background: var(--gradient); color: white; transform: translateY(-3px); }
    .footer-col-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: white;
      margin-bottom: 18px;
      position: relative;
      padding-bottom: 10px;
    }
    .footer-col-title::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 36px; height: 3px;
      background: var(--gradient);
      border-radius: 3px;
    }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 9px; }
    .footer-links a {
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      font-size: 0.87rem;
      font-weight: 600;
      transition: all 0.2s;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .footer-links a:hover { color: var(--purple-light); padding-left: 5px; }
    .footer-links a i { font-size: 0.7rem; color: var(--purple-light); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 20px 0;
      margin-top: 50px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 0.83rem;
    }
    .footer-bottom a { color: var(--purple-light); text-decoration: none; }

    /* ── SCROLL TO TOP ── */
    .scroll-top {
      position: fixed;
      bottom: 30px; right: 30px;
      width: 46px; height: 46px;
      border-radius: 50%;
      background: var(--gradient);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      cursor: pointer;
      box-shadow: 0 5px 20px rgba(167,61,171,0.45);
      text-decoration: none;
      transition: all 0.3s;
      opacity: 0;
      visibility: hidden;
      z-index: 999;
    }
    .scroll-top.visible { opacity: 1; visibility: visible; }
    .scroll-top:hover { transform: translateY(-4px); color: white; }

    /* ── ANIMATIONS ── */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .hero-content > * {
      animation: fadeInUp 0.8s ease both;
    }
    .hero-content > *:nth-child(1) { animation-delay: 0.2s; }
    .hero-content > *:nth-child(2) { animation-delay: 0.4s; }
    .hero-content > *:nth-child(3) { animation-delay: 0.6s; }
    .hero-content > *:nth-child(4) { animation-delay: 0.8s; }

    /* Responsive */
    @media (max-width: 768px) {
      .hero-content { padding-left: 5%; padding-right: 10%; }
      .contact-card { padding: 32px 24px; }
      .contact-form-card { padding: 28px 20px; margin-top: 20px; }
      section { padding: 55px 0; }
    }/* SWIPER */
.destination-swiper {
  padding-bottom: 60px;
}

/* PAGINATION */
.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #d1d1d1;
  opacity: 1;
  transition: 0.3s;
}

.swiper-pagination-bullet-active {
  width: 34px;
  border-radius: 30px;
  background: #a73dab;
}

    /* ─── HERO ─── */
    .pkg-hero {
      position: relative;
      height: 88vh; min-height: 560px;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      transform: scale(1.04);
      animation: heroZoom 14s ease infinite alternate;
    }
    @keyframes heroZoom {
      from { transform: scale(1.04); }
      to   { transform: scale(1.0); }
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(120deg, rgba(1,10,40,0.82) 0%, rgba(1,10,40,0.45) 55%, rgba(167,61,171,0.18) 100%);
    }
    .hero-content {
      position: relative; z-index: 2;
      height: 100%;
      display: flex; flex-direction: column;
      justify-content: flex-end;
      padding: 0 5% 70px;
    }
    .breadcrumb-pkg { margin-bottom: 14px; }
    .breadcrumb-pkg a, .breadcrumb-pkg span {
      font-size: 0.82rem; font-weight: 700;
      color: rgba(255,255,255,0.65);
      text-decoration: none; letter-spacing: 0.5px;
    }
    .breadcrumb-pkg a:hover { color: var(--gold); }
    .breadcrumb-pkg .sep { margin: 0 8px; opacity: 0.4; }
    .breadcrumb-pkg .current { color: var(--gold); }

    .hero-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
    .hero-tag-pill {
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.25);
      color: white; font-size: 0.78rem; font-weight: 700;
      padding: 5px 14px; border-radius: 20px;
      backdrop-filter: blur(8px);
      display: flex; align-items: center; gap: 5px;
    }
    .hero-tag-pill.hot { background: rgba(167,61,171,0.35); border-color: rgba(167,61,171,0.6); }
    .hero-tag-pill.gold { background: rgba(240,180,41,0.25); border-color: rgba(240,180,41,0.5); color: var(--gold); }

    .hero-meta-row {
      display: flex; gap: 24px; flex-wrap: wrap; align-items: center;
      margin-bottom: 28px;
    }
    .hero-meta-item {
      display: flex; align-items: center; gap: 8px;
      color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 700;
    }
    .hero-meta-item i { color: var(--gold); font-size: 1rem; }
    .hero-meta-item .rating-stars { color: var(--gold); letter-spacing: 1px; }

    .hero-action-row { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn-hero-book {
      background: var(--gradient); color: white;
      padding: 14px 36px; border-radius: 50px;
      font-weight: 900; font-size: 1rem; border: none;
      box-shadow: 0 8px 30px rgba(167,61,171,0.55);
      transition: all 0.3s; text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-hero-book:hover { transform: translateY(-4px); color: white; box-shadow: 0 14px 40px rgba(167,61,171,0.65); }
    .btn-hero-wishlist {
      background: rgba(255,255,255,0.12);
      border: 2px solid rgba(255,255,255,0.55);
      color: white; padding: 13px 26px; border-radius: 50px;
      font-weight: 700; font-size: 0.95rem;
      backdrop-filter: blur(8px); transition: all 0.3s;
      display: inline-flex; align-items: center; gap: 8px;
      cursor: pointer;
    }
    .btn-hero-wishlist:hover { background: rgba(255,255,255,0.22); }

    /* Floating price card */
    .hero-price-float {
      position: absolute; top: 50%; right: 5%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 22px; padding: 28px 26px;
      min-width: 220px; z-index: 3;
      text-align: center; color: white;
    }
    .float-from { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; opacity: 0.7; margin-bottom: 4px; }
    .float-price { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 900; color: var(--gold); line-height: 1; }
    .float-pp { font-size: 0.78rem; opacity: 0.7; font-weight: 700; margin-bottom: 14px; }
    .float-old { font-size: 0.9rem; text-decoration: line-through; opacity: 0.5; margin-bottom: 4px; }
    .float-save { background: rgba(240,180,41,0.2); border: 1px solid rgba(240,180,41,0.4); border-radius: 8px; padding: 5px 12px; font-size: 0.8rem; font-weight: 800; color: var(--gold); display: inline-block; margin-bottom: 16px; }
    .float-btn {
      display: block; background: var(--gradient); color: white;
      padding: 11px 20px; border-radius: 12px; text-align: center;
      font-weight: 800; font-size: 0.9rem; text-decoration: none;
      transition: all 0.3s; box-shadow: 0 5px 20px rgba(167,61,171,0.4);
      margin-bottom: 10px;
    }
    .float-btn:hover { transform: translateY(-2px); color: white; box-shadow: 0 10px 30px rgba(167,61,171,0.55); }
    .float-call { font-size: 0.78rem; opacity: 0.75; display: flex; align-items: center; justify-content: center; gap: 5px; }

    /* ─── STICKY QUICK NAV ─── */
    .quick-nav {
      background: white;
      box-shadow: 0 3px 20px rgba(1,54,184,0.1);
      position: sticky; top: 68px; z-index: 900;
      border-bottom: 1px solid #eee;
    }
    .quick-nav .nav-link {
      font-size: 0.85rem; font-weight: 800;
      color: var(--text-muted) !important;
      padding: 14px 18px !important;
      letter-spacing: 0.5px; text-transform: uppercase;
      border-bottom: 3px solid transparent;
      transition: all 0.2s;
    }
    .quick-nav .nav-link:hover,
    .quick-nav .nav-link.active {
      color: var(--purple) !important;
      border-bottom-color: var(--purple);
    }

    /* ─── MAIN LAYOUT ─── */
    .pkg-main { padding: 55px 0 80px; background: var(--bg-light); }
    .pkg-content { /* left col */ }

    /* ─── GALLERY ─── */
    .gallery-section { margin-bottom: 36px; }
    .gallery-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: 240px 240px;
      gap: 10px; border-radius: 20px; overflow: hidden;
    }
    .gallery-grid .g-main { grid-row: 1 / 3; }
    .gallery-img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.5s, filter 0.3s;
      cursor: pointer;
    }
    .gallery-img:hover { transform: scale(1.05); filter: brightness(1.05); }
    .gallery-more-wrap { position: relative; overflow: hidden; }
    .gallery-more-overlay {
      position: absolute; inset: 0;
      background: rgba(1,10,40,0.65);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: background 0.3s;
    }
    .gallery-more-overlay:hover { background: rgba(167,61,171,0.6); }
    .gallery-more-text { color: white; font-weight: 900; font-size: 1.5rem; font-family: 'Playfair Display', serif; }
    .gallery-more-text span { font-size: 0.8rem; display: block; opacity: 0.8; font-family: 'Nunito', sans-serif; font-weight: 700; }

    /* ─── INFO CARD ─── */
    .info-card {
      background: white; border-radius: 20px;
      padding: 28px 28px; margin-bottom: 24px;
      box-shadow: 0 4px 20px rgba(1,54,184,0.08);
    }
    .info-card-title {
      font-size: 1.35rem; font-weight: 700;
      color: var(--text-dark); margin-bottom: 18px;
      padding-bottom: 14px;
      border-bottom: 2px solid var(--bg-light);
      display: flex; align-items: center; gap: 10px;
    }
    .info-card-title i { color: var(--purple); font-size: 1.3rem; }
    .divider-bar { width: 50px; height: 4px; background: var(--gradient); border-radius: 4px; margin: 8px 0 18px; }

    /* Highlights */
    .highlight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .highlight-item {
      background: var(--gradient-soft);
      border-radius: 14px; padding: 16px;
      display: flex; align-items: flex-start; gap: 12px;
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .highlight-item:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(167,61,171,0.15); }
    .highlight-icon {
      width: 44px; height: 44px; border-radius: 12px;
      background: var(--gradient); color: white;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; flex-shrink: 0;
    }
    .highlight-text h6 { font-family: 'Playfair Display', serif; font-size: 0.95rem; margin-bottom: 3px; }
    .highlight-text p { font-size: 0.8rem; color: var(--text-muted); margin: 0; font-weight: 600; line-height: 1.4; }

    /* Overview */
    .overview-text { font-size: 0.96rem; color: #3b3f5c; line-height: 1.85; font-weight: 400; }
    .overview-text strong { color: var(--purple); }

    /* Quick Facts */
    .quick-facts { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
    .fact-item {
      background: var(--gradient-soft);
      border-radius: 14px; padding: 16px 14px;
      text-align: center;
    }
    .fact-icon { font-size: 1.6rem; margin-bottom: 8px; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .fact-val { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--text-dark); display: block; }
    .fact-key { font-size: 0.75rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

    /* Itinerary */
    .itinerary-day {
      border-left: 3px solid transparent;
      border-image: var(--gradient) 1;
      border-radius: 0; margin-bottom: 6px;
    }
    .itin-toggle {
      background: var(--gradient-soft);
      border: none; border-radius: 14px;
      width: 100%; text-align: left;
      padding: 16px 20px;
      display: flex; align-items: center; gap: 14px;
      cursor: pointer; transition: all 0.25s;
      margin-bottom: 4px;
    }
    .itin-toggle:hover { background: rgba(167,61,171,0.12); }
    .itin-toggle.open { background: var(--gradient); }
    .itin-toggle.open * { color: white !important; }
    .day-badge {
      background: var(--gradient); color: white;
      font-size: 0.72rem; font-weight: 900;
      padding: 4px 12px; border-radius: 20px;
      text-transform: uppercase; letter-spacing: 1px;
      flex-shrink: 0; white-space: nowrap;
    }
    .itin-toggle.open .day-badge { background: rgba(255,255,255,0.2); }
    .day-title { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--text-dark); flex: 1; }
    .day-loc { font-size: 0.78rem; color: var(--text-muted); font-weight: 700; }
    .itin-toggle .chevron { font-size: 0.85rem; color: var(--text-muted); transition: transform 0.3s; flex-shrink: 0; }
    .itin-toggle.open .chevron { transform: rotate(180deg); }
    .itin-body {
      background: white; border-radius: 14px;
      padding: 0 20px; max-height: 0; overflow: hidden;
      transition: max-height 0.45s ease, padding 0.3s;
      box-shadow: 0 3px 15px rgba(1,54,184,0.07);
    }
    .itin-body.open { max-height: 600px; padding: 20px; margin-bottom: 8px; }
    .itin-body p { font-size: 0.9rem; line-height: 1.8; color: #3b3f5c; margin-bottom: 14px; }
    .itin-chips { display: flex; gap: 8px; flex-wrap: wrap; }
    .itin-chip {
      background: var(--gradient-soft); border-radius: 20px;
      padding: 4px 14px; font-size: 0.78rem; font-weight: 700;
      color: var(--blue); display: flex; align-items: center; gap: 5px;
    }
    .itin-chip i { color: var(--purple); font-size: 0.8rem; }

    /* Includes/Excludes */
    .inc-exc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .inc-list, .exc-list { list-style: none; }
    .inc-list li, .exc-list li {
      display: flex; align-items: flex-start; gap: 10px;
      padding: 8px 0; font-size: 0.88rem; font-weight: 600;
      color: #3b3f5c; border-bottom: 1px dashed #eee;
    }
    .inc-list li:last-child, .exc-list li:last-child { border: none; }
    .inc-list li i { color: #22c55e; font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
    .exc-list li i { color: #ef4444; font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

    /* Photo Gallery Modal */
    .section-tag {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--gradient-soft); border-radius: 25px;
      padding: 6px 18px; font-size: 0.8rem; font-weight: 800;
      text-transform: uppercase; letter-spacing: 2px; color: var(--purple);
      margin-bottom: 12px;
    }

    /* ─── SIDEBAR ─── */
    .sidebar { position: sticky; top: 120px; }

    /* Booking Card */
    .booking-card {
      background: white; border-radius: 22px;
      box-shadow: 0 10px 45px rgba(1,54,184,0.14);
      overflow: hidden; margin-bottom: 20px;
    }
    .booking-card-header {
      background: var(--gradient); padding: 22px 24px; color: white;
    }
    .booking-card-header .price-from { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; opacity: 0.8; }
    .booking-card-header .price-big { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 900; color: var(--gold); line-height: 1; }
    .booking-card-header .price-pp { font-size: 0.82rem; opacity: 0.75; font-weight: 700; }
    .booking-card-header .price-old { font-size: 0.9rem; text-decoration: line-through; opacity: 0.55; }
    .booking-card-header .save-badge { background: rgba(240,180,41,0.25); border: 1px solid rgba(240,180,41,0.5); border-radius: 8px; padding: 4px 12px; font-size: 0.78rem; font-weight: 800; color: var(--gold); }
    .booking-card-body { padding: 22px 24px; }
    .form-label-sm { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 5px; display: block; }
    .form-control-pkg, .form-select-pkg {
      border: 2px solid #e5e7eb; border-radius: 12px;
      padding: 10px 14px; font-size: 0.9rem;
      font-family: 'Nunito', sans-serif; font-weight: 600;
      color: var(--text-dark); width: 100%;
      outline: none; transition: border-color 0.2s;
      background: white;
    }
    .form-control-pkg:focus, .form-select-pkg:focus { border-color: var(--purple); }
    .btn-book-now {
      display: block; width: 100%;
      background: var(--gradient); color: white; border: none;
      padding: 15px; border-radius: 14px;
      font-weight: 900; font-size: 1.05rem;
      cursor: pointer; transition: all 0.3s;
      box-shadow: 0 6px 25px rgba(167,61,171,0.4);
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }
    .btn-book-now:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(167,61,171,0.55); }
    .btn-enquire {
      display: block; width: 100%;
      background: var(--gradient-soft); color: var(--purple); border: none;
      padding: 12px; border-radius: 14px;
      font-weight: 800; font-size: 0.95rem;
      cursor: pointer; transition: all 0.3s; margin-top: 10px;
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }
    .btn-enquire:hover { background: var(--gradient); color: white; }
    .booking-footer { padding: 14px 24px; background: var(--bg-light); display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-muted); font-weight: 700; }
    .booking-footer i { color: #22c55e; }

    /* Sidebar Info Box */
    .sidebar-info-box {
      background: white; border-radius: 18px; padding: 22px;
      box-shadow: 0 4px 18px rgba(1,54,184,0.08); margin-bottom: 18px;
    }
    .sidebar-info-box h6 { font-size: 1rem; margin-bottom: 14px; color: var(--text-dark); }
    .sidebar-info-box h6 i { color: var(--purple); margin-right: 6px; }
    .contact-btn-row { display: flex; gap: 10px; }
    .btn-call, .btn-wa {
      flex: 1; padding: 10px 8px; border-radius: 12px;
      font-weight: 800; font-size: 0.82rem; border: none;
      cursor: pointer; transition: all 0.25s;
      display: flex; align-items: center; justify-content: center; gap: 6px;
    }
    .btn-call { background: var(--gradient-soft); color: var(--blue); }
    .btn-call:hover { background: var(--gradient); color: white; }
    .btn-wa { background: rgba(34,197,94,0.1); color: #15803d; }
    .btn-wa:hover { background: #22c55e; color: white; }

    /* Similar packages */
    .similar-pkg-card {
      background: white; border-radius: 14px; overflow: hidden;
      display: flex; gap: 14px; padding: 12px;
      box-shadow: 0 3px 15px rgba(1,54,184,0.07);
      transition: all 0.3s; align-items: center; margin-bottom: 12px;
    }
    .similar-pkg-card:hover { transform: translateX(4px); box-shadow: 0 6px 25px rgba(1,54,184,0.13); }
    .similar-pkg-img { width: 80px; height: 70px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
    .similar-pkg-info h6 { font-family: 'Playfair Display', serif; font-size: 0.92rem; margin-bottom: 3px; }
    .similar-pkg-info .meta { font-size: 0.75rem; color: var(--text-muted); font-weight: 700; }
    .similar-pkg-info .price { font-weight: 800; font-size: 0.9rem; color: var(--purple); margin-top: 4px; }

    /* ─── REVIEWS ─── */
    .reviews-section { background: white; }
    .review-card {
      background: var(--bg-light); border-radius: 18px; padding: 24px;
      transition: transform 0.3s; height: 100%;
    }
    .review-card:hover { transform: translateY(-5px); }
    .review-stars { color: var(--gold); margin-bottom: 12px; font-size: 0.95rem; }
    .review-text { font-size: 0.9rem; color: #3b3f5c; line-height: 1.75; font-style: italic; margin-bottom: 18px; }
    .review-text::before { content: '\201C'; font-size: 2rem; color: var(--purple); line-height: 0; vertical-align: -12px; font-family: 'Playfair Display', serif; }
    .review-avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 3px solid var(--purple); }
    .review-name { font-weight: 800; font-size: 0.92rem; }
    .review-trip { font-size: 0.76rem; color: var(--text-muted); font-weight: 700; display: flex; align-items: center; gap: 4px; }
    .review-trip i { color: var(--purple); }

    /* Overall rating block */
    .rating-overview {
      background: var(--gradient); border-radius: 18px; padding: 28px;
      color: white; text-align: center; margin-bottom: 28px;
    }
    .rating-big { font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 900; color: var(--gold); line-height: 1; }
    .rating-out { font-size: 1rem; opacity: 0.75; font-weight: 700; }
    .rating-count { font-size: 0.85rem; opacity: 0.75; margin-top: 6px; font-weight: 700; }
    .rating-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
    .rating-bar-label { font-size: 0.8rem; font-weight: 700; width: 55px; text-align: right; }
    .rating-bar { flex: 1; height: 8px; background: rgba(255,255,255,0.2); border-radius: 4px; overflow: hidden; }
    .rating-bar-fill { height: 100%; border-radius: 4px; background: var(--gold); }
    .rating-bar-val { font-size: 0.78rem; font-weight: 800; width: 25px; color: var(--gold); }

    /* ─── FOOTER ─── */
    footer { background: var(--dark); color: rgba(255,255,255,0.75); padding: 60px 0 0; }
    .footer-brand { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .footer-col-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: white; margin-bottom: 14px; padding-bottom: 10px; position: relative; }
    .footer-col-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 36px; height: 3px; background: var(--gradient); border-radius: 3px; }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 8px; }
    .footer-links a { color: rgba(255,255,255,0.6); font-size: 0.85rem; font-weight: 600; text-decoration: none; transition: all 0.2s; }
    .footer-links a:hover { color: var(--purple-light); padding-left: 5px; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; margin-top: 50px; font-size: 0.82rem; }
    .social-link { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); text-decoration: none; transition: all 0.25s; font-size: 0.95rem; }
    .social-link:hover { background: var(--gradient); color: white; transform: translateY(-3px); }

    /* Scroll top */
    .scroll-top { position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px; border-radius: 50%; background: var(--gradient); color: white; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 5px 20px rgba(167,61,171,0.45); transition: all 0.3s; opacity: 0; visibility: hidden; z-index: 999; }
    .scroll-top.visible { opacity: 1; visibility: visible; }
    .scroll-top:hover { transform: translateY(-4px); color: white; }

    /* Animations */
    @keyframes fadeInUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
    .anim-up { animation: fadeInUp 0.7s ease both; }
    .anim-up-1 { animation-delay: 0.1s; }
    .anim-up-2 { animation-delay: 0.25s; }
    .anim-up-3 { animation-delay: 0.4s; }
    .anim-up-4 { animation-delay: 0.55s; }

    /* Responsive */
    @media (max-width: 991px) {
      .hero-price-float { display: none; }
      .inc-exc-grid { grid-template-columns: 1fr; }
      .quick-facts { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .gallery-grid .g-main { grid-row: auto; grid-column: 1 / 3; height: 220px; }
      .highlight-grid { grid-template-columns: 1fr; }
    }

