/* ==========================================
   NCC CADORE - CLEAN LIGHT EXECUTIVE THEME
   ========================================== */

:root {
    /* Main Light Colors */
    --bg-body: #ffffff;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    
    /* Text Colors */
    --text-dark: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    --text-white: #ffffff;
    
    /* Accent Colors */
    --navy-primary: #0f172a;
    --navy-accent: #1e3a8a;
    --gold-primary: #c59b27;
    --gold-hover: #b0871d;
    --whatsapp-green: #25d366;
    
    /* UI Borders & Shadows */
    --border-color: #e2e8f0;
    --border-hover: #cbd5e1;
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 12px 30px rgba(0, 0, 0, 0.08);
    
    /* Typography Fonts */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
}

/* Reset & Globals */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--text-body);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

.section-padding {
    padding: 5.5rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

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

.section-tag {
    font-family: var(--font-heading);
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.0625rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.0625rem;
    border-radius: var(--radius-md);
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background-color: var(--navy-primary);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(15, 23, 42, 0.2);
}

.btn-outline {
    background-color: #ffffff;
    border-color: var(--navy-primary);
    color: var(--navy-primary);
}

.btn-outline:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
}

.btn-phone {
    height: 42px;
    padding: 0 1.25rem;
    background-color: rgba(197, 155, 39, 0.2);
    color: var(--gold-primary);
    border-color: rgba(197, 155, 39, 0.4);
    transition: all 0.3s ease;
}

.btn-phone:hover {
    background-color: var(--gold-primary);
    color: #ffffff;
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: #ffffff;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
}

/* ==========================================
   HEADER DINAMICO (SCURO IN ALTO, CHIARO ALLO SCROLL)
   ========================================== */

/* Stato Iniziale (In Alto sulla Hero - Scuro Trasparente) */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 76px;
    background-color: rgba(11, 15, 25, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}

.brand-logo-img {
    height: 46px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: 0.03em;
    transition: color 0.3s ease;
}

.brand-sub {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--gold-primary);
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-top: 2px;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    color: #f1f5f9;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--gold-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Language Switcher in alto (Scuro) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    height: 40px;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.lang-btn {
    height: 100%;
    width: 36px;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 700;
    color: #cbd5e1;
    padding: 0;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    color: #ffffff;
}

.lang-btn.active {
    background-color: var(--gold-primary);
    color: #ffffff;
}

.btn-phone {
    height: 40px;
    box-sizing: border-box;
    padding: 0 1.25rem;
    background-color: rgba(197, 155, 39, 0.2);
    color: var(--gold-primary);
    border-color: rgba(197, 155, 39, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hamburger-btn {
    display: none;
    height: 40px;
    width: 40px;
    box-sizing: border-box;
    padding: 0;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-sm);
    font-size: 1.125rem;
    color: #ffffff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Stato Scrolled (Chiaro allo Scroll verso il basso) */
.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.site-header.scrolled .brand-name {
    color: var(--text-dark);
}

.site-header.scrolled .nav-link {
    color: var(--text-body);
}

.site-header.scrolled .nav-link:hover {
    color: var(--gold-primary);
}

.site-header.scrolled .hamburger-btn {
    border-color: var(--border-color);
    color: var(--navy-primary);
}

.site-header.scrolled .lang-switcher {
    background-color: var(--bg-light);
    border-color: var(--border-color);
}

.site-header.scrolled .lang-btn {
    color: var(--text-muted);
}

.site-header.scrolled .lang-btn.active {
    background-color: var(--navy-primary);
    color: #ffffff;
}

.site-header.scrolled .btn-phone {
    background-color: rgba(197, 155, 39, 0.1);
    color: var(--gold-primary);
    border-color: rgba(197, 155, 39, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 180px;
    padding-bottom: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0b0f19;
    color: #ffffff;
    overflow: hidden;
    width: 100%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 25, 39, 0.72);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    margin-top: auto;
    text-align: center;
    box-sizing: border-box;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}

/* Chi Siamo Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
    align-items: center;
}

.about-img-holder img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    width: 100%;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--text-body);
    margin-bottom: 1.5rem;
}

.about-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.stat-card strong {
    font-family: var(--font-heading);
    display: block;
    font-size: 1.75rem;
    color: var(--gold-primary);
    line-height: 1;
}

.stat-card span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Servizi Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 3rem;
}

.service-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all 0.25s ease;
}

.service-item:hover {
    border-color: var(--gold-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(197, 155, 39, 0.1);
    color: var(--gold-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
}

.service-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-item p {
    font-size: 0.9375rem;
    color: var(--text-body);
}

/* Flotta Section */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.fleet-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.25s ease;
}

.fleet-card:hover {
    border-color: var(--navy-primary);
    box-shadow: var(--shadow-hover);
}

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

.fleet-card-body {
    padding: 1.25rem;
}

.fleet-card-body h4 {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
}

.fleet-card-body p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Booking & Contatti Section */
.booking-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.booking-form-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-subtle);
}

