:root {
    --navy: #0a1628;
    --gold: #f96716;
    --gold-light: #e8c97a;
    --cream: #f9f4ec;
    --white: #ffffff;
    --grey: #8a8fa0;
    --accent: #1a6b8a;
    --border: #e5ddd0;
    --hot: #e84040;
    --green: #27ae60;
    --gold-lt:   #E8B860;
    --gold-pale: rgba(200,151,58,0.12);
    --gold-rim:  rgba(200,151,58,0.30);
    --ink:       #060e1b;
    --ink-deep:  #030a12;
    --ink-mid:   #0c1829;
    --w60: rgba(255,255,255,0.60);
    --w40: rgba(255,255,255,0.40);
    --w20: rgba(255,255,255,0.20);
    --w10: rgba(255,255,255,0.10);
    --w06: rgba(255,255,255,0.06);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--navy); overflow-x: hidden; }

/* ─── FLASH MESSAGE ───────────────────────────────────────────── */
.flash-success {
    position: fixed; top: 20px; right: 20px; z-index: 9999;
    background: #27ae60; color: white;
    padding: 14px 22px; border-radius: 8px;
    font-size: 0.9rem; font-weight: 600;
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
    animation: fadeUp 0.4s ease;
}

/* ─── HERO ────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
    background: #000;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}

/* ── Hero top bar ─────────────────────────────────────────────── */
.hero-topbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
}

/* Keep your contact+logo stacked on the right, as before */
.hero-topbar-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}
.hero-contact-bar {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 7px 14px;
    border-radius: 50px;
    backdrop-filter: blur(6px);
    transition: background 0.2s, border-color 0.2s;
}

.hero-contact-link:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}

.hero-wa-link i {
    color: #25D366;
    font-size: 15px;
}

/* ─── HERO VIDEO ──────────────────────────────────────────────── */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.7) contrast(1.1);
}

/* ─── HERO CONTENT ────────────────────────────────────────────── */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 120px 60px 80px;
}

