/* ============ PRELOADER ============ */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--white, #fff);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}
#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

#viewAllBtn {
    position: relative; /* බටන් එකේ position එක හදනවා */
    z-index: 9999; /* මේක දාපුවාම බටන් එක අනිත් හැම දේකටම උඩින් තියෙනවා */
}

#goldViewAllBtn {
    position: relative; /* බටන් එකේ position එක හදනවා */
    z-index: 9999; /* මේක දාපුවාම බටන් එක අනිත් හැම දේකටම උඩින් තියෙනවා */
}

#silverViewAllBtn {
    position: relative; /* බටන් එකේ position එක හදනවා */
    z-index: 9999; /* මේක දාපුවාම බටන් එක අනිත් හැම දේකටම උඩින් තියෙනවා */
}

#pkgViewAllBtn {
    position: relative; /* බටන් එකේ position එක හදනවා */
    z-index: 9999; /* මේක දාපුවාම බටන් එක අනිත් හැම දේකටම උඩින් තියෙනවා */
}

/* පැනලය මුලින් සැඟවී තිබිය යුතුය */
#agencyPanelOverlay {
    display: none;
    position: fixed;
    /* අනෙකුත් styles */
}

/* open class එක එකතු වූ විට පෙන්විය යුතුය */
#agencyPanelOverlay.open {
    display: flex !important; /* හෝ block !important; */
}

.loader-scene {
    text-align: center;
    position: relative;
}

/* Airplane animation */
.loader-plane-wrap {
    width: 220px;
    height: 220px;
    position: relative;
    margin: 0 auto 30px;
}

.loader-globe {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0f2fe 0%, #ecfdf5 50%, #fef3c7 100%);
    border: 3px solid #e2e8f0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    box-shadow:
        0 15px 50px rgba(14, 165, 233, 0.2),
        inset 0 -5px 15px rgba(0, 0, 0, 0.05);
}

/* Globe grid lines */
.loader-globe::before {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px dashed rgba(14, 165, 233, 0.15);
    animation: globeRotate 10s linear infinite;
}
.loader-globe::after {
    content: "";
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 80%;
    border-radius: 50%;
    border: 1.5px dashed rgba(34, 197, 94, 0.15);
    animation: globeRotate 15s linear infinite reverse;
}
@keyframes globeRotate {
    to {
        transform: translateX(-50%) rotate(360deg);
    }
}

/* Sri Lanka island silhouette */
.globe-island {
    position: absolute;
    top: 32%;
    left: 38%;
    width: 36px;
    height: 52px;
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
    border-radius: 45% 55% 50% 50% / 60% 60% 40% 40%;
    transform: rotate(15deg);
    opacity: 0.7;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

/* Plane circling */
.loader-airplane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: planeOrbit 2.5s linear infinite;
}
.loader-airplane::before {
    content: "✈️";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    filter: drop-shadow(0 3px 6px rgba(14, 165, 233, 0.4));
}
@keyframes planeOrbit {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Trail dots */
.loader-trail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dotted rgba(14, 165, 233, 0.2);
    animation: trailPulse 2s ease-in-out infinite;
}
@keyframes trailPulse {
    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.02);
    }
}

.loader-brand {
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: #1e293b;
    margin-bottom: 8px;
}
.loader-brand span {
    color: #0ea5e9;
}

.loader-text {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 20px;
}

/* Progress bar */
.loader-progress {
    width: 200px;
    height: 4px;
    background: #e2e8f0;
    border-radius: 4px;
    margin: 0 auto;
    overflow: hidden;
}
.loader-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #0ea5e9, #22c55e);
    border-radius: 4px;
    animation: loadProgress 2s ease-in-out forwards;
}
@keyframes loadProgress {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --secondary: #22c55e;
    --accent: #f59e0b;
    --dark: #1e293b;
    --dark2: #334155;
    --gray: #64748b;
    --light: #f8fafc;
    --lighter: #f1f5f9;
    --border: #e2e8f0;
    --white: #ffffff;
    --gold: #f59e0b;
    --gold2: #d97706;
    --premium: #8b5cf6;
    --premium2: #7c3aed;
    --silver: #94a3b8;
    --radius: 16px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Inter", sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    display: block;
}
button {
    cursor: pointer;
    border: none;
    font-family: "Inter", sans-serif;
}
ul {
    list-style: none;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--light);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
.section {
    padding: 80px 0;
}
.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark);
}
.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gold-text {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.premium-text {
    background: linear-gradient(135deg, var(--premium), var(--premium2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.45);
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
}
.btn-outline {
    border: 2px solid var(--border);
    color: var(--dark);
    background: var(--white);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.btn-glass {
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
}
.badge-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--white);
}
.badge-premium {
    background: linear-gradient(135deg, var(--premium), var(--premium2));
    color: var(--white);
}
.badge-platinum {
    background: linear-gradient(135deg, var(--premium), var(--premium2));
    color: var(--white);
}
.badge-silver {
    background: var(--silver);
    color: var(--white);
}
.badge-green {
    background: rgba(34, 197, 94, 0.1);
    color: var(--secondary);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.stars {
    color: var(--accent);
    font-size: 0.85rem;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--border);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-logo h1 {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--dark);
}
.nav-logo span {
    color: var(--primary);
}
.nav-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--gray);
    transition: color 0.3s;
    position: relative;
}
.nav-links a:hover {
    color: var(--primary);
}
.nav-links a.active {
    color: var(--primary);
}
.nav-links a.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-btn {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: all 0.3s;
    border: 1px solid var(--border);
}
.nav-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.nav-btn .count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #ef4444;
    border-radius: 50%;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
}

