
        /* ============================================== */
        /* DESTINATIONS PAGE - ISOLATED STYLES */
        /* No conflicts with navbar/footer CSS */
        /* ============================================== */
        
        /* CSS Variables - Isolated from global */
        :root {
            --dest-color-primary: #0a1929;
            --dest-color-secondary: #e8c16f;
            --dest-color-accent: #9d6b29;
            --dest-color-dark: #050a0f;
            --dest-color-light: #f5f3f0;
            --dest-color-text: #e0e0e0;
            --dest-font-heading: 'Cinzel', 'Georgia', serif;
            --dest-font-body: 'Arial', sans-serif;
            --dest-font-script: 'Dancing Script', cursive;
            --dest-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --dest-border-radius: 12px;
            --dest-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }


*, *::before, *::after {
    /* Use border-box model for easy sizing and layout */
    box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
    margin: 0;
}

ul[role='list'], ol[role='list'] {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}



/* ============================================== */
/* 2. BASE STYLES & UTILITIES */
/* ============================================== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--color-text-dark);
    line-height: 1.6;
    background-color: var(--color-text-light);
    overflow-x: hidden;
}

/* Track (the main bar area) */
::-webkit-scrollbar {
    width: 8px; /* Width of the entire scrollbar */
}

/* Thumb (the movable part) */
::-webkit-scrollbar-thumb {
    background-color: var(--color-secondary); /* Gold/Yellow color */
    border-radius: 4px; /* Rounded corners */
    /* Add a subtle dark border/shadow to separate it from the background */
    border: 2px solid var(--color-primary); 
}

/* Track background */
::-webkit-scrollbar-track {
    background: var(--color-primary); /* Dark background for the track */
}