.hero-label {
    display: inline-block;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 em {
    color: var(--gold);
    font-style: normal;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    max-width: 550px;
    line-height: 1.8;
    margin-bottom: 40px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ─── LOGO ANIMATIONS ─────────────────────────────────────────── */
@keyframes logoFloat {
    0%   { transform: translateY(0px) rotate(0deg); }
    50%  { transform: translateY(-10px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes shimmer {
    0%   { left: -150%; }
    100% { left: 150%; }
}

/* ─── LOGO — default (standalone, not in topbar) ─────────────── */
.nav-logo {
    position: static;
    top: 40px !important;
    right: 60px !important;
    z-index: 10;
    display: block;
    overflow: hidden;
    border-radius: 18px;
    flex-shrink: 0;
    animation: logoFloat 5s ease-in-out infinite;
}

.nav-logo img {
    height: 210px;
    width: auto;
    display: block;
    border-radius: 18px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(201, 168, 76, 0.2);
}

.nav-logo::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 80px;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    left: -150%;
    pointer-events: none;
}

.nav-logo:hover {
    animation-play-state: paused;
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    border-color: var(--gold-light);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* ─── LOGO — inside topbar overrides ─────────────────────────── */
/*.hero-topbar .nav-logo {*/
/*    position: static;*/
/*    animation: none;       */
/*    border-radius: 12px;*/
/*    overflow: hidden;*/
/*}*/

/*.hero-topbar .nav-logo img {*/
/*    height: 60px;           */
/*    width: auto;*/
/*    display: block;*/
/*    border-radius: 12px;*/
/*    box-shadow: none;*/
/*}*/

.hero-topbar .nav-logo:hover {
    transform: scale(1.03);
}

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(201, 168, 76, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 16px 36px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* ─── HERO STATS ──────────────────────────────────────────────── */
.hero-stats {
    position: absolute;
    right: -700px;
    bottom: -200px;
    display: flex;
    gap: 40px;
}

.stat { text-align: center; }

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
}

.stat-label {
    font-size: 0.90rem;
    font-weight: 500;
    color: rgba(10, 10, 10, 0.911);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ─── MOBILE ──────────────────────────────────────────────────── */
@media (max-width: 600px) {
    .hero-topbar {
        padding: 12px 18px;
        min-height: 64px;
    }

    .hero-topbar .nav-logo img {
        height: 44px;
    }

    .hero-contact-link {
        font-size: 12px;
        padding: 6px 10px;
        gap: 5px;
    }

    .hero-contact-link .link-text {
        display: none;   /* icon-only on small screens */
    }

    .hero-content {
        padding: 100px 24px 60px;
    }
}
  /* ─── SEARCH BAR ─────────────────────────────────────────────── */
  .search-section { background: var(--white); box-shadow: 0 8px 40px rgba(0,0,0,0.1); padding: 30px 60px; position: relative; z-index: 10; }
  .search-bar {
    display: flex; border: 1.5px solid #ddd; border-radius: 8px;
    overflow: hidden; max-width: 960px; margin: 0 auto; transition: box-shadow 0.2s;
  }
  .search-bar:focus-within { box-shadow: 0 0 0 3px rgba(201,168,76,0.25); border-color: var(--gold); }
  .search-field {
    flex: 1; display: flex; flex-direction: column; padding: 14px 20px;
    border-right: 1px solid #eee; cursor: pointer;
  }
  .search-field:last-of-type { border-right: none; }
  .search-field label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--grey); margin-bottom: 4px; }
  .search-field input, .search-field select {
    border: none; outline: none; font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem; font-weight: 500; color: var(--navy); background: transparent; width: 100%;
  }
  .search-btn {
    background: var(--gold); color: var(--navy); border: none;
    padding: 0 32px; font-weight: 600; font-size: 0.9rem; cursor: pointer;
    text-transform: uppercase; letter-spacing: 0.5px; transition: background 0.2s; white-space: nowrap;
  }
  .search-btn:hover { background: var(--gold-light); }
  .search-count { text-align: center; margin-top: 14px; font-size: 0.82rem; color: var(--grey); }
  
  /* ─── TABS ────────────────────────────────────────────────────── */
  .tabs-section { padding: 40px 60px 0; }
  .section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 28px; }
  .section-header h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--navy); }
  .section-header h2 span { color: var(--gold); }
  .view-all {
    font-size: 0.85rem; color: var(--accent); font-weight: 600;
    text-decoration: none; letter-spacing: 0.5px;
    border-bottom: 1px solid var(--accent); padding-bottom: 2px;
  }
  .tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
  .tab {
    padding: 9px 22px; border-radius: 25px; border: 1.5px solid #ddd;
    background: transparent; font-size: 0.85rem; font-weight: 500;
    cursor: pointer; color: var(--navy); transition: all 0.2s; font-family: 'DM Sans', sans-serif;
  }
  .tab:hover { border-color: var(--gold); color: var(--gold); }
  .tab.active { background: var(--navy); color: var(--gold); border-color: var(--navy); }
  
  /* ─── PACKAGES GRID ──────────────────────────────────────────── */
  .packages-section { padding: 0 60px 60px; }
  .packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .no-results { grid-column: 1 / -1; text-align: center; padding: 80px 20px; display: none; }
  .no-results.visible { display: block; }
  .no-results-icon { font-size: 3rem; margin-bottom: 16px; }
  .no-results h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--navy); margin-bottom: 8px; }
  .no-results p { color: var(--grey); font-size: 0.9rem; }
  
  .package-card {
    background: var(--white); border-radius: 12px; overflow: hidden; display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.25s, box-shadow 0.25s; cursor: pointer;
  }
  .package-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.13); }
  .package-card.hidden { display: none; }
  .card-img { height: 250px; position: relative; overflow: hidden; }
  .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
  .package-card:hover .card-img img { transform: scale(1.06); }
  .card-badge {
    position: absolute; top: 14px; left: 14px; background: var(--gold);
    color: var(--navy); font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; padding: 4px 12px; border-radius: 3px;
  }
  .card-badge.hot { background: #e84040; color: white; }
  .card-badge.new { background: #27ae60; color: white; }
  .card-badge.sale { background: #7c3aed; color: white; }
  .card-fav {
    position: absolute; top: 14px; right: 14px; width: 34px; height: 34px;
    background: rgba(255,255,255,0.9); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; cursor: pointer; transition: background 0.2s;
  }
  .card-fav:hover { background: white; }
  .card-rating {
    position: absolute; bottom: 12px; right: 12px;
    background: rgba(10,22,40,0.8); backdrop-filter: blur(4px);
    color: var(--gold); font-size: 0.72rem; font-weight: 700; padding: 3px 9px; border-radius: 20px;
  }
  .card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
  .card-destination { font-size: 0.72rem; font-weight: 600; color: var(--grey); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; }
  .card-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
  .card-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 14px; }
  .meta-item { display: flex; align-items: center; gap: 5px; font-size: 0.8rem; color: var(--grey); }
  .card-includes { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
  .include-tag { background: var(--cream); color: var(--navy); font-size: 0.7rem; font-weight: 500; padding: 3px 10px; border-radius: 20px; border: 1px solid #e5ddd0; }
  .card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f0ebe3;
    padding-top: 14px;
    margin-top: auto; /* 🔥 THIS IS THE MAGIC */
}
  .price-from { font-size: 0.7rem; color: var(--grey); }
  .price-val { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--navy); }
  .price-val sup { font-size: 0.8rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }
  .price-pp { font-size: 0.7rem; color: var(--grey); }
  .book-btn {
    background: var(--navy); color: white; border: none; padding: 9px 20px;
    border-radius: 5px; font-size: 0.82rem; font-weight: 600; cursor: pointer;
    transition: all 0.2s; font-family: 'DM Sans', sans-serif; display: inline-block;
  }
  .modern-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.25s ease;
    cursor: default;
}

.badge-item i {
    font-size: 13px;
}

/* 🎨 Color Variants */

.flight-badge {
    background: #e7f1ff;
    color: #0d6efd;
}

.hotel-badge {
    background: #f3e8ff;
    color: #7b2cbf;
}

.meal-badge {
    background: #fff4e6;
    color: #ff8500;
}

.transfer-badge {
    background: #e6f7f1;
    color: #00a884;
}

.tour-badge {
    background: #e6f0ff;
    color: #3a86ff;
}

.safari-badge {
    background: #fdf3e7;
    color: #d97706;
}

.cruise-badge {
    background: #e0f7fa;
    color: #00838f;
}

.visa-badge {
    background: #fce7f3;
    color: #db2777;
}

.tax-badge {
    background: #f1f5f9;
    color: #475569;
}

.default-badge {
    background: #f4f4f4;
    color: #444;
}
.tech-badge {
  background: #eef2ff;
  color: #4338ca;
}

.transport-badge {
  background: #ecfdf5;
  color: #059669;
}

.landmark-badge {
  background: #fff7ed;
  color: #ea580c;
}

.adventure-badge {
  background: #fdf2f8;
  color: #db2777;
}

.nature-badge {
  background: #ecfeff;
  color: #0891b2;
}

.fun-badge {
  background: #fef3c7;
  color: #d97706;
}
.meal-badge {
  background: #fff4e6;
  color: #ff8500;
}
.nature-badge {
  background: #ecfeff;
  color: #0891b2;
}
/* ✨ Hover Effect */

.badge-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
  .book-btn:hover { background: var(--accent); }
  .package-card.wide { grid-column: span 2; }
  .package-card.wide .card-img { height: 270px; }
  
  /* ─── PROMO BANNER ────────────────────────────────────────────── */
  .promo-section { padding: 0 60px 60px; }
  .promo-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--accent) 100%);
    border-radius: 16px; padding: 50px 60px;
    display: flex; justify-content: space-between; align-items: center; overflow: hidden; position: relative;
  }
  .promo-banner::after {
    content: '✈'; position: absolute; right: 180px; top: 50%;
    transform: translateY(-50%) rotate(-30deg); font-size: 8rem; opacity: 0.06; pointer-events: none;
  }
  .promo-left h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: white; margin-bottom: 8px; }
  .promo-left p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }
  
  /* ─── DESTINATIONS ───────────────────────────────────────────── */
  .destinations-section { padding: 0 60px 60px; }
  .destinations-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
  .dest-card { border-radius: 10px; overflow: hidden; position: relative; height: 180px; cursor: pointer; }
  .dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
  .dest-card:hover img { transform: scale(1.08); filter: brightness(0.5); }
  .dest-overlay {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    justify-content: flex-end; padding: 16px;
    background: linear-gradient(0deg, rgba(10,22,40,0.7) 0%, transparent 60%);
  }
  .dest-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: white; margin-bottom: 2px; }
  .dest-count { font-size: 0.72rem; color: rgba(255,255,255,0.65); }
  
  /* ─── HOW IT WORKS ────────────────────────────────────────────── */
  .how-section { padding: 80px 60px; background: var(--white); }
  .how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
  .how-steps::before {
    content: ''; position: absolute; top: 38px; left: 10%; right: 10%; height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--accent) 100%); opacity: 0.3; z-index: 0;
  }
  .how-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
  .step-num {
    width: 76px; height: 76px; border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--accent));
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
    font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700;
    color: var(--gold); border: 3px solid var(--cream); box-shadow: 0 6px 24px rgba(10,22,40,0.18);
  }
  .step-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
  .step-desc { font-size: 0.83rem; color: var(--grey); line-height: 1.6; }
  
  /* ─── TRENDING ────────────────────────────────────────────────── */
  .trending-section { padding: 70px 60px; background: var(--cream); }
 .trending-scroll-wrap {
    overflow: hidden;
    position: relative;
    width: 100%;
    
    /*padding: 40px 0;*/
    /*background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.05) 100%);*/
}

