/* ─── DESIGN SYSTEM & GLOBAL CSS ────────────────────────────────────── */

/* 1. CSS VARIABLES (Palette Premium & Typo) */
:root {
    --color-dark: #1A1A1A;
    --color-dark-muted: #333333;
    --color-light: #FFFFFF;
    --color-bg: #FAF7F2; /* Beige sabbia caldo, molto accogliente */
    --color-card-bg: #FFFFFF;
    --color-accent: #C5A880; /* Oro classico, elegante */
    --color-accent-hover: #B0946E;
    --color-accent-light: #F4EFE6;
    --color-border: #E8E2D9;
    --color-text: #2C2C2C;
    --color-text-muted: #666666;
    --color-green: #2E7D32;
    --color-green-light: #E8F5E9;
    --color-red: #C62828;
    --color-red-light: #FFEBEE;
    
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --font-header: 'Outfit', system-ui, -apple-system, sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(26, 26, 26, 0.08);
    --shadow-lg: 0 16px 40px rgba(26, 26, 26, 0.12);
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. BASE RESET & GENERAL */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-header);
    color: var(--color-dark);
    margin-top: 0;
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
}

/* 3. BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: var(--font-primary);
}

.btn-primary {
    background-color: var(--color-dark);
    color: var(--color-light);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    color: var(--color-dark);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-dark);
}

.btn-accent:hover {
    background-color: var(--color-dark);
    color: var(--color-light);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-border);
    color: var(--color-dark);
}

.btn-outline:hover {
    background-color: var(--color-dark);
    color: var(--color-light);
    border-color: var(--color-dark);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* 4. HEADER & NAV */
.site-header {
    background-color: var(--color-light);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 75px;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

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

.logo-emoji {
    font-size: 24px;
}

.logo-text {
    font-family: var(--font-header);
    font-size: 20px;
    font-weight: 800;
    color: var(--color-dark);
    letter-spacing: -0.5px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-dark);
    transition: var(--transition);
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    font-weight: 500;
    font-size: 15px;
    color: var(--color-dark-muted);
}

.main-nav a:hover {
    color: var(--color-accent);
}

.nav-cta {
    padding: 8px 18px;
    font-size: 14px;
    border-radius: var(--radius-sm);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-trigger .arrow {
    font-size: 9px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
    min-width: 220px;
    display: none !important; /* Gestito con classe CSS o JS */
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background-color: var(--color-bg);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 75px;
        left: 0;
        width: 100%;
        height: calc(100vh - 75px);
        background-color: var(--color-light);
        border-top: 1px solid var(--color-border);
        transform: translateX(-100%);
        transition: var(--transition);
        padding: 40px 20px;
        overflow-y: auto;
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 20px;
        display: none !important;
        opacity: 1;
        transform: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block !important;
    }
    
    .nav-cta-li {
        margin-top: 10px;
    }
    
    /* Hamburger animato */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* 5. HERO SECTION */
.hero {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('/images/foto6.jpg') center/cover no-repeat;
    height: calc(100vh - 75px);
    min-height: 550px;
    display: flex;
    align-items: center;
    color: var(--color-light);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 16px;
    font-family: var(--font-header);
    display: inline-block;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 4px;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.15;
    color: var(--color-light);
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 18px;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.9);
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 38px;
    }
    .hero-desc {
        font-size: 15px;
    }
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
        max-width: 320px;
        margin: 0 auto;
        gap: 12px;
    }
}

/* 6. TRUST & COUNTERS */
.trust-bar {
    background-color: var(--color-light);
    border-bottom: 1px solid var(--color-border);
    padding: 30px 0;
}

.trust-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-item span {
    font-weight: 700;
    font-family: var(--font-header);
    color: var(--color-dark);
}

.trust-stars {
    color: #F5A623;
}

/* 7. TOUR CARDS GRID */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 15px;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

@media (max-width: 480px) {
    .tours-grid {
        grid-template-columns: 1fr;
    }
}

.tour-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.tour-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.tour-card:hover .tour-image img {
    transform: scale(1.05);
}

.tour-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
}

.tour-content {
    padding: 24px;
}

.tour-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    font-weight: 500;
}

.tour-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tour-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.tour-desc {
    color: var(--color-text-muted);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
}

.tour-price {
    font-size: 13px;
    color: var(--color-text-muted);
}

.tour-price span {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--color-dark);
}