.switch-btn {
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--secondary);
    border: 1px solid rgba(34, 197, 94, 0.2);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}
.switch-btn:hover {
    background: var(--secondary);
    color: var(--white);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--light);
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark);
    border: 1px solid var(--border);
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 30s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.08);
    }
}
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}
.hero-overlay {
    display: none;
}
.hero-content-wrap {
    display: contents;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 120px 20px 50px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.9rem;
    margin-bottom: 24px;
    color: var(--white);
}
.hero-badge i {
    color: var(--accent);
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}
.hero-title .highlight {
    background: linear-gradient(135deg, #38bdf8, #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.hero .btn-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}
.hero .btn-glass:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Hero Search */
.hero-search {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 24px 30px;
    max-width: 800px;
    margin: 0 auto;
}
.search-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.search-field {
    flex: 1;
    min-width: 150px;
}
.search-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.search-field input,
.search-field select {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}
.search-field input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.search-field select option {
    background: var(--dark);
    color: var(--white);
}
.search-field input:focus,
.search-field select:focus {
    border-color: var(--primary);
}
.search-btn {
    align-self: flex-end;
    padding: 12px 32px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.hero-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    padding: 18px 28px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-stat .number {
    font-family: "Poppins", sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
}
.hero-stat .label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

/* Floating */
.floating-el {
    position: absolute;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}
.floating-el:nth-child(1) {
    top: 12%;
    left: 4%;
    animation-delay: 0s;
}
.floating-el:nth-child(2) {
    top: 8%;
    right: 4%;
    animation-delay: 2s;
}
.floating-el:nth-child(3) {
    top: 35%;
    left: 3%;
    animation-delay: 4s;
}
.float-card {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.float-card .icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.float-card .info h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
}
.float-card .info p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* CATEGORIES */
.categories {
    background: var(--light);
}
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}
.cat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 16px;
    text-align: center;
    transition: all 0.4s;
    cursor: pointer;
    box-shadow: var(--shadow);
}
.cat-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.15);
}
.cat-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}
.cat-card:hover .cat-icon {
    transform: scale(1.1);
    transition: transform 0.3s;
}
.cat-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}
.cat-card p {
    font-size: 0.75rem;
    color: var(--gray);
}

/* PREMIUM SHOWCASE */
.premium-showcase {
    background: linear-gradient(
        180deg,
        var(--white) 0%,
        #f5f3ff 50%,
        var(--white) 100%
    );
    position: relative;
    overflow: hidden;
}
.premium-showcase::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(139, 92, 246, 0.08),
        transparent 70%
    );
    pointer-events: none;
}
.premium-container {
    background: var(--white);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 60px rgba(139, 92, 246, 0.1);
}
.premium-container::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    padding: 2px;
    background: linear-gradient(
        135deg,
        var(--premium),
        var(--premium2),
        transparent,
        var(--premium)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
}
.premium-header {
    text-align: center;
    margin-bottom: 30px;
}
.premium-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 16px;
    scroll-snap-type: x mandatory;
}
.premium-slider::-webkit-scrollbar {
    height: 6px;
}
.premium-slider::-webkit-scrollbar-thumb {
    background: var(--premium);
    border-radius: 6px;
}
.premium-card {
    min-width: 340px;
    background: var(--white);
    border: 2px solid rgba(139, 92, 246, 0.15);
    border-radius: 20px;
    overflow: hidden;
    scroll-snap-align: start;
    transition: all 0.4s;
    flex-shrink: 0;
    cursor: pointer;
    box-shadow: var(--shadow);
}
.premium-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.2);
    border-color: var(--premium);
}
.premium-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.premium-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.premium-card:hover .premium-card-img img {
    transform: scale(1.1);
}
.premium-card-img .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}
.premium-card-img .tag {
    position: absolute;
    top: 16px;
    left: 16px;
}
.premium-card-body {
    padding: 20px;
}
.premium-card-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}
.premium-card-body .location {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.premium-card-body .stats-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}
.premium-card-body .stat-item {
    font-size: 0.78rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 4px;
}
.premium-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.premium-card-footer .price {
    font-family: "Poppins";
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--premium);
}
.premium-card-footer .price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gray);
}

