/* =========================================================
   UNIQUE VACATIONS INDIA
   Complete Production CSS
   ========================================================= */

/* =========================
   ROOT VARIABLES
========================= */

:root {
    --bg: #faf8f5;
    --bg-light: #ffffff;

    --brown: #4a3728;

    --primary: #2e7d32;
    --primary-light: #388e3c;

    --blue: #1976d2;

    --accent: #d32f2f;
    --accent-light: #f57c00;

    --sun: #ffb300;

    --text: #2c2419;
    --muted: #5c534a;

    --glass: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(74, 55, 40, 0.12);

    --radius: 16px;
    --radius-lg: 24px;

    --shadow: 0 8px 32px rgba(74, 55, 40, 0.10);
    --shadow-glow: 0 0 40px rgba(46, 125, 50, 0.15);

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
}


/* =========================
   RESET
========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    min-height: 100vh;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
}


/* =========================
   GLOBAL BACKGROUND
========================= */

#hero-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.site-wrap {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;

    background: rgba(255, 255, 255, 0.95);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border-bottom: 1px solid var(--glass-border);

    box-shadow:
        0 2px 16px rgba(74, 55, 40, 0.06);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 14px 0;

    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo {
    height: 56px;
    width: auto;
    max-width: min(280px, 55vw);
    object-fit: contain;
}

.footer-logo {
    height: 72px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}


/* =========================
   NAVIGATION
========================= */

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.nav-links a {
    padding: 8px 14px;

    border-radius: 999px;

    font-size: 0.88rem;
    font-weight: 500;

    color: var(--muted);

    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);

    background: rgba(46, 125, 50, 0.08);
}


/* =========================
   NAV ACTIONS
========================= */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}


/* =========================
   MOBILE NAV TOGGLE
========================= */

.nav-toggle {
    display: none;

    flex-direction: column;
    justify-content: center;

    gap: 5px;

    background: none;
    border: none;

    cursor: pointer;

    padding: 8px;
}

.nav-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    background: var(--text);

    border-radius: 2px;

    transition: 0.3s ease;
}


/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 12px 24px;

    border-radius: 999px;

    font-weight: 600;
    font-size: 0.92rem;

    border: none;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-primary {
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-light)
        );

    color: #fff;

    box-shadow: var(--shadow-glow);
}

.btn-accent {
    background:
        linear-gradient(
            135deg,
            var(--accent),
            var(--accent-light)
        );

    color: #fff;
}

.btn-outline {
    background: transparent;

    border: 2px solid var(--glass-border);

    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--primary-light);

    background: var(--glass);
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: #fff;
}


/* Hero image */

.hero-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;

    filter: brightness(1.05);
}


/* Hero overlay */

.hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.60),
            rgba(0, 0, 0, 0.28),
            rgba(0, 0, 0, 0.18)
        );
}


/* Hero content */

.hero .container {
    position: relative;

    z-index: 2;

    width: min(1000px, 92vw);

    margin: 0 auto;

    text-align: center;
}


/* Hero badge */

.hero-badge {
    display: inline-block;

    padding: 8px 20px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.16);

    border: 1px solid rgba(255, 255, 255, 0.40);

    font-size: 0.85rem;

    font-weight: 600;

    letter-spacing: 0.06em;

    text-transform: uppercase;

    color: #fff;

    margin-bottom: 24px;
}


/* Hero heading */

.hero h1 {
    font-family: var(--font-heading);

    font-size: clamp(2.4rem, 6vw, 4rem);

    line-height: 1.15;

    margin-bottom: 20px;

    color: #fff;

    text-align: center;

    text-shadow:
        0 3px 18px rgba(0, 0, 0, 0.35);
}


/* Hero subtitle */

.hero-sub {
    font-size: 1.15rem;

    color: rgba(255, 255, 255, 0.92);

    max-width: 700px;

    margin: 0 auto 28px;

    text-align: center;
}


/* Hero stats */

.hero-stats {
    display: flex;

    justify-content: center;

    gap: 40px;

    flex-wrap: wrap;

    margin: 36px 0;
}

.hero-stat {
    text-align: center;
}

.hero-stat strong {
    display: block;

    font-family: var(--font-heading);

    font-size: 1.8rem;

    color: #fff;

    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-stat span {
    font-size: 0.85rem;

    color: rgba(255, 255, 255, 0.85);
}


/* Hero CTA */

.hero-cta {
    display: flex;

    gap: 14px;

    justify-content: center;

    flex-wrap: wrap;
}


/* =========================
   SECTIONS
========================= */

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;

    margin-bottom: 48px;
}