/* 8. FOOTER */
.site-footer {
    background-color: var(--color-dark);
    color: rgba(255,255,255,0.7);
    padding: 70px 0 30px;
    border-top: 4px solid var(--color-accent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.footer-col h3, .footer-col h4 {
    color: var(--color-light);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a:hover {
    color: var(--color-accent);
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons a {
    background-color: rgba(255,255,255,0.1);
    color: var(--color-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    background-color: var(--color-accent);
    color: var(--color-dark);
}

.footer-bottom {
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 20px 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 13px;
}

/* 9. FORMS */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    background-color: var(--color-light);
    color: var(--color-dark);
    font-family: var(--font-primary);
    font-size: 15px;
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-light);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* 10. REVIEWS IN HOME */
.reviews-section {
    background-color: var(--color-accent-light);
}

.reviews-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.review-card-home {
    background-color: var(--color-light);
    border: 1px solid var(--color-border);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.review-stars {
    color: #F5A623;
    margin-bottom: 12px;
}

.review-text {
    font-style: italic;
    font-size: 14px;
    margin-bottom: 16px;
    color: var(--color-text);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.review-info h5 {
    margin: 0;
    font-size: 14px;
}

.review-info span {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   MULTI-TOUR EXPANSION — NEW STYLES
════════════════════════════════════════════════════════════════ */

/* ─── HERO CAROUSEL ─────────────────────────────────────────────── */
.hero-carousel { position: relative; width: 100%; height: 100vh; min-height: 600px; max-height: 860px; overflow: hidden; }
.carousel-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease; display: flex; align-items: center; }
.carousel-slide.active { opacity: 1; z-index: 1; }
.carousel-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.28) 100%); }
.carousel-content { position: relative; z-index: 2; color: #fff; max-width: 680px; }
.carousel-content .hero-label { display: inline-block; background: var(--color-accent); color: var(--color-dark); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 14px; border-radius: var(--radius-full); margin-bottom: 20px; }
.carousel-content h1 { font-family: var(--font-header); font-size: clamp(32px, 5vw, 58px); font-weight: 800; color: #fff; line-height: 1.12; margin: 0 0 20px; }
.carousel-content .hero-desc { font-size: clamp(15px, 2vw, 18px); color: rgba(255,255,255,0.82); line-height: 1.7; margin: 0 0 36px; max-width: 560px; }
.carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,0.15); color: #fff; border: 1.5px solid rgba(255,255,255,0.35); width: 52px; height: 52px; border-radius: 50%; font-size: 28px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); backdrop-filter: blur(4px); }
.carousel-arrow:hover { background: rgba(255,255,255,0.3); }
.carousel-arrow-prev { left: 24px; }
.carousel-arrow-next { right: 24px; }
.carousel-dots { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 10px; }
.carousel-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; cursor: pointer; padding: 0; transition: var(--transition); }
.carousel-dot.active { background: var(--color-accent); transform: scale(1.3); }

/* ─── BUTTONS EXTRA ─────────────────────────────────────────────── */
.btn-outline-light { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border: 2px solid rgba(255,255,255,0.5); border-radius: var(--radius-md); color: #fff; font-weight: 600; font-size: 15px; background: transparent; transition: var(--transition); cursor: pointer; font-family: inherit; text-decoration: none; }
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.8); }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ─── SECTION HEADERS ───────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 52px; }
.section-header-left { text-align: left; margin-bottom: 36px; }
.section-label { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 12px; }
.section-header h2 { font-size: clamp(26px, 4vw, 40px); margin: 0 0 16px; }
.section-desc { color: var(--color-text-muted); font-size: 16px; max-width: 620px; margin: 0 auto; line-height: 1.75; }

/* ─── CATEGORY GRID ─────────────────────────────────────────────── */
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.category-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); background: var(--color-card-bg); transition: var(--transition); display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.category-card-img { height: 220px; background-size: cover; background-position: center; position: relative; }
.category-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%); }
.category-card-badge { position: absolute; top: 14px; right: 14px; background: rgba(0,0,0,0.55); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: var(--radius-full); backdrop-filter: blur(4px); }
.category-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.category-card-body h3 { font-size: 20px; margin: 0 0 14px; }
.category-tour-list { list-style: none; padding: 0; margin: 0 0 20px; flex: 1; }
.category-tour-list li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--color-text-muted); padding: 5px 0; border-bottom: 1px solid var(--color-border); }
.category-tour-list li:last-child { border-bottom: none; }
.tour-list-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent); flex-shrink: 0; }
.tour-list-more { color: var(--color-accent) !important; font-weight: 600; }
.category-card-cta { font-size: 14px; font-weight: 700; color: var(--color-accent); }