/* GOLD SECTION */
.gold-section {
    background: linear-gradient(
        180deg,
        var(--white) 0%,
        #fffbeb 50%,
        var(--white) 100%
    );
    position: relative;
    overflow: hidden;
}
.gold-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(245, 158, 11, 0.08),
        transparent 70%
    );
    pointer-events: none;
}
.gold-container {
    background: var(--white);
    border: 2px solid rgba(245, 158, 11, 0.2);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 60px rgba(245, 158, 11, 0.1);
}
.gold-container::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    padding: 2px;
    background: linear-gradient(
        135deg,
        var(--gold),
        var(--gold2),
        transparent,
        var(--gold)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: goldGlow 3s ease-in-out infinite alternate;
    opacity: 0.6;
}
@keyframes goldGlow {
    from {
        opacity: 0.3;
    }
    to {
        opacity: 0.7;
    }
}
.gold-header {
    text-align: center;
    margin-bottom: 12px;
}
.gold-header .trophy {
    font-size: 2.5rem;
    margin-bottom: 8px;
}
.gold-header h2 {
    font-size: 2rem;
}
.gold-header p {
    color: var(--gray);
    margin-top: 8px;
}
.gold-rank-info {
    text-align: center;
    margin-bottom: 30px;
    font-size: 0.85rem;
    color: var(--gray);
    background: var(--light);
    padding: 12px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.gold-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.gold-card {
    background: var(--white);
    border: 2px solid rgba(245, 158, 11, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow);
}
.gold-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.15);
    border-color: var(--gold);
}
.gold-card .rank-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--white);
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}
.gold-card-img {
    height: 180px;
    overflow: hidden;
    position: relative;
}
.gold-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.gold-card:hover .gold-card-img img {
    transform: scale(1.1);
}
.gold-card-body {
    padding: 18px;
}
.gold-card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
}
.gold-card-body .agency-location {
    color: var(--gray);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}
.gold-card-body .clicks-stars {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.gold-card-body .clicks {
    font-size: 0.78rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
}
.gold-card-body .clicks strong {
    color: var(--gold);
}
.gold-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* SILVER SECTION */
.silver-section {
    background: var(--light);
}
.silver-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.silver-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: var(--shadow);
}
.silver-card:hover {
    transform: translateY(-4px);
    border-color: var(--silver);
    box-shadow: var(--shadow-lg);
}
.silver-card-img {
    height: 140px;
    overflow: hidden;
}
.silver-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.silver-card:hover .silver-card-img img {
    transform: scale(1.08);
}
.silver-card-body {
    padding: 14px;
}
.silver-card-body h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}
.silver-card-body .loc {
    font-size: 0.78rem;
    color: var(--gray);
    margin-bottom: 8px;
}
.silver-card-body .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* PACKAGES */
.packages-section {
    background: var(--white);
}
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.filter-tab {
    padding: 10px 22px;
    border-radius: 50px;
    background: var(--light);
    border: 1px solid var(--border);
    color: var(--gray);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
    cursor: pointer;
}
.filter-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.filter-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.package-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: var(--shadow);
}
.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.package-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.package-card:hover .package-img img {
    transform: scale(1.1);
}
.package-img .duration {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--dark);
    box-shadow: var(--shadow);
}
.package-img .wishlist-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: none;
    color: var(--gray);
    font-size: 1rem;
    box-shadow: var(--shadow);
}
.package-img .wishlist-btn:hover,
.package-img .wishlist-btn.active {
    background: #fee2e2;
    color: #ef4444;
}
.package-body {
    padding: 20px;
}
.package-body .dest {
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.package-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--dark);
}
.package-body .features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.package-body .feature {
    font-size: 0.75rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 4px;
}
.package-body .feature i {
    color: var(--secondary);
    font-size: 0.65rem;
}
.package-body .rating {
    font-size: 0.85rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
}
.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-top: 1px solid var(--border);
}
.package-footer .price {
    font-family: "Poppins";
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}
.package-footer .price span {
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--gray);
}
.package-footer .book-btn {
    padding: 10px 24px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
}
.package-footer .book-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.35);
}

/* GUIDES */
.guides-section {
    background: var(--light);
}
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.guide-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
    cursor: pointer;
    box-shadow: var(--shadow);
}
.guide-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.guide-card-img {
    height: 180px;
    overflow: hidden;
    position: relative;
}
.guide-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.guide-card:hover .guide-card-img img {
    transform: scale(1.1);
}
.guide-card-img .read-time {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    box-shadow: var(--shadow);
}
.guide-card-body {
    padding: 20px;
}
.guide-card-body .category {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.guide-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--dark);
}
.guide-card-body p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
}

/* MEMBERSHIP */
.membership-section {
    background: var(--white);
    overflow: hidden;
    position: relative;
}
.membership-section::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(14, 165, 233, 0.05),
        transparent 70%
    );
}
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}
.plan-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 36px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    box-shadow: var(--shadow);
}
.plan-card.popular {
    border-color: var(--gold);
    transform: scale(1.03);
}
.plan-card.popular::before {
    content: "MOST POPULAR";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
}
.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.plan-card.popular:hover {
    transform: scale(1.03) translateY(-8px);
}
.plan-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.plan-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}
.plan-price {
    font-family: "Poppins";
    font-size: 2.5rem;
    font-weight: 800;
    margin: 16px 0;
}
.plan-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray);
}
.plan-features {
    margin: 24px 0;
    text-align: left;
}
.plan-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
}
.plan-features li i {
    color: var(--secondary);
}
.plan-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
}