.booking-form-box h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.form-subtext {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.form-group label {
    font-size: 0.84375rem;
    font-weight: 600;
    color: var(--navy-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 0.9375rem;
    color: var(--text-dark);
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy-primary);
}

.form-btn-group {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Contact Info Box */
.contact-info-box h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.contact-subtext {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.2s ease;
}

.contact-item:hover {
    border-color: var(--gold-primary);
    transform: translateX(4px);
}

.c-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(197, 155, 39, 0.1);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.c-icon.icon-wa {
    background-color: rgba(37, 211, 102, 0.1);
    color: var(--whatsapp-green);
}

.contact-item span {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.contact-item strong {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    color: var(--navy-primary);
}

.contact-summary-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.contact-summary-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--navy-primary);
}

.contact-summary-card p {
    font-size: 0.875rem;
    color: var(--text-body);
}

/* Footer */
.site-footer {
    background-color: var(--navy-primary);
    color: #cbd5e1;
    padding: 2.5rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand .brand-name {
    color: #ffffff;
}

.footer-copy {
    font-size: 0.875rem;
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES (MOBILE FIXES)
   ========================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

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

    .about-grid {
        grid-template-columns: 1fr;
    }

    .booking-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }

    .site-header {
        height: 70px;
    }

    .header-container {
        padding: 0 0.75rem;
        gap: 0.5rem;
    }

    .brand-logo {
        gap: 0.4rem;
    }

    .brand-logo-img {
        height: 34px;
    }

    .brand-name {
        font-size: 0.875rem;
    }

    .brand-sub {
        font-size: 0.52rem;
        letter-spacing: 0.02em;
    }

    .header-phone-btn {
        display: none;
    }

    .lang-switcher {
        height: 36px;
        padding: 2px;
        gap: 2px;
        box-sizing: border-box;
    }

    .lang-btn {
        font-size: 0.75rem;
        width: 28px;
        padding: 0;
    }

    .hamburger-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 36px;
        width: 36px;
        padding: 0;
        font-size: 1.1rem;
        box-sizing: border-box;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: rgba(11, 15, 25, 0.95);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding: 1.5rem;
        display: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
        transition: background-color 0.3s ease, border-color 0.3s ease;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav .nav-link {
        color: #ffffff !important;
    }

    .main-nav .nav-link:hover {
        color: var(--gold-primary) !important;
    }

    /* Quando l'header diventa chiaro allo scroll */
    .site-header.scrolled .main-nav {
        background-color: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .site-header.scrolled .main-nav .nav-link {
        color: var(--text-dark) !important;
    }

    .site-header.scrolled .main-nav .nav-link:hover {
        color: var(--gold-primary) !important;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.25rem;
    }

    .hero-section {
        min-height: 50vh;
        padding-top: 130px;
        padding-bottom: 70px;
    }

    .hero-content {
        padding-inline: 2rem;
    }

    .hero-title {
        font-size: clamp(1.35rem, 5.5vw, 1.75rem);
        line-height: 1.25;
        margin-bottom: 1.5rem;
    }

    .hero-title br {
        display: none;
    }

    .hero-cta-group {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        width: 100%;
        gap: 0.6rem;
    }

    .hero-cta-group .btn {
        flex: 1 1 0px;
        min-width: 0;
        max-width: 170px;
        padding: 0.65rem 0.5rem;
        font-size: 0.875rem;
        height: 44px;
        box-sizing: border-box;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        white-space: nowrap;
    }

    .section-padding {
        padding: 3.25rem 0;
    }

    .services-grid,
    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .booking-form-box {
        padding: 1.5rem;
    }

    .form-row,
    .form-btn-group {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 440px) {
    .brand-sub {
        display: none;
    }

    .brand-name {
        font-size: 0.8125rem;
    }

    .lang-switcher {
        height: 32px;
    }

    .lang-btn {
        font-size: 0.65rem;
        width: 26px;
        padding: 0;
    }
}

/* ==========================================
   SEZIONE DESTINAZIONI & CAROSELLO SLIDER
   ========================================== */
.carousel-wrapper {
    position: relative;
    margin-top: 3rem;
    display: flex;
    align-items: center;
}

.carousel-track-container {
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem 0.25rem 1.5rem 0.25rem;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.dest-card {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 280px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-subtle);
}

.dest-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-hover);
}

.dest-img-box {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.dest-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.dest-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(6px);
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dest-card-body {
    padding: 1.5rem;
}

.dest-card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--navy-primary);
}

.dest-card-body p {
    font-size: 0.9375rem;
    color: var(--text-body);
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-color);
    color: var(--navy-primary);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: all 0.2s ease;
}

.carousel-btn:hover {
    background-color: var(--navy-primary);
    color: #ffffff;
    border-color: var(--navy-primary);
}

.carousel-btn.prev {
    left: -22px;
}

.carousel-btn.next {
    right: -22px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-hover);
    border: none;
    padding: 0;
    outline: none;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background-color: var(--gold-primary);
    width: 28px;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .dest-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 640px) {
    .carousel-track {
        gap: 1rem;
        padding-right: 2rem;
    }
    .dest-card {
        flex: 0 0 85%;
        min-width: 250px;
    }
    .carousel-btn {
        display: none;
    }
}