.section-title h2 {
    font-family: var(--font-heading);

    font-size: clamp(1.8rem, 4vw, 2.5rem);

    margin-bottom: 12px;

    color: var(--brown);
}

.section-title p {
    color: var(--muted);

    max-width: 560px;

    margin: 0 auto;
}


/* =========================
   PAGE HERO
========================= */

.page-hero {
    padding: 60px 0 40px;

    text-align: center;

    background:
        linear-gradient(
            180deg,
            rgba(25, 118, 210, 0.08),
            transparent
        );
}

.page-hero h1 {
    font-family: var(--font-heading);

    font-size: clamp(2rem, 5vw, 3rem);

    margin-bottom: 10px;

    color: var(--brown);
}

.page-hero p {
    color: var(--muted);
}


/* =========================
   GRIDS
========================= */

.grid-2 {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 24px;
}

.grid-3 {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}

.grid-4 {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


/* =========================
   GLASS CARDS
========================= */

.glass {
    background: var(--glass);

    border: 1px solid var(--glass-border);

    border-radius: var(--radius);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.glass-card {
    padding: 28px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-4px);

    box-shadow: var(--shadow);
}


/* =========================
   DESTINATION CARDS
========================= */

.dest-card {
    overflow: hidden;

    padding: 0;
}


/* Destination image */

.dest-img {
    height: 200px;

    position: relative;

    overflow: hidden;
}

.dest-img img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.5s ease;
}

.dest-card:hover .dest-img img {
    transform: scale(1.06);
}


/* Image overlay */

.dest-img::after {
    content: '';

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent 30%,
            rgba(44, 36, 25, 0.85)
        );

    z-index: 1;

    pointer-events: none;
}


/* Destination title */

.dest-img h3 {
    position: absolute;

    left: 20px;
    bottom: 18px;

    z-index: 2;

    font-family: var(--font-heading);

    font-size: 1.3rem;

    color: #fff;
}


/* Destination body */

.dest-body {
    padding: 20px;
}

.dest-body p {
    color: var(--muted);

    font-size: 0.9rem;

    margin-bottom: 14px;
}


/* Destination meta */

.dest-meta {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 10px;

    font-size: 0.85rem;
}

.dest-price {
    color: var(--accent);

    font-weight: 700;

    font-size: 1.1rem;
}

.dest-tag {
    padding: 4px 12px;

    border-radius: 999px;

    background:
        rgba(46, 125, 50, 0.12);

    color: var(--primary);

    font-size: 0.78rem;
}


/* =========================
   PACKAGE CARDS
========================= */

.package-card .package-header {
    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 16px;
}

.package-card h3 {
    font-family: var(--font-heading);

    font-size: 1.2rem;
}

.package-features {
    list-style: none;

    margin: 16px 0;
}

.package-features li {
    padding: 6px 0;

    color: var(--muted);

    font-size: 0.9rem;
}

.package-features li::before {
    content: '✓ ';

    color: var(--primary-light);

    font-weight: 700;
}

.package-price {
    font-family: var(--font-heading);

    font-size: 1.6rem;

    color: var(--accent);

    margin: 12px 0;
}

.package-price small {
    font-size: 0.85rem;

    color: var(--muted);

    font-family: var(--font-body);
}


/* =========================
   FEATURE ICONS
========================= */

.feature-icon {
    width: 56px;
    height: 56px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            #42a5f5
        );

    display: grid;

    place-items: center;

    font-size: 1.5rem;

    margin-bottom: 16px;
}

.service-card h3 {
    font-family: var(--font-heading);

    margin-bottom: 10px;
}

.service-card p {
    color: var(--muted);

    font-size: 0.92rem;
}


/* =========================
   TESTIMONIALS
========================= */

.testimonial-card {
    text-align: center;
}

.testimonial-card .stars {
    color: var(--sun);

    font-size: 1.1rem;

    margin-bottom: 12px;
}

.testimonial-card blockquote {
    font-style: italic;

    color: var(--muted);

    margin-bottom: 16px;

    font-size: 0.95rem;
}

.testimonial-card cite {
    font-style: normal;

    font-weight: 600;

    color: var(--text);

    font-size: 0.9rem;
}

.testimonial-card .location {
    font-size: 0.82rem;

    color: var(--muted);
}


/* =========================
   CTA BANNER
========================= */

.cta-banner {
    padding: 60px 40px;

    text-align: center;

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            135deg,
            rgba(46, 125, 50, 0.12),
            rgba(25, 118, 210, 0.10)
        );

    border: 1px solid var(--glass-border);
}

.cta-banner h2 {
    font-family: var(--font-heading);

    font-size: clamp(1.6rem, 3vw, 2.2rem);

    margin-bottom: 12px;
}