/* Add gradient fade on edges */
.trending-scroll-wrap::before,
.trending-scroll-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    pointer-events: none;
    z-index: 2;
    
}

/*.trending-scroll-wrap::before {*/
/*    left: 0;*/
/*    background: linear-gradient(to right, rgba(10, 15, 30, 1) 0%, rgba(10, 15, 30, 0) 100%);*/
/*}*/

/*.trending-scroll-wrap::after {*/
/*    right: 0;*/
/*    background: linear-gradient(to left, rgba(10, 15, 30, 1) 0%, rgba(10, 15, 30, 0) 100%);*/
/*}*/

.trending-scroll {
    display: flex;
    gap: 24px;
    overflow-x: hidden !important;
    overflow-y: visible;
    align-items: stretch;   
    scroll-behavior: auto;
    padding: 20px 60px;
    will-change: scroll-position;
    -webkit-overflow-scrolling: touch;
}

.trending-scroll::-webkit-scrollbar {
    display: none;
}

.trend-card {
    flex-shrink: 0;
    min-width: 300px;
    width: 300px;
    height: 100%;    
     min-height: 380px;/* important */
    display: flex;
    flex-direction: column;    /* stack content */
    position: relative;
}
.trend-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.trend-card:hover {
    transform: scale(1.05) !important;
    z-index: 10;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.trend-card .trend-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 12px;
      border-top-right-radius: 12px;
    height: 220px;
}

.trend-card .trend-img img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.trend-card:hover .trend-img img {
    transform: scale(1.1);
}

.trend-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 180, 0, 0.95);
    backdrop-filter: blur(10px);
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 180, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(255, 180, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 180, 0, 0.5);
    }
}
.trend-card .card-body {
    flex: 1;                   /* fills remaining space */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.trend-body {
     flex: 1;
    padding: 16px;
    background: rgba(20, 25, 40, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 0 0 12px 12px;
}

.trend-dest {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.trend-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 44px;
}

.trend-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trend-price {
    font-size: 20px;
    font-weight: 700;
    color: #ffb400;
}

.trend-nights {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.trend-rating {
    background: linear-gradient(135deg, #ffb400 0%, #ff8c00 100%);
    color: #000;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
}

.price-request {
    font-size: 18px;
    font-weight: 600;
    color: #ffb400;
    letter-spacing: 0.5px;
}

/* Loading animation for carousel */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.trend-card {
    /*animation: slideIn 0.6s ease-out backwards;*/
}

.trend-card:nth-child(1) { animation-delay: 0.1s; }
.trend-card:nth-child(2) { animation-delay: 0.2s; }
.trend-card:nth-child(3) { animation-delay: 0.3s; }
.trend-card:nth-child(4) { animation-delay: 0.4s; }
  /* ─── TESTIMONIALS ────────────────────────────────────────────── */
  .testimonials-section { padding: 80px 60px; background: var(--navy); }
  .testimonials-section .section-header h2 { color: white; }
  .testimonials-section .section-header h2 span { color: var(--gold); }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .testi-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px; padding: 30px; transition: background 0.2s, border-color 0.2s;
  }
  .testi-card:hover { background: rgba(201,168,76,0.06); border-color: rgba(201,168,76,0.25); }
  .testi-quote { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--gold); opacity: 0.4; line-height: 1; margin-bottom: 10px; }
  .testi-text { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .testi-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(201,168,76,0.4); }
  .testi-name { font-weight: 600; color: white; font-size: 0.88rem; }
  .testi-trip { font-size: 0.72rem; color: var(--grey); margin-top: 2px; }
  .testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }
  
  /* ─── PLANNER ─────────────────────────────────────────────────── */
  .planner-section {
    padding: 80px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center; background: var(--cream);
  }
  .planner-eyebrow { font-size: 0.72rem; font-weight: 600; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px; }
  .planner-left h2 { font-family: 'Playfair Display', serif; font-size: 2.3rem; font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 18px; }
  .planner-left h2 span { color: var(--gold); }
  .planner-left p { font-size: 0.95rem; color: var(--grey); line-height: 1.75; margin-bottom: 30px; }
  .planner-perks { display: flex; flex-direction: column; gap: 14px; margin-bottom: 34px; }
  .planner-perk { display: flex; align-items: flex-start; gap: 12px; }
  .perk-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
  .perk-text h4 { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
  .perk-text p { font-size: 0.8rem; color: var(--grey); line-height: 1.55; }
  .planner-right { background: var(--white); border-radius: 18px; padding: 40px; box-shadow: 0 10px 50px rgba(0,0,0,0.1); }
  .planner-right h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
  .planner-right p { font-size: 0.82rem; color: var(--grey); margin-bottom: 28px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-group label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--grey); }
  .form-group input, .form-group select, .form-group textarea {
    border: 1.5px solid #e0d8ce; border-radius: 7px; padding: 11px 14px;
    font-family: 'DM Sans', sans-serif; font-size: 0.88rem; color: var(--navy);
    outline: none; transition: border-color 0.2s; background: var(--cream);
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
  .form-group textarea { height: 80px; resize: none; }
  .form-group.full { grid-column: span 2; }
  .form-submit {
    width: 100%; background: var(--navy); color: white; border: none;
    padding: 14px; border-radius: 7px; font-size: 0.9rem; font-weight: 600;
    cursor: pointer; transition: background 0.2s; font-family: 'DM Sans', sans-serif;
    text-transform: uppercase; letter-spacing: 0.5px; margin-top: 6px;
  }
  .form-submit:hover { background: var(--accent); }
  
  /* ─── GUIDES ──────────────────────────────────────────────────── */
  .guides-section { padding: 80px 60px; background: var(--cream); }
  .guides-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .guide-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 18px rgba(0,0,0,0.07); cursor: pointer; transition: transform 0.25s, box-shadow 0.25s; }
  .guide-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,0.12); }
  .guide-img { height: 200px; overflow: hidden; position: relative; }
  .guide-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
  .guide-card:hover .guide-img img { transform: scale(1.06); }
  .guide-cat { position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--navy); font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: 3px; }
  .guide-body { padding: 20px; }
  .guide-meta { font-size: 0.72rem; color: var(--grey); margin-bottom: 8px; display: flex; gap: 12px; }
  .guide-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.35; }
  .guide-excerpt { font-size: 0.82rem; color: var(--grey); line-height: 1.65; margin-bottom: 16px; }
  .guide-read { font-size: 0.8rem; font-weight: 600; color: var(--accent); letter-spacing: 0.5px; border-bottom: 1px solid var(--accent); display: inline-block; padding-bottom: 1px; text-decoration: none; }
  
  /* ─── TRUST & WHY ─────────────────────────────────────────────── */
  .trust-section { background: var(--white); padding: 50px 60px; }
  .trust-label { text-align: center; font-size: 0.75rem; color: var(--grey); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 36px; }
  .trust-logos { display: flex; justify-content: center; align-items: center; gap: 50px; flex-wrap: wrap; }
  .trust-logo { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: #c0c5d0; letter-spacing: 2px; text-transform: uppercase; transition: color 0.2s; cursor: default; user-select: none; }
  .trust-logo:hover { color: var(--navy); }
  .stats-section { background: var(--navy); padding: 40px 60px; }
  .stats-row { display: grid; grid-template-columns: repeat(4, 1fr); }
  .big-stat { text-align: center; padding: 20px; border-right: 1px solid rgba(255,255,255,0.08); }
  .big-stat:last-child { border-right: none; }
  .big-stat-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--gold); display: block; margin-bottom: 6px; }
  .big-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1.5px; }
  .why-section { background: var(--navy); padding: 70px 60px; }
  .why-section h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: white; text-align: center; margin-bottom: 50px; }
  .why-section h2 span { color: var(--gold); }
  .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
  .why-card { text-align: center; padding: 30px 20px; border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; background: rgba(255,255,255,0.03); transition: background 0.2s, border-color 0.2s; }
  .why-card:hover { background: rgba(201,168,76,0.07); border-color: rgba(201,168,76,0.3); }
  .why-icon { font-size: 2rem; margin-bottom: 14px; display: block; }
  .why-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--gold); margin-bottom: 8px; }
  .why-desc { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
  
  /* ─── FAQ ─────────────────────────────────────────────────────── */
  .faq-section { padding: 80px 60px; background: var(--white); }
  .faq-wrap { max-width: 760px; margin: 0 auto; }
  .faq-item { border-bottom: 1px solid #e8ddd0; padding: 22px 0; cursor: pointer; }
  .faq-item:first-child { border-top: 1px solid #e8ddd0; }
  .faq-q { display: flex; justify-content: space-between; align-items: center; font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--navy); }
  .faq-icon { font-size: 1.2rem; color: var(--gold); transition: transform 0.3s; flex-shrink: 0; }
  .faq-a { font-size: 0.85rem; color: var(--grey); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; }
  .faq-item.open .faq-a { max-height: 200px; padding-top: 14px; }
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  
/* ─── FOOTER WRAPPER ─────────────────────────────────────── */
.lp-footer {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
}

/* thin gold top rule */
.lp-footer::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      var(--gold) 25%,
      var(--gold-lt) 50%,
      var(--gold) 75%,
      transparent 100%);
}