/* ─── TOUR CARDS ────────────────────────────────────────────────── */
.tours-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.tour-card { background: var(--color-card-bg); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--color-border); transition: var(--transition); display: flex; flex-direction: column; }
.tour-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tour-card-img-link { display: block; overflow: hidden; }
.tour-card-img { height: 200px; background-size: cover; background-position: center; position: relative; transition: transform 0.4s ease; }
.tour-card:hover .tour-card-img { transform: scale(1.04); }
.tour-card-tag { position: absolute; top: 12px; left: 12px; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: var(--radius-full); letter-spacing: 0.06em; text-transform: uppercase; }
.tag-bookable { background: var(--color-accent); color: var(--color-dark); }
.tag-request { background: rgba(255,255,255,0.9); color: var(--color-dark); }
.tour-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.tour-card-meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 12px; color: var(--color-text-muted); margin-bottom: 10px; }
.tour-card-title { font-size: 17px; margin: 0 0 10px; line-height: 1.35; }
.tour-card-title a { color: var(--color-dark); }
.tour-card-title a:hover { color: var(--color-accent); }
.tour-card-desc { font-size: 13px; color: var(--color-text-muted); line-height: 1.6; margin: 0 0 14px; flex: 1; }
.tour-card-includes { list-style: none; padding: 0; margin: 0 0 16px; border-top: 1px solid var(--color-border); padding-top: 12px; }
.tour-card-includes li { font-size: 12px; color: var(--color-text-muted); padding: 3px 0; }
.tour-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--color-border); }
.tour-card-price { display: flex; align-items: baseline; gap: 4px; }
.price-from { font-size: 11px; color: var(--color-text-muted); }
.price-amount { font-size: 22px; font-weight: 800; color: var(--color-dark); }
.price-unit { font-size: 12px; color: var(--color-text-muted); }

/* ─── BRAND STATEMENT ───────────────────────────────────────────── */
.brand-statement-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.brand-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.brand-pillar { display: flex; gap: 14px; align-items: flex-start; }
.pillar-icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }

/* ─── CTA SECTION ───────────────────────────────────────────────── */
.cta-section { background: linear-gradient(135deg, var(--color-accent-light) 0%, #EDE3D0 100%); padding: 80px 0; border-top: 1px solid var(--color-border); }
.cta-content { text-align: center; max-width: 600px; margin: 0 auto; }
.cta-content h2 { font-size: clamp(26px, 4vw, 38px); margin: 12px 0 16px; }
.cta-content p { color: var(--color-text-muted); margin: 0 0 36px; font-size: 16px; line-height: 1.7; }

/* ─── MEGA-MENU ─────────────────────────────────────────────────── */
.nav-mega-menu { position: absolute; top: calc(100% + 8px); left: -20px; background: var(--color-card-bg); border: 1px solid var(--color-border); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 20px; min-width: 540px; display: none; z-index: 200; }
.dropdown:hover .nav-mega-menu { display: flex; }
.mega-col { flex: 1; min-width: 150px; padding: 0 16px; border-right: 1px solid var(--color-border); }
.mega-col:first-child { padding-left: 0; }
.mega-col:last-child { border-right: none; padding-right: 0; }
.mega-col-header { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--color-border); }
.mega-tour-link { display: block; font-size: 13px; color: var(--color-text); padding: 7px 0; border-bottom: 1px solid rgba(0,0,0,0.04); font-weight: 500; transition: var(--transition); }
.mega-tour-link:last-child { border-bottom: none; }
.mega-tour-link:hover { color: var(--color-accent); padding-left: 4px; }

/* ─── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .brand-statement-grid { grid-template-columns: 1fr; gap: 40px; }
    .carousel-arrow { width: 40px; height: 40px; font-size: 22px; }
    .carousel-arrow-prev { left: 12px; }
    .carousel-arrow-next { right: 12px; }
    .nav-mega-menu { min-width: 260px; flex-direction: column; }
    .mega-col { border-right: none; border-bottom: 1px solid var(--color-border); padding: 10px 0; }
    .mega-col:last-child { border-bottom: none; }
}
@media (max-width: 640px) {
    .hero-carousel { min-height: 520px; max-height: 660px; }
    .category-grid { grid-template-columns: 1fr; }
    .tours-grid { grid-template-columns: 1fr; }
    .brand-pillars { grid-template-columns: 1fr; }
    .carousel-arrow { display: none; }
    .section-padding { padding: 52px 0; }
}

/* ─── MOBILE MEGA-MENU FIXES ────────────────────────────────────── */
.dropdown-mobile-only { display: none; }
.dropdown-cat-label {
    padding: 8px 16px 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    background: var(--color-accent-light);
    border-bottom: 1px solid var(--color-border);
    list-style: none;
}
@media (max-width: 767px) {
    .nav-mega-menu { display: none !important; }
    .dropdown-mobile-only { display: block !important; }
    .dropdown.active .dropdown-mobile-only { display: block !important; }
}

/* ─── MULTI-TOUR FIXES & ADAPTATIONS ────────────────────────────── */
/* Fix colore testo pulsanti nel menu header */
.main-nav .btn-primary {
    color: var(--color-light) !important;
}
.main-nav .btn-primary:hover {
    color: var(--color-dark) !important;
}

/* Allineamento icone SVG Trust Bar */
.trust-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}
.trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    flex-shrink: 0;
}

/* Allineamento meta-tag schede tour */
.tour-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}
.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.meta-icon {
    color: var(--color-accent);
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}