/* FOOTER */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 12px;
}
.footer-brand h3 span {
    color: var(--primary);
}
.footer-brand p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}
.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.footer-col li {
    margin-bottom: 10px;
}
.footer-col a {
    color: #94a3b8;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.footer-col a:hover {
    color: var(--primary);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom p {
    color: #64748b;
    font-size: 0.85rem;
}

/* CART SIDEBAR */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.cart-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 420px;
    max-width: 90vw;
    height: 100vh;
    background: var(--white);
    z-index: 9999;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}
.cart-sidebar.open {
    right: 0;
}
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}
.cart-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
}
.cart-close {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--gray);
    font-size: 1.1rem;
    transition: all 0.3s;
}
.cart-close:hover {
    background: #fee2e2;
    color: #ef4444;
}
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}
.cart-item {
    display: flex;
    gap: 14px;
    padding: 14px;
    background: var(--light);
    border-radius: var(--radius);
    margin-bottom: 12px;
    border: 1px solid var(--border);
}
.cart-item-img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}
.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart-item-info {
    flex: 1;
}
.cart-item-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}
.cart-item-info p {
    font-size: 0.8rem;
    color: var(--gray);
}
.cart-item-info .price {
    color: var(--primary);
    font-weight: 700;
    margin-top: 4px;
}
.cart-item-remove {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #fee2e2;
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-size: 0.8rem;
    transition: all 0.3s;
    align-self: center;
}
.cart-item-remove:hover {
    background: #ef4444;
    color: var(--white);
}
.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
}
.cart-empty i {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
    color: var(--border);
}
.cart-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    background: var(--light);
}
.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
}
.cart-total span:last-child {
    color: var(--primary);
    font-family: "Poppins";
}
.checkout-btn {
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
}
.checkout-btn:hover {
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

/* AUTH MODAL */
.auth-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    padding: 20px;
    overflow-y: auto;
}
.auth-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.auth-modal {
    background: var(--white);
    border-radius: 24px;
    padding: 36px;
    width: 520px;
    max-width: 100%;
    position: relative;
    box-shadow: var(--shadow-lg);
    margin: auto;
}
.auth-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--gray);
    cursor: pointer;
    z-index: 2;
}
.auth-modal h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 6px;
    text-align: center;
    color: var(--dark);
}
.auth-modal .subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.85rem;
}
.auth-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
    background: var(--light);
    border-radius: 12px;
    padding: 4px;
}
.auth-tab {
    flex: 1;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
    background: transparent;
    border: none;
    color: var(--gray);
    cursor: pointer;
}
.auth-tab.active {
    background: var(--primary);
    color: var(--white);
}
.auth-field {
    margin-bottom: 14px;
}
.auth-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
}
.auth-field label .req {
    color: #ef4444;
}
.auth-field input,
.auth-field select,
.auth-field textarea {
    width: 100%;
    padding: 11px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--light);
    color: var(--dark);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
    font-family: inherit;
}
.auth-field textarea {
    resize: vertical;
    min-height: 70px;
}
.auth-field input:focus,
.auth-field select:focus,
.auth-field textarea:focus {
    border-color: var(--primary);
}
.auth-field .field-hint {
    font-size: 0.72rem;
    color: var(--gray);
    margin-top: 4px;
}
.auth-field .file-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    border: 2px dashed var(--border);
    cursor: pointer;
    transition: all 0.3s;
    background: var(--light);
    font-size: 0.85rem;
    color: var(--gray);
}
.auth-field .file-label:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.auth-field .file-label i {
    font-size: 1.2rem;
}
.auth-field input[type="file"] {
    display: none;
}
.auth-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.auth-submit {
    width: 100%;
    padding: 13px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
    margin-top: 8px;
}
.auth-submit:hover {
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}
.auth-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Steps */
.reg-step {
    display: none;
}
.reg-step.active {
    display: block;
}
.step-header {
    text-align: center;
    margin-bottom: 20px;
}
.step-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}
.step-header p {
    font-size: 0.8rem;
    color: var(--gray);
}

/* Step Progress */
.step-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 24px;
}
.step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--light);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray);
    position: relative;
    transition: all 0.3s;
    flex-shrink: 0;
}
.step-dot.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.step-dot.done {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}
.step-line {
    width: 40px;
    height: 2px;
    background: var(--border);
    transition: background 0.3s;
}
.step-line.done {
    background: var(--secondary);
}

/* Plan Select */
.plan-select-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}
.plan-select-card {
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 14px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}
.plan-select-card:hover {
    border-color: var(--primary);
}
.plan-select-card.selected {
    border-color: var(--primary);
    background: rgba(14, 165, 233, 0.05);
}
.plan-select-card.selected.gold-sel {
    border-color: var(--gold);
    background: rgba(245, 158, 11, 0.05);
}
.plan-select-card.selected.prem-sel {
    border-color: var(--premium);
    background: rgba(139, 92, 246, 0.05);
}
.plan-select-card .plan-s-icon {
    font-size: 1.5rem;
    margin-bottom: 6px;
}
.plan-select-card .plan-s-name {
    font-size: 0.85rem;
    font-weight: 700;
}
.plan-select-card .plan-s-price {
    font-size: 0.78rem;
    color: var(--gray);
    margin-top: 2px;
}