/* decorative concentric rings — bottom-left */
.lp-footer-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--w06);
  pointer-events: none;
  bottom: -160px;
  left: -160px;
}
.lp-footer-ring:nth-child(2) { width: 420px; height: 420px; }
.lp-footer-ring:nth-child(3) { width: 620px; height: 620px; border-color: rgba(200,151,58,0.04); }
.lp-footer-ring:nth-child(4) { width: 820px; height: 820px; }

/* ─── NEWSLETTER CTA ─────────────────────────────────────── */
.lp-nl {
  background: var(--ink-mid);
  border-bottom: 1px solid var(--w06);
  padding: 32px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.lp-nl-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lp-nl-orb {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid var(--gold-rim);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.lp-nl-copy h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #fff;
  margin: 0 0 3px;
}

.lp-nl-copy p {
  font-size: 0.78rem;
  color: var(--w40);
  margin: 0;
}

.lp-nl-form {
  display: flex;
  border: 1px solid var(--w20);
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.lp-nl-form input[type="email"] {
  background: transparent;
  border: none;
  outline: none;
  padding: 11px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: #fff;
  width: 250px;
}

.lp-nl-form input::placeholder { color: var(--w40); }

.lp-nl-form button {
  background: var(--gold);
  border: none;
  padding: 11px 26px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-deep);
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.lp-nl-form button:hover { background: var(--gold-lt); }

/* ─── MAIN BODY ──────────────────────────────────────────── */
.lp-footer-body {
  padding: 68px 80px 56px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 0;
  position: relative;
  z-index: 1;
}

/* ─── BRAND PANEL ────────────────────────────────────────── */
.lp-brand {
  padding-right: 60px;
  border-right: 1px solid var(--w06);
}

.lp-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 24px;
}

.lp-logo-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-rim);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}

.lp-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
}

.lp-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.lp-brand-desc {
  font-size: 0.83rem;
  line-height: 1.85;
  color: var(--w40);
  margin-bottom: 28px;
  max-width: 320px;
}

/* stat pills */
.lp-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.lp-stat-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid var(--w10);
  border-radius: 100px;
  font-size: 0.72rem;
  color: var(--w60);
  letter-spacing: 0.03em;
  background: var(--w06);
}

.lp-stat-pill i { color: var(--gold); font-size: 0.7rem; }
.lp-stat-pill strong { color: #fff; font-weight: 600; }

/* socials */
.lp-socials { display: flex; gap: 10px; }

.lp-soc-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--w20);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: var(--w40);
  text-decoration: none;
  transition: all 0.22s;
}

.lp-soc-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-pale);
}

/* ─── CONTACT PANEL ──────────────────────────────────────── */
.lp-contact {
  padding: 0 48px;
  border-right: 1px solid var(--w06);
}

.lp-panel-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-panel-title::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--gold);
}

.lp-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.lp-contact-item:last-child { margin-bottom: 0; }