.cta-banner p {
    color: var(--muted);

    margin-bottom: 24px;

    max-width: 500px;

    margin-left: auto;
    margin-right: auto;
}

.cta-row {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;

    justify-content: center;
}


/* =========================
   FORMS
========================= */

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    margin-bottom: 6px;

    font-size: 0.88rem;

    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 12px 16px;

    border-radius: 10px;

    border: 1px solid var(--glass-border);

    background: var(--bg-light);

    color: var(--text);

    font-family: inherit;

    font-size: 0.95rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;

    border-color: var(--primary-light);
}

.form-group textarea {
    min-height: 120px;

    resize: vertical;
}


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

.site-footer {
    margin-top: auto;

    padding: 60px 0 24px;

    border-top: 1px solid var(--glass-border);

    background: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1fr;

    gap: 32px;

    margin-bottom: 40px;
}

.footer-grid h4 {
    font-family: var(--font-heading);

    margin-bottom: 16px;

    color: var(--brown);
}

.footer-grid ul {
    list-style: none;
}

.footer-grid li {
    margin-bottom: 8px;
}

.footer-grid a {
    color: var(--muted);

    font-size: 0.88rem;

    transition: color 0.2s ease;
}

.footer-grid a:hover {
    color: var(--primary-light);
}


/* =========================
   SOCIAL LINKS
========================= */

.social-links {
    display: flex;

    gap: 10px;

    margin-top: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;

    border-radius: 10px;

    background: var(--glass);

    border: 1px solid var(--glass-border);

    display: grid;

    place-items: center;

    font-size: 1rem;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.social-links a:hover {
    background: var(--primary);

    color: #fff;
}


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

.footer-bottom {
    text-align: center;

    padding-top: 24px;

    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    color: var(--muted);

    font-size: 0.82rem;
}


/* =========================
   ARROW LINK
========================= */

.link-arrow {
    display: inline-block;

    margin-top: 12px;

    font-weight: 600;

    color: var(--primary-light);

    transition:
        transform 0.2s ease;
}

.link-arrow:hover {
    transform: translateX(4px);
}


/* =========================
   REVEAL ANIMATION
========================= */

.reveal {
    opacity: 0;

    transform: translateY(24px);

    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================
   DESTINATION GRADIENTS
========================= */

.bg-goa {
    background:
        linear-gradient(
            135deg,
            #0d9488,
            #065f46
        );
}

.bg-kerala {
    background:
        linear-gradient(
            135deg,
            #059669,
            #047857
        );
}

.bg-rajasthan {
    background:
        linear-gradient(
            135deg,
            #d97706,
            #92400e
        );
}

.bg-himachal {
    background:
        linear-gradient(
            135deg,
            #0284c7,
            #1e3a5f
        );
}

.bg-kashmir {
    background:
        linear-gradient(
            135deg,
            #6366f1,
            #312e81
        );
}

.bg-ladakh {
    background:
        linear-gradient(
            135deg,
            #78716c,
            #44403c
        );
}

.bg-andaman {
    background:
        linear-gradient(
            135deg,
            #0891b2,
            #164e63
        );
}

.bg-varanasi {
    background:
        linear-gradient(
            135deg,
            #ea580c,
            #7c2d12
        );
}


/* =========================
   FAQ
========================= */

.faq-item {
    margin-bottom: 12px;
}

.faq-item summary {
    padding: 16px 20px;

    cursor: pointer;

    font-weight: 600;

    list-style: none;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';

    font-size: 1.2rem;

    color: var(--primary-light);

    flex-shrink: 0;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 20px 16px;

    color: var(--muted);

    font-size: 0.92rem;
}


/* =========================================================
   RESPONSIVE DESIGN
========================================================= */


/* =========================
   TABLET
   <= 900px
========================= */

@media (max-width: 900px) {

    /* Grid */

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }


    /* Footer */

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* Navigation */

    .nav-links {
        display: none;
    }

    .nav-links.open {
        display: flex;

        flex-direction: column;

        align-items: stretch;

        position: absolute;

        top: 100%;

        left: 0;
        right: 0;

        background: rgba(255, 255, 255, 0.98);

        padding: 16px;

        border-bottom:
            1px solid var(--glass-border);

        box-shadow: var(--shadow);
    }

    .nav-links.open a {
        width: 100%;

        text-align: center;
    }


    /* Mobile menu button */

    .nav-toggle {
        display: flex;
    }


    /* Logo */

    .brand-logo {
        height: 70px;

        width: auto;

        max-width: min(300px, 65vw);

        object-fit: contain;
    }


    /* Hero */

    .hero {
        min-height: 600px;
    }

    .hero h1 {
        font-size: clamp(
            2.2rem,
            7vw,
            3.5rem
        );
    }

    .hero-sub {
        font-size: 1.05rem;
    }


    /* Section */

    .section {
        padding: 65px 0;
    }
}


/* =========================
   MOBILE
   <= 600px
========================= */

@media (max-width: 600px) {

    /* Container */

    .container {
        width: min(92vw, 100%);
    }


    /* Header */

    .nav {
        padding: 10px 0;

        gap: 8px;
    }

    .brand-logo {
        height: 58px;

        max-width: 220px;
    }

    .nav-actions {
        gap: 4px;
    }


    /* Buttons */

    .btn {
        padding: 10px 18px;

        font-size: 0.86rem;
    }

    .btn-sm {
        padding: 7px 14px;

        font-size: 0.8rem;
    }


    /* Grid */

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }


    /* Hero */

    .hero {
        min-height: 620px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.65),
                rgba(0, 0, 0, 0.35)
            );
    }

    .hero .container {
        width: 92vw;
    }

    .hero h1 {
        font-size: clamp(
            2rem,
            10vw,
            3rem
        );

        line-height: 1.12;

        margin-bottom: 16px;
    }

    .hero-sub {
        font-size: 0.98rem;

        max-width: 95%;

        margin-bottom: 22px;
    }

    .hero-badge {
        font-size: 0.72rem;

        padding: 7px 15px;

        margin-bottom: 18px;
    }


    /* Hero Stats */

    .hero-stats {
        gap: 20px;

        margin: 28px 0;
    }

    .hero-stat strong {
        font-size: 1.45rem;
    }

    .hero-stat span {
        font-size: 0.75rem;
    }


    /* Hero CTA */

    .hero-cta {
        flex-direction: column;

        align-items: center;

        gap: 10px;
    }

    .hero-cta .btn {
        width: min(
            280px,
            90vw
        );
    }


    /* Section */

    .section {
        padding: 50px 0;
    }

    .section-title {
        margin-bottom: 32px;
    }


    /* Page Hero */

    .page-hero {
        padding: 45px 0 30px;
    }


    /* Cards */

    .glass-card {
        padding: 22px;
    }


    /* Destination image */

    .dest-img {
        height: 210px;
    }


    /* CTA */

    .cta-banner {
        padding: 40px 24px;
    }

    .cta-row {
        flex-direction: column;

        align-items: center;
    }

    .cta-row .btn {
        width: min(
            280px,
            90vw
        );
    }


    /* Footer */

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .footer-logo {
        height: 60px;
    }
}