/* Card Payment */
.card-fields {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 14px;
}
.card-fields h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
}
.card-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* Status badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
}
.status-pending {
    background: #fef3c7;
    color: #92400e;
}
.status-active {
    background: #ecfdf5;
    color: #065f46;
}
.status-rejected {
    background: #fee2e2;
    color: #991b1b;
}

/* Agency panel link */
.agency-panel-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
}
.agency-panel-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}
.agency-panel-card p {
    font-size: 0.82rem;
    color: var(--gray);
    margin-bottom: 14px;
}

@media (max-width: 768px) {
    .auth-modal {
        padding: 24px 18px;
        width: 100%;
        border-radius: 18px;
    }
    .auth-modal h2 {
        font-size: 1.3rem;
    }
    .auth-row {
        grid-template-columns: 1fr;
    }
    .plan-select-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .plan-select-card {
        display: flex;
        align-items: center;
        gap: 12px;
        text-align: left;
        padding: 12px 16px;
    }
    .plan-select-card .plan-s-icon {
        margin-bottom: 0;
    }
    .card-row {
        grid-template-columns: 1fr;
    }
    .step-line {
        width: 24px;
    }
}

/* PACKAGE DETAIL PANEL */
.pkg-panel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    padding: 30px 16px;
}
.pkg-panel-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.pkg-panel {
    background: var(--white);
    border-radius: 20px;
    width: 740px;
    max-width: 100%;
    box-shadow: var(--shadow-lg);
    position: relative;
    margin: auto;
}
.pp-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: var(--shadow);
}
.pp-close:hover {
    background: #fee2e2;
    color: #ef4444;
}
.pp-hero {
    height: 280px;
    position: relative;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}
.pp-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pp-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent 50%);
}
.pp-hero-info {
    position: absolute;
    bottom: 20px;
    left: 24px;
    right: 24px;
    z-index: 2;
    color: var(--white);
}
.pp-hero-info .pp-dest {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
    margin-bottom: 4px;
}
.pp-hero-info h2 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
}
.pp-hero-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: flex;
    gap: 8px;
}
.pp-hero-badges span {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--white);
}

.pp-body {
    padding: 24px;
}

/* Quick info strip */
.pp-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}
.pp-quick-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray);
}
.pp-quick-item i {
    color: var(--primary);
    width: 16px;
    text-align: center;
}
.pp-quick-item strong {
    color: var(--dark);
}

.pp-section {
    margin-bottom: 24px;
}
.pp-section h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pp-desc {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.8;
}

/* Itinerary */
.pp-itinerary {
    position: relative;
    padding-left: 28px;
}
.pp-itinerary::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--border);
}
.pp-day {
    position: relative;
    margin-bottom: 18px;
}
.pp-day::before {
    content: "";
    position: absolute;
    left: -24px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px var(--primary);
}
.pp-day .day-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}
.pp-day .day-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}
.pp-day .day-detail {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
}

/* Includes / Excludes */
.pp-inc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.pp-inc-list,
.pp-exc-list {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
}
.pp-inc-list h4,
.pp-exc-list h4 {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.pp-inc-list h4 {
    color: var(--secondary);
}
.pp-exc-list h4 {
    color: #ef4444;
}
.pp-inc-list li,
.pp-exc-list li {
    padding: 4px 0;
    font-size: 0.82rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
}
.pp-inc-list li::before {
    content: "✅";
    font-size: 0.7rem;
}
.pp-exc-list li::before {
    content: "❌";
    font-size: 0.7rem;
}

/* Gallery */
.pp-gallery {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
}
.pp-gallery::-webkit-scrollbar {
    height: 4px;
}
.pp-gallery::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}
.pp-gallery-item {
    width: 160px;
    height: 110px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
}
.pp-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.pp-gallery-item:hover img {
    transform: scale(1.1);
}

/* Price & Book section */
.pp-book-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    background: var(--light);
    border-radius: 0 0 20px 20px;
    position: sticky;
    bottom: 0;
}
.pp-book-price .pp-price-label {
    font-size: 0.75rem;
    color: var(--gray);
}
.pp-book-price .pp-price-value {
    font-family: "Poppins";
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}
.pp-book-price .pp-price-value span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gray);
}

/* Booking form inside panel */
.pp-booking-form {
    display: none;
}
.pp-booking-form.active {
    display: block;
}
.pp-booking-form {
    margin-top: 20px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
}
.ppb-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ppb-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.ppb-field {
    margin-bottom: 12px;
}
.ppb-field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}
.ppb-field input,
.ppb-field select {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--white);
    font-size: 0.88rem;
    color: var(--dark);
    outline: none;
}
.ppb-field input:focus,
.ppb-field select:focus {
    border-color: var(--primary);
}
.ppb-summary {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 14px;
}
.ppb-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 0.85rem;
    color: var(--gray);
}
.ppb-summary-row.total {
    font-weight: 700;
    color: var(--dark);
    font-size: 1rem;
    border-top: 1px solid var(--border);
    margin-top: 6px;
    padding-top: 8px;
}
.ppb-summary-row.total span:last-child {
    color: var(--primary);
    font-family: "Poppins";
}