/* On hover, make it slightly brighter */
::-webkit-scrollbar-thumb:hover {
    background-color: #f1d380; /* Lighter gold on hover */
}
        
        /* Reset for destinations page only */
        .destinations-page * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .destinations-page {
            font-family: var(--dest-font-body);
            background: var(--dest-color-dark);
            color: var(--dest-color-text);
            line-height: 1.7;
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        /* Hero Section */
        .dest-hero-section {
            position: relative;
            height: clamp(500px, 85vh, 800px);
            min-height: 500px;
            overflow: hidden;
            isolation: isolate;
            display: flex;
            flex-direction: column;
        }
        
        .dest-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .dest-hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            transform: scale(1.1);
        }
        
        @media (prefers-reduced-motion: no-preference) {
            .dest-hero-slide {
                animation: dest-zoom-out 20s linear infinite;
            }
        }
        
        @keyframes dest-zoom-out {
            0% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        .dest-hero-slide.active {
            opacity: 1;
            transform: scale(1);
        }
        
        .dest-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to bottom,
                rgba(5, 10, 15, 0.85) 0%,
                rgba(5, 10, 15, 0.7) 30%,
                rgba(5, 10, 15, 0.5) 70%,
                rgba(5, 10, 15, 0.3) 100%
            );
            z-index: 2;
        }
        
        .dest-hero-content {
            position: relative;
            z-index: 3;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: clamp(20px, 5vw, 60px) clamp(20px, 5vw, 40px);
        }
        
        .dest-hero-title {
            font-family: var(--dest-font-heading);
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 700;
            color: var(--dest-color-light);
            line-height: 1.1;
            margin-bottom: clamp(15px, 3vw, 25px);
            text-transform: uppercase;
            text-align: center;
            max-width: 100%;
            overflow-wrap: break-word;
        }
        
        .dest-hero-pre-title {
            display: block;
            font-family: var(--dest-font-script);
            font-size: clamp(1.8rem, 4vw, 3rem);
            color: var(--dest-color-secondary);
            font-weight: 400;
            text-transform: none;
            margin-bottom: -5px;
        }
        
        .dest-hero-subtitle {
            font-size: clamp(1rem, 1.6vw, 1.2rem);
            max-width: min(800px, 90vw);
            margin: 0 auto clamp(30px, 5vw, 50px);
            opacity: 0.9;
            line-height: 1.7;
            text-align: center;
            padding: 0 clamp(10px, 3vw, 20px);
        }
        
        .dest-hero-stats {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: clamp(20px, 4vw, 40px);
            margin-top: clamp(20px, 4vw, 30px);
            padding: 0 clamp(10px, 3vw, 20px);
        }
        
        .dest-stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            min-width: 120px;
        }
        
        .dest-stat-number {
            font-family: var(--dest-font-heading);
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            color: var(--dest-color-secondary);
            line-height: 1;
            margin-bottom: 5px;
        }
        
        .dest-stat-label {
            font-size: clamp(0.8rem, 1.2vw, 0.95rem);
            color: var(--dest-color-light);
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
            line-height: 1.3;
            max-width: 150px;
        }
        
        /* Hero Bottom Navigation */
        .dest-hero-bottom-nav {
            position: relative;
            z-index: 4;
            background: rgba(5, 10, 15, 0.8);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(232, 193, 111, 0.2);
            padding: clamp(15px, 3vw, 20px) 0;
        }
        
        .dest-hero-nav-container {
            max-width: min(1400px, 95vw);
            margin: 0 auto;
            padding: 0 clamp(20px, 5vw, 40px);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .dest-breadcrumb {
            font-size: clamp(0.9rem, 1.2vw, 1rem);
            color: rgba(255, 255, 255, 0.9);
        }
        
        .dest-breadcrumb a {
            color: var(--dest-color-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }
        
        .dest-breadcrumb a:hover {
            color: var(--dest-color-light);
            text-decoration: underline;
        }
        
        .dest-breadcrumb-separator {
            margin: 0 10px;
            color: rgba(255, 255, 255, 0.5);
        }
        
        .dest-breadcrumb-current {
            color: var(--dest-color-light);
            opacity: 0.8;
            font-weight: 500;
        }
        
        .dest-scroll-indicator {
            background: rgba(232, 193, 111, 0.1);
            border: 1px solid rgba(232, 193, 111, 0.3);
            color: var(--dest-color-secondary);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        
        .dest-scroll-indicator:hover {
            background: var(--dest-color-secondary);
            color: var(--dest-color-dark);
            transform: translateY(-3px);
        }
        
        @media (prefers-reduced-motion: no-preference) {
            .dest-scroll-indicator {
                animation: dest-bounce 2s infinite;
            }
        }
        
        @keyframes dest-bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }
        
        /* Filter Section */
        .dest-filter-section {
            background: var(--dest-color-primary);
            padding: clamp(40px, 6vw, 60px) 0;
            border-bottom: 1px solid rgba(232, 193, 111, 0.1);
        }
        
        .dest-container {
            max-width: min(1400px, 95vw);
            margin: 0 auto;
            padding: 0 clamp(20px, 5vw, 40px);
        }
        
        .dest-filter-title {
            font-family: var(--dest-font-heading);
            font-size: clamp(1.8rem, 3.5vw, 2.2rem);
            color: var(--dest-color-light);
            margin-bottom: 10px;
            text-align: center;
            padding: 0 clamp(10px, 3vw, 20px);
        }
        
        .dest-filter-description {
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: clamp(25px, 4vw, 40px);
            font-size: clamp(1rem, 1.5vw, 1.1rem);
            padding: 0 clamp(10px, 3vw, 20px);
        }
        
        .dest-filter-categories {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: clamp(10px, 2vw, 15px);
            margin-bottom: clamp(25px, 4vw, 30px);
            padding: 0 clamp(10px, 2vw, 20px);
        }
        
        .dest-filter-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: clamp(10px, 1.5vw, 12px) clamp(16px, 2vw, 24px);
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            color: var(--dest-color-text);
            font-family: var(--dest-font-body);
            font-size: clamp(0.8rem, 1vw, 0.9rem);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .dest-filter-btn.active,
        .dest-filter-btn:hover {
            background: var(--dest-color-secondary);
            color: var(--dest-color-dark);
            border-color: var(--dest-color-secondary);
            transform: translateY(-2px);
        }
        
        .dest-search-box {
            max-width: min(500px, 90vw);
            margin: 0 auto;
            position: relative;
            padding: 0 clamp(10px, 3vw, 20px);
        }
        
        .dest-search-input {
            width: 100%;
            padding: 16px 24px;
            padding-right: 60px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(232, 193, 111, 0.2);
            border-radius: 50px;
            color: var(--dest-color-light);
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .dest-search-input:focus {
            outline: none;
            border-color: var(--dest-color-secondary);
            box-shadow: 0 0 0 3px rgba(232, 193, 111, 0.1);
        }
        
        .dest-search-btn {
            position: absolute;
            right: calc(clamp(10px, 3vw, 20px) + 8px);
            top: 50%;
            transform: translateY(-50%);
            background: var(--dest-color-secondary);
            color: var(--dest-color-dark);
            border: none;
            border-radius: 50%;
            width: 44px;
            height: 44px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .dest-search-btn:hover {
            background: var(--dest-color-accent);
            transform: translateY(-50%) scale(1.1);
        }
        
        /* Destinations Grid */
        .dest-grid-section {
            padding: clamp(40px, 6vw, 80px) 0;
            background: var(--dest-color-dark);
            flex: 1;
        }
        
        .dest-section-title {
            font-family: var(--dest-font-heading);
            font-size: clamp(2rem, 4vw, 2.8rem);
            color: var(--dest-color-light);
            text-align: center;
            margin-bottom: 10px;
            padding: 0 clamp(10px, 3vw, 20px);
        }
        
        .dest-title-accent {
            color: var(--dest-color-secondary);
            font-family: var(--dest-font-script);
            font-size: clamp(2.2rem, 4.5vw, 3.2rem);
            font-weight: 400;
        }
        
        .dest-section-subtitle {
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: clamp(40px, 6vw, 60px);
            font-size: clamp(1rem, 1.5vw, 1.1rem);
            padding: 0 clamp(10px, 3vw, 20px);
        }
        
        .dest-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(min(350px, 100%), 1fr));
            gap: clamp(20px, 3vw, 30px);
            margin-bottom: clamp(40px, 6vw, 60px);
        }
        
        .dest-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(232, 193, 111, 0.1);
            border-radius: clamp(10px, 2vw, 12px);
            overflow: hidden;
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .dest-card.animate-in {
            opacity: 1;
            transform: translateY(0);
        }
        
        .dest-card:hover {
            transform: translateY(-10px);
            border-color: rgba(232, 193, 111, 0.3);
            box-shadow: var(--dest-box-shadow);
        }
        
        .dest-card-image {
            position: relative;
            height: clamp(200px, 35vw, 250px);
            overflow: hidden;
        }
        
        .dest-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .dest-card:hover .dest-card-image img {
            transform: scale(1.05);
        }
        
        .dest-card-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(10, 25, 41, 0.9);
            color: var(--dest-color-secondary);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
            backdrop-filter: blur(10px);
        }
        
        .dest-card-badge.premium {
            background: rgba(232, 193, 111, 0.9);
            color: var(--dest-color-dark);
        }
        
        .dest-card-content {
            padding: clamp(20px, 3vw, 25px);
        }
        
        .dest-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .dest-card-title {
            font-family: var(--dest-font-heading);
            font-size: clamp(1.2rem, 2vw, 1.4rem);
            color: var(--dest-color-light);
            margin: 0;
        }
        
        .dest-card-rating {
            display: flex;
            align-items: center;
            gap: 4px;
            color: var(--dest-color-secondary);
        }
        
        .dest-card-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 15px;
        }
        
        .dest-tag {
            background: rgba(232, 193, 111, 0.1);
            color: var(--dest-color-secondary);
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .dest-card-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: clamp(0.9rem, 1.2vw, 0.95rem);
        }
        
        .dest-card-features {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            padding: 15px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .dest-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .dest-feature i {
            color: var(--dest-color-secondary);
        }
        
        .dest-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .dest-explore-btn {
            background: var(--dest-color-secondary);
            color: var(--dest-color-dark);
            padding: 12px 24px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }
        
        .dest-explore-btn:hover {
            background: var(--dest-color-light);
            transform: translateX(5px);
        }
        
        .dest-load-more-container {
            text-align: center;
        }
        
        .dest-load-more-btn {
            background: transparent;
            border: 2px solid var(--dest-color-secondary);
            color: var(--dest-color-secondary);
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }
        
        .dest-load-more-btn:hover {
            background: var(--dest-color-secondary);
            color: var(--dest-color-dark);
            transform: translateY(-3px);
        }
        
        /* Featured Experience */
        .dest-featured-section {
            position: relative;
            padding: clamp(60px, 8vw, 100px) 0;
            overflow: hidden;
        }
        
        .dest-featured-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            filter: brightness(0.3);
            z-index: 1;
        }
        
        .dest-featured-content {
            position: relative;
            z-index: 2;
            max-width: min(600px, 90vw);
            background: rgba(10, 25, 41, 0.9);
            padding: clamp(30px, 4vw, 50px);
            border-radius: var(--dest-border-radius);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(232, 193, 111, 0.2);
            margin: 0 auto;
        }
        
        .dest-featured-badge {
            display: inline-block;
            background: var(--dest-color-secondary);
            color: var(--dest-color-dark);
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        
        .dest-featured-title {
            font-family: var(--dest-font-heading);
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            color: var(--dest-color-light);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .dest-featured-subtitle {
            display: block;
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
            color: var(--dest-color-secondary);
            font-weight: 400;
        }
        
        .dest-featured-description {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
            margin-bottom: 30px;
            font-size: clamp(1rem, 1.5vw, 1.1rem);
        }
        
        .dest-featured-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .dest-highlight {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--dest-color-secondary);
            font-weight: 500;
        }
        
        .dest-featured-cta {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: var(--dest-color-secondary);
            color: var(--dest-color-dark);
            padding: 16px 32px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .dest-featured-cta:hover {
            background: var(--dest-color-light);
            transform: translateX(10px);
        }
        
        /* Newsletter Section - ISOLATED STYLES */
        .dest-newsletter-section {
            background: var(--dest-color-primary);
            padding: clamp(60px, 8vw, 100px) 0;
            text-align: center;
            position: relative;
            z-index: 10;
            margin: 0;
            width: 100%;
        }
        
        .dest-newsletter-content {
            max-width: min(600px, 90vw);
            margin: 0 auto;
            padding: clamp(40px, 6vw, 60px);
            background: rgba(10, 25, 41, 0.95);
            border-radius: var(--dest-border-radius);
            border: 1px solid rgba(232, 193, 111, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            position: relative;
        }
        
        .dest-newsletter-title {
            font-family: var(--dest-font-heading);
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--dest-color-light);
            margin-bottom: 20px;
            line-height: 1.2;
            font-weight: 700;
            text-align: center;
        }
        
        .dest-script-font {
            font-family: var(--dest-font-script);
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            color: var(--dest-color-secondary);
            font-weight: 400;
            display: block;
            margin-bottom: 10px;
        }
        
        .dest-newsletter-description {
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 40px;
            font-size: clamp(1rem, 1.5vw, 1.2rem);
            line-height: 1.8;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .dest-newsletter-form {
            margin-bottom: 25px;
            width: 100%;
        }
        
        .dest-form-group {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
            width: 100%;
        }
        
        @media (max-width: 768px) {
            .dest-form-group {
                flex-direction: column;
                gap: 15px;
            }
        }
        
        .dest-form-input {
            flex: 1;
            min-width: 0;
            padding: 18px 24px;
            background: rgba(255, 255, 255, 0.08);
            border: 2px solid rgba(232, 193, 111, 0.3);
            border-radius: 8px;
            color: var(--dest-color-light);
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .dest-form-input:focus {
            outline: none;
            border-color: var(--dest-color-secondary);
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 0 0 4px rgba(232, 193, 111, 0.1);
        }
        
        .dest-form-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .dest-subscribe-btn {
            background: var(--dest-color-secondary);
            color: var(--dest-color-dark);
            border: none;
            padding: 18px 36px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            transition: all 0.3s ease;
            min-width: 160px;
            white-space: nowrap;
        }
        
        .dest-subscribe-btn:hover {
            background: var(--dest-color-light);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(232, 193, 111, 0.2);
        }
        
        .dest-form-consent {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 25px;
            text-align: left;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .dest-form-consent input[type="checkbox"] {
            margin-top: 4px;
            accent-color: var(--dest-color-secondary);
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }
        
        .dest-form-consent label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.5;
            flex: 1;
        }
        
        .dest-form-consent a {
            color: var(--dest-color-secondary);
            text-decoration: none;
            font-weight: 600;
        }
        
        .dest-form-consent a:hover {
            text-decoration: underline;
        }
        
        .dest-newsletter-note {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }
        
        /* Responsive fixes */
        @media (max-width: 768px) {
            .dest-hero-bottom-nav .dest-hero-nav-container {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .dest-filter-categories {
                overflow-x: auto;
                padding-bottom: 10px;
                justify-content: flex-start;
                scrollbar-width: thin;
            }
            
            .dest-filter-categories::-webkit-scrollbar {
                height: 4px;
            }
            
            .dest-filter-categories::-webkit-scrollbar-track {
                background: rgba(255, 255, 255, 0.1);
                border-radius: 2px;
            }
            
            .dest-filter-categories::-webkit-scrollbar-thumb {
                background: var(--dest-color-secondary);
                border-radius: 2px;
            }
            
            .dest-grid {
                grid-template-columns: 1fr;
            }
            
            .dest-featured-highlights {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .dest-hero-section {
                height: clamp(400px, 85vh, 550px);
                min-height: 400px;
            }
            
            .dest-hero-content {
                padding: 15px;
            }
            
            .dest-hero-title {
                font-size: 2.2rem;
            }
            
            .dest-hero-pre-title {
                font-size: 1.6rem;
            }
            
            .dest-hero-subtitle {
                font-size: 1rem;
                line-height: 1.6;
            }
            
            .dest-hero-stats {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            
            .dest-stat-item {
                width: 100%;
                max-width: 200px;
            }
            
            .dest-stat-number {
                font-size: 2.5rem;
            }
        }
        
        /* Utility classes */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            border: 0;
        }
        
        /* Print styles */
        @media print {
            .dest-hero-section,
            .dest-filter-section,
            .dest-scroll-indicator,
            .dest-filter-categories,
            .dest-search-box,
            .dest-featured-section,
            .dest-newsletter-section {
                display: none;
            }
            
            .destinations-page {
                background: #fff;
                color: #000;
            }
            
            .dest-card {
                break-inside: avoid;
                border: 1px solid #ddd;
                box-shadow: none;
            }
            
            .dest-card-content {
                padding: 20px;
            }
            
            .dest-card-title {
                color: #000;
            }
            
            .dest-card-description {
                color: #333;
            }
            
            .dest-explore-btn {
                display: none;
            }
        }