.lp-ci-icon {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-rim);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.lp-ci-body label {
  display: block;
  font-size: 0.68rem;
  color: var(--w40);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.lp-ci-body a,
.lp-ci-body span {
  font-size: 0.82rem;
  color: var(--w60);
  text-decoration: none;
  line-height: 1.5;
  display: block;
  transition: color 0.2s;
}

.lp-ci-body a:hover { color: var(--gold); }

/* ─── CTA PANEL ──────────────────────────────────────────── */
.lp-cta-panel {
  padding-left: 48px;
}

.lp-cta-card {
  background: var(--ink-mid);
  border: 1px solid var(--w10);
  border-radius: 12px;
  padding: 28px 24px;
  margin-bottom: 20px;
}

.lp-cta-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.4;
}

.lp-cta-card p {
  font-size: 0.78rem;
  color: var(--w40);
  margin: 0 0 18px;
  line-height: 1.6;
}

.lp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--ink-deep);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 4px;
  transition: background 0.2s;
  white-space: nowrap;
}

.lp-cta-btn:hover { background: var(--gold-lt); color: var(--ink-deep); }
.lp-cta-btn i { font-size: 0.75rem; }

.lp-cta-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gold-rim);
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 4px;
  transition: all 0.2s;
  white-space: nowrap;
  margin-top: 10px;
  display: inline-flex;
}

.lp-cta-btn-ghost:hover {
  background: var(--gold-pale);
  color: var(--gold-lt);
}

/* whatsapp strip */
.lp-wa {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.2);
  border-radius: 8px;
  padding: 14px 16px;
  text-decoration: none;
  transition: background 0.2s;
}

.lp-wa:hover { background: rgba(37,211,102,0.14); }

.lp-wa-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(37,211,102,0.15);
  display: flex; align-items: center; justify-content: center;
  color: #25d366;
  font-size: 1rem;
  flex-shrink: 0;
}