@media (max-width: 768px) {
    .pp-hero {
        height: 200px;
    }
    .pp-hero-info h2 {
        font-size: 1.2rem;
    }
    .pp-body {
        padding: 18px;
    }
    .pp-inc-grid {
        grid-template-columns: 1fr;
    }
    .pp-book-bar {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .pp-book-bar .btn {
        width: 100%;
        justify-content: center;
    }
    .ppb-row {
        grid-template-columns: 1fr;
    }
}

/* GUIDE DETAIL PANEL */
.guide-panel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    padding: 30px 16px;
}
.guide-panel-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.guide-panel {
    background: var(--white);
    border-radius: 20px;
    width: 760px;
    max-width: 100%;
    box-shadow: var(--shadow-lg);
    position: relative;
    margin: auto;
}
.gp-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: var(--shadow);
}
.gp-close:hover {
    background: #fee2e2;
    color: #ef4444;
}
.gp-hero {
    height: 300px;
    position: relative;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}
.gp-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gp-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 60%);
}
.gp-hero-info {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 60px;
    z-index: 2;
    color: var(--white);
}
.gp-hero-info .gp-cat {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.gp-hero-info h1 {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.gp-body {
    padding: 28px;
}
.gp-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
    font-size: 0.82rem;
    color: var(--gray);
}
.gp-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.gp-meta i {
    color: var(--primary);
    width: 14px;
}
.gp-intro {
    font-size: 1.05rem;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 28px;
    font-weight: 500;
}
.gp-section {
    margin-bottom: 28px;
}
.gp-section h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    padding-left: 14px;
    border-left: 3px solid var(--primary);
}
.gp-section-img {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 14px;
    max-height: 300px;
}
.gp-section-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gp-section p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.8;
}
.gp-tips {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
}
.gp-tips h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.gp-tips ul {
    list-style: none;
}
.gp-tips li {
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--gray);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}
.gp-tips li::before {
    content: "💡";
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .gp-hero {
        height: 220px;
    }
    .gp-hero-info h1 {
        font-size: 1.2rem;
    }
    .gp-body {
        padding: 20px;
    }
    .gp-intro {
        font-size: 0.95rem;
    }
    .gp-section h2 {
        font-size: 1rem;
    }
    .gp-section p {
        font-size: 0.85rem;
    }
}

/* AGENCY DETAIL PANEL */
.agency-panel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    padding: 30px 16px;
}
.agency-panel-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.agency-panel {
    background: var(--white);
    border-radius: 20px;
    width: 740px;
    max-width: 100%;
    box-shadow: var(--shadow-lg);
    position: relative;
    margin: auto;
}
.ap-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: var(--shadow);
}
.ap-close:hover {
    background: #fee2e2;
    color: #ef4444;
}

/* Hero Banner */
.ap-hero {
    height: 260px;
    position: relative;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}
.ap-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ap-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 60%);
}
.ap-hero-info {
    position: absolute;
    bottom: 20px;
    left: 24px;
    z-index: 2;
    color: var(--white);
}
.ap-hero-info h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 4px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.ap-hero-info .ap-loc {
    font-size: 0.85rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 5px;
}
.ap-hero-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: flex;
    gap: 8px;
}

/* Body */
.ap-body {
    padding: 24px;
}
.ap-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}
.ap-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--gray);
}
.ap-meta-item i {
    color: var(--primary);
    width: 16px;
}
.ap-meta-item strong {
    color: var(--dark);
}

.ap-section {
    margin-bottom: 24px;
}
.ap-section h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ap-desc {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

/* Services */
.ap-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.ap-service {
    background: var(--light);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    color: var(--dark);
    font-weight: 500;
}

/* Gallery */
.ap-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.ap-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    position: relative;
}
.ap-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.ap-gallery-item:hover img {
    transform: scale(1.1);
}
.ap-gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s;
}
.ap-gallery-item:hover::after {
    background: rgba(0, 0, 0, 0.15);
}

/* Reviews */
.ap-review {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 10px;
}
.ap-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.ap-review-header .name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--dark);
}
.ap-review-header .country {
    font-size: 0.75rem;
    color: var(--gray);
}
.ap-review p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
    font-style: italic;
}

/* Actions */
.ap-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10010;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.lightbox-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    object-fit: contain;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}
.lightbox-prev {
    left: 20px;
}
.lightbox-next {
    right: 20px;
}
.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .ap-hero {
        height: 200px;
    }
    .ap-hero-info h2 {
        font-size: 1.2rem;
    }
    .ap-body {
        padding: 18px;
    }
    .ap-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .ap-meta {
        gap: 10px;
    }
    .ap-actions {
        flex-direction: column;
    }
    .ap-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* BOOKING MODAL */
.booking-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.booking-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.booking-modal {
    background: var(--white);
    border-radius: 24px;
    padding: 50px;
    width: 500px;
    max-width: 90vw;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.booking-modal .check-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), #16a34a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: var(--white);
    animation: scaleIn 0.5s ease;
}
@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}
.booking-modal h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark);
}
.booking-modal p {
    color: var(--gray);
    margin-bottom: 24px;
}
.booking-ref {
    background: var(--light);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    border: 1px solid var(--border);
}
.booking-ref .ref-label {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 4px;
}
.booking-ref .ref-code {
    font-family: "Poppins";
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
}