/* =========================
   VERY SMALL DEVICES
   <= 400px
========================= */

@media (max-width: 400px) {

    .brand-logo {
        height: 52px;

        max-width: 190px;
    }

    .hero {
        min-height: 590px;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero-sub {
        font-size: 0.92rem;
    }

    .hero-stats {
        gap: 14px;
    }

    .hero-stat strong {
        font-size: 1.25rem;
    }

    .hero-stat span {
        font-size: 0.7rem;
    }
}


/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* =========================================================
   DOMESTIC / INTERNATIONAL TOGGLE
   Shared by Packages and Destinations pages
   ========================================================= */

.destination-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    margin: 0 auto 40px;
    padding: 5px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    box-shadow: var(--shadow);
}

.destination-toggle button {
    min-width: 150px;
    padding: 11px 22px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.destination-toggle button:hover {
    color: var(--primary);
}

.destination-toggle button.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.destination-toggle button:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

.package-group[hidden] {
    display: none !important;
}

@media (max-width: 600px) {
    .destination-toggle {
        width: 100%;
        max-width: 360px;
        margin-bottom: 30px;
    }

    .destination-toggle button {
        min-width: 0;
        flex: 1;
        padding: 10px 12px;
        font-size: 0.82rem;
    }
}


/* =========================================================
   SHARED DOMESTIC / INTERNATIONAL TOGGLE
   ========================================================= */

.destination-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: fit-content;
    margin: 0 auto 40px;
    padding: 5px;
    background: var(--bg-light);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    box-shadow: var(--shadow);
}

.destination-toggle button {
    min-width: 150px;
    padding: 11px 22px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.destination-toggle button:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.destination-toggle button.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.destination-toggle button:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

.package-group[hidden] {
    display: none !important;
}

@media (max-width: 600px) {
    .destination-toggle {
        width: min(100%, 360px);
        margin-bottom: 30px;
    }

    .destination-toggle button {
        min-width: 0;
        flex: 1;
        padding: 10px 12px;
        font-size: 0.82rem;
    }
}