.lp-wa-body label {
  display: block;
  font-size: 0.68rem;
  color: rgba(37,211,102,0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
  cursor: pointer;
}

.lp-wa-body span {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 500;
}

/* ─── DESTINATIONS ROW ───────────────────────────────────── */
.lp-dest-row {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--w06);
  padding: 20px 80px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.lp-dest-label {
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lp-dest-tag {
  display: inline-block;
  font-size: 0.72rem;
  color: var(--w40);
  border: 1px solid var(--w10);
  border-radius: 100px;
  padding: 4px 13px;
  text-decoration: none;
  transition: all 0.2s;
}

.lp-dest-tag:hover {
  color: var(--gold);
  border-color: var(--gold-rim);
  background: var(--gold-pale);
}

/* ─── BOTTOM BAR ─────────────────────────────────────────── */
.lp-footer-bottom {
  background: var(--ink-deep);
  border-top: 1px solid var(--w06);
  padding: 18px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.lp-copy {
  font-size: 0.73rem;
  color: var(--w40);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--w10);
  border-radius: 4px;
  padding: 2px 9px;
  font-size: 0.67rem;
  letter-spacing: 0.04em;
  color: var(--w40);
}

.lp-badge i { color: var(--gold); font-size: 0.63rem; }

.lp-legal {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.lp-legal a {
  font-size: 0.72rem;
  color: var(--w40);
  text-decoration: none;
  transition: color 0.2s;
}

.lp-legal a:hover { color: var(--gold); }

.lp-legal-sep {
  width: 1px; height: 11px;
  background: var(--w20);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1080px) {
  .lp-footer-body { grid-template-columns: 1fr 1fr; padding: 52px 48px 44px; }
  .lp-brand { grid-column: 1 / -1; border-right: none; border-bottom: 1px solid var(--w06); padding-right: 0; padding-bottom: 40px; margin-bottom: 40px; }
  .lp-contact { padding-left: 0; }
  .lp-nl, .lp-dest-row, .lp-footer-bottom { padding-left: 48px; padding-right: 48px; }
}

@media (max-width: 680px) {
  .lp-footer-body { grid-template-columns: 1fr; padding: 40px 24px 32px; }
  .lp-contact { border-right: none; padding: 0 0 32px; border-bottom: 1px solid var(--w06); margin-bottom: 32px; }
  .lp-cta-panel { padding-left: 0; }
  .lp-nl { padding: 24px; flex-direction: column; align-items: flex-start; }
  .lp-nl-form { width: 100%; }
  .lp-nl-form input[type="email"] { flex: 1; width: auto; }
  .lp-dest-row, .lp-footer-bottom { padding: 16px 24px; }
  .lp-footer-bottom { flex-direction: column; align-items: flex-start; }
}
  
  /* ─── ALL PACKAGES PAGE ───────────────────────────────────────── */
  .page-header {
    background: linear-gradient(135deg, #0a1628 0%, #1a4a6e 60%, #0f3050 100%);
    padding: 150px 60px 50px; position: relative; overflow: hidden;
  }
  .page-header::before {
    content: ''; position: absolute; inset: 0;
    background: url('/images/header-bg.jpg') center/cover no-repeat; opacity: 0.8;
  }
  .page-header-inner { position: relative; z-index: 1; }
  .breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
  .breadcrumb a {
    font-size: 0.98rem;
    color: rgb(255 255 255);
    font-weight: 600;
    background-color:var(--gold);
    border-radius: 20px;
    text-decoration: none;
    padding: 10px 10px;
}
  .breadcrumb a:hover { color: var(--gold-light); }
  .breadcrumb .sep { color: rgb(255, 255, 255); font-size: 0.98rem; font-weight: 600; }
  .breadcrumb .current {
    color: var(--gold);
    font-size: 0.98rem;
    font-weight: 600;
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    padding: 10px 10px;
}
  .page-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,3rem); font-weight: 900; color: white; margin-bottom: 10px; }
  .page-header h1 span { color: var(--gold); }
  .page-header p { color: rgba(255,255,255,0.88); font-size: 1.05rem; max-width: 600px; line-height: 1.65; }
  .header-stats { display: flex; gap: 36px; margin-top: 28px; flex-wrap: wrap; }
  .h-stat { display: flex; align-items: center; gap: 8px; font-size: 1.1rem; color:white; }
  .h-stat strong { color: var(--gold); font-weight: 700; }
  .quick-search { background: white; padding: 20px 60px; box-shadow: 0 6px 30px rgba(0,0,0,0.09); display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
  .qs-form { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; width: 100%; }
  .qs-field { display: flex; align-items: center; gap: 8px; background: var(--cream); border: 1.5px solid var(--border); border-radius: 7px; padding: 10px 16px; flex: 1; min-width: 150px; }
  .qs-field input, .qs-field select { border: none; outline: none; background: transparent; font-family: 'DM Sans', sans-serif; font-size: 0.88rem; color: var(--navy); width: 100%; }
  .qs-icon { font-size: 1rem; flex-shrink: 0; }
  .qs-btn { background: var(--gold); color: var(--navy); border: none; padding: 12px 28px; border-radius: 7px; font-weight: 700; font-size: 0.88rem; cursor: pointer; text-transform: uppercase; letter-spacing: 0.5px; transition: background 0.2s; white-space: nowrap; font-family: 'DM Sans', sans-serif; }
  .qs-btn:hover { background: var(--gold-light); }
  .main-layout { display: grid; grid-template-columns: 280px 1fr; align-items: start; }
  .sidebar { background: white; padding: 28px; border-right: 1px solid var(--border); position: sticky; top: 0; height: 100vh; overflow-y: auto; scrollbar-width: thin; }
  .sidebar::-webkit-scrollbar { width: 4px; }
  .sidebar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
  .filter-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
  .filter-header h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--navy); }
  .clear-filters { font-size: 0.75rem; color: var(--accent); cursor: pointer; font-weight: 600; border: none; background: none; text-decoration: underline; }
  .filter-group { margin-bottom: 26px; border-bottom: 1px solid var(--border); padding-bottom: 26px; }
  .filter-group:last-child { border-bottom: none; }
  .filter-group-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--grey); margin-bottom: 14px; }
  .filter-options { display: flex; flex-direction: column; gap: 9px; }
  .filter-option { display: flex; align-items: center; gap: 10px; cursor: pointer; }
  .filter-option input[type="checkbox"] { display: none; }
  .check-box { width: 18px; height: 18px; border: 2px solid #d0c8be; border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.2s; background: white; }
  .filter-option input:checked + .check-box { background: var(--navy); border-color: var(--navy); }
  .filter-option input:checked + .check-box::after { content: '✓'; color: var(--gold); font-size: 0.7rem; font-weight: 700; }
  .filter-label { font-size: 0.84rem; color: var(--navy); flex: 1; }
  .filter-count { font-size: 0.72rem; color: var(--grey); background: var(--cream); padding: 1px 7px; border-radius: 10px; }
  .price-range { padding: 6px 0; }
  .price-slider { width: 100%; -webkit-appearance: none; height: 4px; background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 60%, #e0d8ce 60%, #e0d8ce 100%); border-radius: 2px; outline: none; cursor: pointer; margin-bottom: 10px; }
  .price-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--navy); border: 2px solid var(--gold); cursor: pointer; }
  .price-labels { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--grey); }
  .rating-stars { color: var(--gold); letter-spacing: 1px; font-size: 0.9rem; }
  .results-area { padding: 28px 36px; }
  .results-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; flex-wrap: wrap; gap: 14px; }
  .results-count { font-size: 0.88rem; color: var(--grey); }
  .results-count strong { color: var(--navy); font-weight: 600; }
  .toolbar-right { display: flex; align-items: center; gap: 14px; }
  .sort-select { border: 1.5px solid var(--border); border-radius: 7px; padding: 9px 14px; font-family: 'DM Sans', sans-serif; font-size: 0.84rem; color: var(--navy); background: white; outline: none; cursor: pointer; }
  .view-toggle { display: flex; gap: 4px; }
  .view-btn { width: 36px; height: 36px; border: 1.5px solid var(--border); border-radius: 6px; background: white; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: all 0.2s; color: var(--grey); }
  .view-btn.active { background: var(--navy); border-color: var(--navy); color: var(--gold); }
  .packages-grid.list-view { grid-template-columns: 1fr; }
  .packages-grid.list-view .package-card { display: grid; grid-template-columns: 280px 1fr; }
  .packages-grid.list-view .card-img { height: 100%; min-height: 180px; }
  .packages-grid.list-view .card-body { display: flex; flex-direction: column; justify-content: space-between; }
  .pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 40px; flex-wrap: wrap; }
  .page-btn { width: 40px; height: 40px; border-radius: 8px; border: 1.5px solid var(--border); background: white; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 600; color: var(--navy); cursor: pointer; transition: all 0.2s; text-decoration: none; }
  .page-btn:hover { border-color: var(--gold); color: var(--gold); }
  .page-btn.active { background: var(--navy); color: var(--gold); border-color: var(--navy); }
  
  /* ─── TRENDING PAGE ───────────────────────────────────────────── */
  .page-hero { background: var(--navy); position: relative; overflow: hidden; min-height: 360px; display: flex; align-items: stretch; }
  .hero-bg { position: absolute; inset: 0; background: url('/images/trending-bg.jpg') center/cover no-repeat; }
  .hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(10,22,40,0.85) 45%, rgba(10,22,40,0.5) 100%); }
  .hero-inner { position: relative; z-index: 2; padding: 120px 60px 50px; display: flex; justify-content: space-between; align-items: flex-end; width: 100%; flex-wrap: wrap; gap: 30px; }
  .live-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,64,64,0.15); border: 1px solid rgba(232,64,64,0.4); color: #ff6b6b; font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; margin-bottom: 18px; }
  .live-dot { width: 7px; height: 7px; background: #ff6b6b; border-radius: 50%; animation: pulse 1.5s infinite; }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.85)} }
  .page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,3.2rem); font-weight: 900; color: white; line-height: 1.1; margin-bottom: 14px; }
  .page-hero h1 span { color: var(--gold); }
  .page-hero p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 520px; line-height: 1.7; }
  .trending-ticker { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 16px 20px; min-width: 240px; }
  .ticker-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.4); margin-bottom: 10px; }
  .ticker-items { display: flex; flex-direction: column; gap: 7px; }
  .ticker-item { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.7); }
  .ticker-rank { color: var(--gold); font-weight: 700; font-family: 'Playfair Display', serif; width: 18px; }
  .ticker-dest { flex: 1; padding: 0 8px; }
  .ticker-arrow.up { color: var(--green); }
  .ticker-arrow.hot { color: var(--hot); }
  .filter-row { background: white; border-bottom: 1px solid var(--border); padding: 0 60px; display: flex; align-items: center; gap: 0; overflow-x: auto; scrollbar-width: none; }
  .filter-row::-webkit-scrollbar { display: none; }
  .filter-pill { display: flex; align-items: center; gap: 7px; padding: 18px 20px; border-bottom: 3px solid transparent; font-size: 0.82rem; font-weight: 500; color: var(--grey); cursor: pointer; white-space: nowrap; transition: all 0.2s; background: none; border-top: none; border-left: none; border-right: none; font-family: 'DM Sans', sans-serif; }
  .filter-pill:hover { color: var(--navy); border-bottom-color: rgba(201,168,76,0.3); }
  .filter-pill.active { color: var(--navy); border-bottom-color: var(--gold); font-weight: 600; }
  .pill-emoji { font-size: 1rem; }
  .pill-count { background: var(--cream); color: var(--grey); font-size: 0.68rem; font-weight: 600; padding: 2px 8px; border-radius: 10px; }
  .filter-pill.active .pill-count { background: rgba(201,168,76,0.15); color: var(--gold); }
  .filter-divider { width: 1px; height: 20px; background: var(--border); flex-shrink: 0; margin: 0 4px; }
  .controls-bar { padding: 20px 60px; background: var(--cream); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
  .results-info { font-size: 0.85rem; color: var(--grey); }
  .results-info strong { color: var(--navy); font-weight: 600; }
  .controls-right { display: flex; align-items: center; gap: 12px; }
  .search-inline { display: flex; align-items: center; gap: 8px; background: white; border: 1.5px solid var(--border); border-radius: 7px; padding: 8px 14px; }
  .search-inline input { border: none; outline: none; font-family: 'DM Sans', sans-serif; font-size: 0.84rem; color: var(--navy); width: 200px; background: transparent; }
  .main-content { padding: 30px 60px 80px; }
  .layout-with-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 30px; align-items: start; }
  .sticky-sidebar { position: sticky; top: 30px; display: flex; flex-direction: column; gap: 20px; }
  .cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .cards-grid.list-col { grid-template-columns: 1fr; }
  .section-label { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
  .section-label h2 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--navy); }
  .section-label .label-line { flex: 1; height: 1px; background: var(--border); }
  .trend-card.wide-card { grid-column: span 2; }
  .trend-card.wide-card .card-img-wrap { height: 280px; }
  .card-img-wrap { height: 200px; overflow: hidden; position: relative; }
  .card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
  .trend-card:hover .card-img-wrap img { transform: scale(1.07); }
  .rank-badge { position: absolute; top: 12px; left: 12px; z-index: 2; width: 32px; height: 32px; border-radius: 50%; background: var(--navy); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 0.8rem; font-weight: 700; color: var(--gold); }
  .rank-badge.top3 { background: var(--gold); color: var(--navy); border-color: white; }
  .fav-btn { position: absolute; bottom: 12px; right: 12px; z-index: 2; width: 30px; height: 30px; background: rgba(255,255,255,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; cursor: pointer; transition: all 0.2s; border: none; }
  .fav-btn:hover { background: white; transform: scale(1.1); }
  .trend-stat-row { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(0deg, rgba(10,22,40,0.8) 0%, transparent 100%); padding: 28px 12px 10px; display: flex; justify-content: space-between; align-items: flex-end; }
  .card-rating-pill { background: rgba(255,255,255,0.15); backdrop-filter: blur(4px); color: var(--gold); font-size: 0.72rem; font-weight: 700; padding: 3px 9px; border-radius: 20px; border: 1px solid rgba(201,168,76,0.3); }
  .views-pill { color: rgba(255,255,255,0.6); font-size: 0.68rem; }
  .card-dest { font-size: 0.68rem; font-weight: 600; color: var(--grey); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 5px; }
  .card-meta-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
  .cmeta { font-size: 0.72rem; color: var(--grey); display: flex; align-items: center; gap: 3px; }
  .card-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 13px; }
  .ctag { background: var(--cream); color: var(--navy); font-size: 0.65rem; font-weight: 500; padding: 3px 9px; border-radius: 20px; border: 1px solid var(--border); }
  .p-from { font-size: 0.65rem; color: var(--grey); }
  .p-val { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--navy); }
  .p-val sup { font-size: 0.72rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }
  .p-pp { font-size: 0.65rem; color: var(--grey); }
  .cards-grid.list-col .trend-card { display: grid; grid-template-columns: 300px 1fr; }
  .cards-grid.list-col .card-img-wrap { height: 100%; min-height: 200px; }
  .cards-grid.list-col .card-body { display: flex; flex-direction: column; justify-content: space-between; padding: 22px 24px; }
  .cards-grid.list-col .trend-card.wide-card { grid-column: span 1; }
  .promo-widget { background: var(--navy); border-radius: 14px; padding: 28px; text-align: center; position: relative; overflow: hidden; }
  .promo-widget::before { content: '✈'; position: absolute; right: -10px; bottom: -20px; font-size: 7rem; opacity: 0.06; }
  .promo-widget h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 8px; }
  .promo-widget p { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 18px; line-height: 1.6; }
  .promo-code-box { background: rgba(255,255,255,0.07); border: 1.5px dashed rgba(201,168,76,0.5); border-radius: 8px; padding: 12px; margin-bottom: 16px; }
  .promo-code-box .code { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--gold); letter-spacing: 4px; }
  .promo-code-box .code-sub { font-size: 0.68rem; color: rgba(255,255,255,0.35); margin-top: 4px; }
  .promo-widget-btn { width: 100%; background: var(--gold); color: var(--navy); border: none; padding: 11px; border-radius: 6px; font-weight: 700; font-size: 0.85rem; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background 0.2s; }
  .promo-widget-btn:hover { background: var(--gold-light); }
  .hot-list-widget { background: white; border-radius: 14px; padding: 22px; box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
  .hot-list-widget h4 { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
  .hot-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); cursor: pointer; }
  .hot-item:last-child { border-bottom: none; padding-bottom: 0; }
  .hot-img { width: 50px; height: 50px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
  .hot-dest { font-weight: 600; font-size: 0.82rem; color: var(--navy); }
  .hot-price { font-size: 0.72rem; color: var(--grey); margin-top: 2px; }
  .hot-rank { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--gold); width: 20px; flex-shrink: 0; text-align: center; }
  .newsletter-widget { background: linear-gradient(135deg, var(--gold), #9a7030); border-radius: 14px; padding: 24px; text-align: center; }
  .newsletter-widget h4 { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
  .newsletter-widget p { font-size: 0.75rem; color: rgba(10,22,40,0.6); margin-bottom: 14px; }
  .newsletter-widget input { width: 100%; padding: 10px 14px; border: none; border-radius: 6px; font-family: 'DM Sans', sans-serif; font-size: 0.84rem; outline: none; margin-bottom: 8px; }
  .newsletter-widget button { width: 100%; background: var(--navy); color: var(--gold); border: none; padding: 10px; border-radius: 6px; font-weight: 700; font-size: 0.82rem; cursor: pointer; font-family: 'DM Sans', sans-serif; }
  .load-more-wrap { text-align: center; margin-top: 50px; }
  .load-more-btn { background: white; color: var(--navy); border: 2px solid var(--border); padding: 14px 40px; border-radius: 8px; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: all 0.25s; font-family: 'DM Sans', sans-serif; text-decoration: none; display: inline-block; }
  .load-more-btn:hover { border-color: var(--gold); color: var(--gold); }
  .load-count { font-size: 0.8rem; color: var(--grey); margin-top: 12px; }
  
  /* ─── ANIMATIONS ──────────────────────────────────────────────── */
  @keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
  .hero > * { animation: fadeUp 0.6s ease both; }
  .hero-label { animation-delay: 0.1s; }
  .hero h1 { animation-delay: 0.2s; }
  .hero p { animation-delay: 0.3s; }
  .hero-btns { animation-delay: 0.4s; }
  
  /* ─── RESPONSIVE ──────────────────────────────────────────────── */
  @media (max-width: 1200px) {
    .cards-grid { grid-template-columns: repeat(3, 1fr); }
    .layout-with-sidebar { grid-template-columns: 1fr; }
    .sticky-sidebar { position: static; display: grid; grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 1024px) {
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
    .package-card.wide { grid-column: span 2; }
    .destinations-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .how-steps { grid-template-columns: repeat(2, 1fr); }
    .how-steps::before { display: none; }
    .planner-section { grid-template-columns: 1fr; }
    .guides-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .main-layout { grid-template-columns: 1fr; }
  }
  @media (max-width: 768px) {
    .hero, .search-section, .tabs-section, .packages-section, .promo-section,
    .destinations-section, .how-section, .trending-section, .testimonials-section,
    .guides-section, .planner-section, .faq-section,
    .footer-main, .footer-bottom, .stats-section, .why-section, .trust-section,
    .page-header, .quick-search, .results-area, .main-content,
    .filter-row, .controls-bar { padding-left: 20px; padding-right: 20px; }
    .packages-grid { grid-template-columns: 1fr; }
    .package-card.wide { grid-column: span 1; }
    .destinations-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .promo-banner { flex-direction: column; gap: 24px; text-align: center; padding: 36px 24px; }
    .how-steps { grid-template-columns: 1fr 1fr; gap: 30px; }
    .guides-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .form-group.full { grid-column: span 1; }
    .footer-main { grid-template-columns: 1fr; gap: 30px; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .search-bar { flex-direction: column; border-radius: 8px; }
    .search-field { border-right: none; border-bottom: 1px solid #eee; }
    .search-btn { padding: 14px; }
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .trend-card.wide-card { grid-column: span 2; }
    .hero-right { display: none; }
    .packages-grid.list-view .package-card { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .cards-grid { grid-template-columns: 1fr; }
    .trend-card.wide-card { grid-column: span 1; }
    .cards-grid.list-col .trend-card { grid-template-columns: 1fr; }
    .sticky-sidebar { grid-template-columns: 1fr; }
  }
  /* Search count / active filter summary bar */
.search-count {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.08);
  border-radius: 0 0 12px 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

.search-count strong {
  color: #fff;
  font-weight: 500;
}

.search-clear {
  color: var(--gold, #c8964e);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0.85;
  transition: opacity 0.15s;
}

.search-clear:hover {
  opacity: 1;
} 
/* ── Travel Agent Zone Nav Dropdown ──────────────────────── */
.agent-zone-nav {
    position: relative;
}

.agent-zone-nav-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(240, 192, 64, 0.1);
    border: 1px solid rgba(240, 192, 64, 0.35);
    color: #2196F3;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    margin-top:-120px;
    margin-left:30px;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.agent-zone-nav-btn:hover,
.agent-zone-nav-btn[aria-expanded="true"] {
    background: rgba(240, 192, 64, 0.18);
    border-color: rgba(240, 192, 64, 0.6);
    box-shadow: 0 0 14px rgba(240, 192, 64, 0.15);
}

.agent-chevron {
    transition: transform 0.25s ease;
    opacity: 0.7;
}

.agent-zone-nav-btn[aria-expanded="true"] .agent-chevron {
    transform: rotate(180deg);
}

/* Dropdown */
.agent-zone-dropdown {
    position: absolute;
    /*top: calc(100% + 10px);*/
    left: 0;
    min-width: 220px;
    background: #0f0f1e;
    border: 1px solid rgba(240, 192, 64, 0.2);
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255,255,255,0.04) inset;
    padding: 6px;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.97);
    transform-origin: top left;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    pointer-events: none;
}

.agent-zone-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* Dropdown arrow tip */
.agent-zone-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 18px;
    width: 12px;
    height: 12px;
    background: #0f0f1e;
    border-left: 1px solid rgba(240, 192, 64, 0.2);
    border-top: 1px solid rgba(240, 192, 64, 0.2);
    transform: rotate(45deg);
}

/* Items */
.azd-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s ease;
}

.azd-item:hover {
    background: rgba(240, 192, 64, 0.08);
    color: #f0c040;
    transform: translateX(3px);
}

.azd-item svg {
    flex-shrink: 0;
    opacity: 0.65;
    transition: opacity 0.15s;
}

.azd-item:hover svg {
    opacity: 1;
}

/* "Join For Free" highlight */
.azd-item.azd-highlight {
    color: #f0c040;
    background: rgba(240, 192, 64, 0.07);
    font-weight: 700;
    border: 1px solid rgba(240, 192, 64, 0.18);
    margin-bottom: 4px;
}

.azd-item.azd-highlight:hover {
    background: rgba(240, 192, 64, 0.15);
    border-color: rgba(240, 192, 64, 0.4);
}

/* FREE badge */
.azd-free-tag {
    margin-left: auto;
    background: #10b981;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 20px;
    letter-spacing: 0.06em;
}

/* Divider between items if needed */
.azd-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 4px 6px;
}

/* Mobile: full width */
@media (max-width: 600px) {
    .agent-zone-nav {
        width: 100%;
    }
    .agent-zone-nav-btn {
        width: 100%;
        justify-content: space-between;
    }
    .agent-zone-dropdown {
        width: 100%;
        min-width: unset;
    }
}