/* TOAST */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.toast {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    box-shadow: var(--shadow-lg);
    animation:
        slideInRight 0.4s ease,
        slideOutRight 0.4s ease 2.6s forwards;
}
.toast .toast-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.toast .toast-icon.success {
    background: rgba(34, 197, 94, 0.1);
    color: var(--secondary);
}
.toast .toast-icon.info {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary);
}
.toast .toast-icon.warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent);
}
.toast .toast-msg {
    font-size: 0.9rem;
    color: var(--dark);
}
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* BACK TO TOP */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
    border: none;
}
.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.5);
}

/* RESPONSIVE */
/* ============ RESPONSIVE ============ */
@media (max-width: 1280px) {
    .container {
        max-width: 100%;
        padding: 0 24px;
    }
    .hero-title {
        font-size: 3rem;
    }
    .premium-card {
        min-width: 320px;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.6rem;
    }
    .hero-stats {
        gap: 16px;
    }
    .hero-stat {
        padding: 16px 22px;
    }
    .hero-stat .number {
        font-size: 1.5rem;
    }
    .floating-el {
        display: none;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .premium-card {
        min-width: 300px;
    }
    .gold-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
    .packages-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    .guides-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
    .section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 2rem;
    }
    .plans-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    /* Navbar */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(15, 23, 42, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 20px;
        z-index: 999;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        color: #fff;
        font-size: 1.2rem;
        font-weight: 600;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .nav-links a:hover {
        color: var(--primary);
    }
    .nav-toggle {
        display: flex;
    }
    .navbar {
        padding: 10px 0;
    }
    .nav-logo h1 {
        font-size: 1.3rem;
    }
    .nav-logo .logo-icon {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }
    .switch-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    .switch-btn span:last-child {
        display: none;
    }
    .nav-btn {
        width: 38px;
        height: 38px;
    }
    #authBtn {
        padding: 8px 14px !important;
        font-size: 0.78rem !important;
    }

    /* Hero */
    .hero {
        min-height: 100vh;
    }
    .hero-content {
        padding: 100px 16px 40px;
    }
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: -0.5px;
    }
    .hero-desc {
        font-size: 0.92rem;
        margin-bottom: 24px;
    }
    .hero-badge {
        font-size: 0.78rem;
        padding: 8px 16px;
    }
    .hero-actions {
        gap: 10px;
        margin-bottom: 24px;
    }
    .hero-actions .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    .hero-stat {
        padding: 14px 18px;
        flex: 1;
        min-width: 90px;
    }
    .hero-stat .number {
        font-size: 1.3rem;
    }
    .hero-stat .label {
        font-size: 0.7rem;
    }

    /* Search */
    .hero-search {
        padding: 16px;
        border-radius: 16px;
    }
    .search-row {
        flex-direction: column;
        gap: 10px;
    }
    .search-field input,
    .search-field select {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    .search-btn {
        width: 100%;
        justify-content: center;
        padding: 12px;
    }

    /* Sections */
    .section {
        padding: 50px 0;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .section-subtitle {
        font-size: 0.92rem;
        margin-bottom: 2rem;
    }
    .container {
        padding: 0 16px;
    }

    /* Categories */
    .cat-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .cat-card {
        padding: 18px 10px;
    }
    .cat-icon {
        font-size: 2rem;
    }
    .cat-card h4 {
        font-size: 0.8rem;
    }

    /* Premium */
    .premium-container {
        padding: 20px;
        border-radius: 16px;
    }
    .premium-slider {
        gap: 14px;
    }
    .premium-card {
        min-width: 260px;
    }
    .premium-card-img {
        height: 160px;
    }
    .premium-card-body h3 {
        font-size: 1rem;
    }

    /* Gold */
    .gold-container {
        padding: 20px;
        border-radius: 16px;
    }
    .gold-header .trophy {
        font-size: 2rem;
    }
    .gold-header h2 {
        font-size: 1.5rem;
    }
    .gold-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .gold-card-img {
        height: 160px;
    }

    /* Silver */
    .silver-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .silver-card-img {
        height: 110px;
    }
    .silver-card-body {
        padding: 10px;
    }
    .silver-card-body h4 {
        font-size: 0.85rem;
    }

    /* Packages */
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .filter-tabs {
        gap: 6px;
    }
    .filter-tab {
        padding: 8px 14px;
        font-size: 0.78rem;
    }
    .package-img {
        height: 180px;
    }
    .package-body h3 {
        font-size: 1rem;
    }

    /* Guides */
    .guides-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .guide-card-img {
        height: 160px;
    }

    /* Membership */
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .plan-card {
        padding: 24px;
    }
    .plan-card.popular {
        transform: none;
    }
    .plan-card.popular:hover {
        transform: translateY(-6px);
    }
    .plan-price {
        font-size: 2rem;
    }

    /* Footer */
    .footer {
        padding: 40px 0 16px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    /* Cart */
    .cart-sidebar {
        width: 100%;
        max-width: 100vw;
    }
    .toast {
        min-width: auto;
        max-width: calc(100vw - 40px);
    }
    .toast .toast-msg {
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    .hero-desc {
        font-size: 0.85rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-stats {
        flex-direction: column;
        gap: 8px;
    }
    .hero-stat {
        width: 100%;
    }
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .cat-card {
        padding: 14px 8px;
    }
    .cat-icon {
        font-size: 1.6rem;
        margin-bottom: 6px;
    }
    .cat-card h4 {
        font-size: 0.75rem;
    }
    .cat-card p {
        font-size: 0.65rem;
    }
    .section-title {
        font-size: 1.3rem;
    }
    .section-subtitle {
        font-size: 0.85rem;
    }
    .premium-card {
        min-width: 240px;
    }
    .premium-card-img {
        height: 140px;
    }
    .silver-grid {
        grid-template-columns: 1fr;
    }
    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
    }
    .filter-tab {
        white-space: nowrap;
        flex-shrink: 0;
    }
    .package-body .features {
        gap: 4px;
    }
    .package-body .feature {
        font-size: 0.68rem;
    }
    .plan-card {
        padding: 20px 16px;
    }
    .plan-features li {
        font-size: 0.82rem;
    }
    .gold-rank-info {
        font-size: 0.75rem;
        padding: 10px 16px;
    }

    /* Loader */
    .loader-plane-wrap {
        width: 180px;
        height: 180px;
    }
    .loader-globe {
        width: 130px;
        height: 130px;
    }
    .loader-brand {
        font-size: 1.6rem;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    width: 50px; /* ඔබේ ලෝගෝ එකේ ප්‍රමාණයට අනුව මෙය වෙනස් කරන්න */
    height: 50px;
    object-fit: contain;
    margin-right: 10px;
}

.intl-section {
  padding: 60px 0;
  background: #f8fafc;
}

/* Tabs */
.intl-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab {
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  background: #e5e7eb;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
}

.tab.active {
  background: #0ea5e9;
  color: #fff;
}

/* Slider */
.intl-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
  scrollbar-width: none;
}

/* Hide scrollbar */
.intl-slider::-webkit-scrollbar {
  display: none;
}

/* Cards */
.card {
  min-width: 250px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  transition: 0.3s;
  scroll-snap-align: start;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card h4 {
  padding: 10px;
}

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

/* Responsive */
@media (max-width: 768px) {
  .card {
    min-width: 180px;
  }
}

/* Beautiful Places */

/* BEAUTIFUL PLACES */
.beautiful-section {
    background: var(--white);
    padding: 60px 0 70px;
}
.beautiful-header {
    text-align: center;
    margin-bottom: 36px;
}
.beautiful-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}
.beautiful-header p {
    color: var(--gray);
    font-size: 0.95rem;
}

.beautiful-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 14px;
}
/* First item spans 2 rows */
.beautiful-grid .bp-card:nth-child(1) {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
}
/* 5th item spans 2 columns */
.beautiful-grid .bp-card:nth-child(5) {
    grid-column: 2 / 4;
}

.bp-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}
.bp-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.bp-card:hover img {
    transform: scale(1.08);
}
.bp-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0) 55%
    );
    transition: background 0.3s;
}
.bp-card:hover::after {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.1) 60%
    );
}
.bp-card-info {
    position: absolute;
    bottom: 14px;
    left: 16px;
    right: 16px;
    z-index: 2;
    color: var(--white);
}
.bp-card-info h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 3px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}
.bp-card-info p {
    font-size: 0.75rem;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 4px;
}
.bp-card-info .bp-tag {
    position: absolute;
    top: -100%;
    right: 0;
    /* We'll position this at top of card instead */
}
.bp-card .bp-top-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.bp-card .bp-rating {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 3px;
}
.bp-card .bp-rating i {
    color: #fbbf24;
    font-size: 0.6rem;
}

/* Scroll row for more places */
.beautiful-scroll-wrap {
    margin-top: 20px;
}
.beautiful-scroll-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.beautiful-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}
.beautiful-scroll::-webkit-scrollbar {
    height: 4px;
}
.beautiful-scroll::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}
.bs-card {
    flex-shrink: 0;
    width: 200px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    scroll-snap-align: start;
}
.bs-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    transition: transform 0.4s;
}
.bs-card:hover img {
    transform: scale(1.08);
}
.bs-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
}
.bs-card-info {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    z-index: 2;
    color: var(--white);
}
.bs-card-info h4 {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 2px;
}
.bs-card-info p {
    font-size: 0.65rem;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .beautiful-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 200px);
    }
    .beautiful-grid .bp-card:nth-child(5) {
        grid-column: auto;
    }
}
@media (max-width: 768px) {
    .beautiful-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 180px);
    }
    .beautiful-grid .bp-card:nth-child(1) {
        grid-row: auto;
    }
    .beautiful-grid .bp-card:nth-child(5) {
        grid-column: auto;
    }
    .beautiful-header h2 {
        font-size: 1.5rem;
    }
    .bs-card {
        width: 170px;
    }
    .bs-card img {
        height: 120px;
    }
}
@media (max-width: 480px) {
    .beautiful-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(4, 160px);
        gap: 10px;
    }
}
