/* ============================================================
   FOGLIO DI STILE UNIFICATO — "Confinando"
   Ripulito da duplicati ed errori. Ogni pagina con un tema
   colore proprio usa una classe dedicata sul tag <body>.
   ============================================================ */

/* ============================================================
   1) BASE CONDIVISA — usata da index.html (nessuna classe extra
      richiesta sul body: è lo stile di default del sito)
   ============================================================ */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0f172a;
    color:white;
}

header{
    position:fixed;
    width:100%;
    padding:25px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    backdrop-filter:blur(15px);
    z-index:1000;
}

.logo{
    font-size:1.4rem;
    font-weight:700;
}

nav{
    display:flex;
    gap:30px;
}

nav a{
    color:white;
    text-decoration:none;
}

.hero{
    height:100vh;
    background:url('images/hero.jpg') center/cover;
    display:flex;
    align-items:center;
    position:relative;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:700px;
    margin-left:8%;
}

.badge{
    background:#22c55e;
    padding:8px 18px;
    border-radius:50px;
}

.hero h1{
    font-size:3rem;
    margin:20px 0;
    line-height:1.1;
}

.hero h1 span{
    color:#38bdf8;
}

.hero p{
    font-size:1rem;
    opacity:.9;
    margin-bottom:30px;
}

.buttons{
    display:flex;
    gap:20px;
}

.btn-primary,
.btn-secondary{
    padding:15px 30px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
}

.btn-primary{
    background:#38bdf8;
    color:white;
}

.btn-secondary{
    border:1px solid white;
    color:white;
}

.btn-book{
    padding:15px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    background:#1e3a8a; /* Blu scuro */
    color:white;
}

section{
    padding:120px 8%;
}

.about .container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.stats{
    display:grid;
    gap:20px;
}

.card{
    background:#1e293b;
    padding:30px;
    border-radius:20px;
}

.card h3{
    font-size:2rem;
    color:#38bdf8;
}

.adventures h2,
.help h2,
.contact h2{
    text-align:center;
    margin-bottom:50px;
}

.grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px;
}

.trip-card{
    background:#1e293b;
    border-radius:25px;
    overflow:hidden;
    transition:.3s;
    width:100%;
    min-width:0;
}

.trip-card:hover{
    transform:translateY(-10px);
}

.trip-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.content{
    padding:25px;
}

/* =========================
   SERVIZI SECTION
========================= */

.services{
    padding: 90px 20px;
    background: linear-gradient(135deg, #0b1220, #111c33);
    color: white;
    text-align: center;
}

/* titolo sezione */
.services h2{
    font-size: 36px;
    margin-bottom: 50px;
}

/* contenitore card */
.service-container{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: stretch;
}

/* CARD */
.service-card{
    display: flex;
    flex-direction: column;

    width: 320px;
    min-height: 360px;

    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 25px;

    backdrop-filter: blur(10px);
    text-align: left;
}

/* TITOLO */
.service-card h3{
    text-align: center;
    margin-bottom: 15px;
    font-size: 20px;
}

/* TESTO */
.service-card p{
    text-align: left;
    margin: 0 0 10px 0;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
}

/* 🔥 BOTTONE PERFETTAMENTE IN BASSO E CENTRATO */
.service-card .contact-btn{
    margin-top: auto;      /* lo spinge in basso */
    align-self: center;    /* lo centra orizzontalmente */

    padding: 12px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: white;
    text-decoration: none;
    font-weight: 600;

    transition: 0.3s;
}

/* hover bottone */
.service-card .contact-btn:hover{
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(56,189,248,0.3);
}

.contact{
    text-align:center;
}

.contact-btn{
    display:inline-block;
    margin-top:30px;
    padding:18px 35px;
    background:#38bdf8;
    color:white;
    text-decoration:none;
    border-radius:50px;
}

 footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    opacity: 0.8;
    padding: 20px 0;
    width: 100%;
}
@media(max-width:768px){

    nav{
        display:none;
    }

    .hero h1{
        font-size:2.8rem;
    }

    .about .container{
        grid-template-columns:1fr;
    }

}

.slider{
    position:relative;
    width:100%;
    height:240px;
    overflow:hidden;
}

.slider img.active{
    opacity:1;
}

.prev,
.next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:rgba(0,0,0,.4);
    color:white;
    border:none;
    width:35px;
    height:35px;
    border-radius:50%;
    cursor:pointer;
    z-index:2;
}

.prev{
    left:10px;
}

.next{
    right:10px;

}

.slider img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transition:opacity .6s ease;
}



.country-card img{
    width:60px;
    height:60px;
    object-fit:cover;
    border-radius:12px;
    margin-bottom:12px;
}

.country-card span{
    display:block;
    font-weight:500;
}

.country-card{
    background:transparent;
    perspective:1000px;
    padding:0;
    text-align:center;
}

.country-inner{
    position:relative;
    width:100%;
    height:260px;
    transition:transform .8s;
    transform-style:preserve-3d;
}

.country-card:hover .country-inner{
    transform:rotateY(180deg);
}

.country-front,
.country-back{
    position:absolute;
    width:100%;
    height:100%;
    border-radius:20px;
    backface-visibility:hidden;
    background:#1e293b;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:20px;
}

.country-front img{
    width:90px;
    height:60px;
    object-fit:cover;
    border-radius:8px;
    margin-bottom:15px;
}

.country-front span{
    font-size:18px;
    font-weight:600;
}

.country-back{
    transform:rotateY(180deg);
    text-align:center;
}

.country-back h3{
    color:#38bdf8;
    margin-bottom:15px;
}

.country-back p{
    font-size:15px;
    line-height:1.5;
}

.trip-card {
    text-decoration: none;   /* niente sottolineatura */
    color: inherit;          /* mantiene il colore del sito (bianco) */
    display: block;          /* mantiene la struttura della card */
    cursor: pointer;
    width: 100%;
    min-width: 0;
}

/* elimina blu + effetti link */
.trip-card:link,
.trip-card:visited,
.trip-card:hover,
.trip-card:active {
    color: inherit;
    text-decoration: none;
}

.reviews{
    padding: 80px 20px;
    background: linear-gradient(135deg, #0b1220, #111c33);
    color: white;
    text-align: center;
    position: relative;
}

/* titolo */
.reviews h2{
    font-size: 34px;
    margin-bottom: 10px;
    font-weight: 700;
}

/* sottotitolo opzionale (puoi aggiungerlo nel HTML) */
.reviews p.subtitle{
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
}

/* contenitore scroll */
#reviews-list{
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

/* track animata */
.track{
    display: flex;
    gap: 25px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

/* pausa hover */
.track:hover{
    animation-play-state: paused;
}

/* CARD RECENSIONI */
.review{
    min-width: 300px;
    max-width: 300px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 22px;
    border-radius: 18px;
    text-align: left;

    /* effetto vetro */
    backdrop-filter: blur(10px);

    /* ombra soft */
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* hover card */
.review:hover{
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* nome */
.review h4{
    margin: 0;
    font-size: 18px;
    color: #38bdf8;
}

/* stelle */
.review span{
    color: gold;
    display: block;
    margin: 8px 0;
    font-size: 18px;
    letter-spacing: 2px;
}

/* testo */
.review p{
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    font-size: 14px;
}

/* animazione scroll */
@keyframes scroll{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-50%);
    }
}

/* FORM PIÙ BELLO */
.review-form{
    max-width: 600px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.review-form input,
.review-form select,
.review-form textarea{
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: rgba(255,255,255,0.08);
    color: white;
    outline: none;
}

.review-form textarea{
    min-height: 120px;
    resize: none;
}

/* bottone */
.review-form button{
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.review-form button:hover{
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(56,189,248,0.3);
}

#reviews-list{
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
    position: relative;
}

.track{
    display: flex;
    gap: 25px;
    width: max-content;
    animation: scroll 25s linear infinite;
}

/* PAUSA HOVER */
.track:hover{
    animation-play-state: paused;
}

.review{
    min-width: 300px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 22px;
    border-radius: 18px;
    backdrop-filter: blur(10px);
    color: white;
}

/* ANIMAZIONE INFINITA PERFETTA */
@keyframes scroll{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-50%);
    }
}

.services{
    padding: 90px 20px;
    background: linear-gradient(135deg, #0b1220, #111c33);
    color: white;
    text-align: center;
}

.services h2{
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
}

.service-container{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:nowrap;   /* 🔥 QUESTO FORZA UNA SOLA RIGA */
    align-items:stretch;
    overflow-x:auto;    /* opzionale: scroll se schermo piccolo */
}

/* card servizi */
.service-card{
    width: 320px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 25px;
    text-align: left;

    backdrop-filter: blur(10px);

    box-shadow: 0 10px 30px rgba(0,0,0,0.25);

    transition: 0.3s ease;
}

/* hover effetto bello */
.service-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* titolo card */
.service-card h3{
    color: #38bdf8;
    margin-bottom: 12px;
    font-size: 20px;
}

/* testo */
.service-card p{
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    font-size: 14px;
}

/* bottone call */
.contact-btn{
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: white;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.contact-btn:hover{
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(56,189,248,0.3);
}

/* --- Helper condiviso: layout a colonna con footer in fondo --- */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.country-page {
    flex: 1;
}

/* ============================================================
   2) COMPONENTI CONDIVISI RIUTILIZZABILI (validi su più pagine)
   ============================================================ */

/* ==========================================================
   MOBILE — regole generiche di sicurezza (basso rischio,
   non toccano layout/header/nav che sono già gestiti dalle
   regole specifiche di ogni pagina e dal menu hamburger)
   ========================================================== */
@media screen and (max-width: 768px) {

    html, body {
        overflow-x: hidden;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}

/* Menu a tendina (icone social nell'header, riutilizzabile ovunque) */
.dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%); /* Centra la tendina rispetto al link */
            background-color: #ffffff; /* Sfondo bianco per la tendina */
            min-width: 160px;
            box-shadow: 0px 8px 16px rgba(0,0,0,0.15);
            z-index: 1000;
            list-style: none;
            padding: 5px 0;
            margin: 0;
            border-radius: 6px;
        }

        /* Variante specifica per la tendina delle icone (più stretta) */
        .dropdown-logos {
            min-width: 70px !important;
        }

        .dropdown-content a {
            color: #333333 !important; /* Testo scuro per leggerlo bene su sfondo bianco */
            padding: 10px 15px !important;
            text-decoration: none !important;
            display: block !important;
            font-size: 0.9rem !important;
            text-align: left !important;
            font-weight: 400 !important;
        }

        /* Centra le icone e gestisce le dimensioni delle classi i */
        .dropdown-logos a {
            text-align: center !important;
            padding: 10px 0 !important;
        }

        .dropdown-logos i {
            font-size: 1.4rem !important; /* Dimensione delle icone */
        }

        /* Colore rosa/rosso originale di Instagram */
        .dropdown-logos .fa-instagram {
            color: #E1306C !important;
        }

        /* Colore rosso originale di Gmail */
        .dropdown-logos .fa-envelope {
            color: #EA4335 !important;
        }

        .dropdown-content a:hover {
            background-color: #f5f5f5 !important; /* Sfondo grigio chiaro all'hover */
        }

        /* Mostra la tendina al passaggio del mouse */

/* ============================================================
   3) TEMA: pagina di dettaglio viaggio (card singola grande)
      Aggiungi class="tema-dettaglio-viaggio" al <body> della
      pagina di dettaglio (es. Messico.html / Colombia.html)
   ============================================================ */
.tema-dettaglio-viaggio .travel-trip{
    padding: 100px 20px;
    background: linear-gradient(135deg, #0b1220, #111c33);
    color: white;
}

.tema-dettaglio-viaggio .trip-header{
    text-align:center;
    margin-bottom:60px;
}

.tema-dettaglio-viaggio .trip-header h1{
    font-size:42px;
    margin-bottom:10px;
}

.tema-dettaglio-viaggio .trip-header p{
    opacity:0.8;
}

/* CARD */
.tema-dettaglio-viaggio .trip-card{
    max-width:800px;
    margin:0 auto;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius:20px;
    padding:30px;
    backdrop-filter: blur(10px);
}

.tema-dettaglio-viaggio .trip-card h2{
    text-align:center;
    margin-bottom:20px;
    color:#38bdf8;
}

.tema-dettaglio-viaggio .trip-content p{
    line-height:1.6;
    margin-bottom:15px;
}

.tema-dettaglio-viaggio .trip-content ul{
    margin:20px 0;
    padding-left:20px;
}

.tema-dettaglio-viaggio .trip-content ul li{
    margin-bottom:10px;
}

/* prezzo */
.tema-dettaglio-viaggio .price{
    font-size:20px;
    margin-top:20px;
}

/* highlight */
.tema-dettaglio-viaggio .highlight{
    background: rgba(56,189,248,0.1);
    padding:15px;
    border-left:3px solid #38bdf8;
    border-radius:10px;
    margin:20px 0;
}

/* bottone */
.tema-dettaglio-viaggio .trip-btn{
    display:inline-block;
    margin-top:20px;
    padding:14px 25px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color:white;
    text-decoration:none;
    border-radius:12px;
    font-weight:600;
    transition:0.3s;
}

.tema-dettaglio-viaggio .trip-btn:hover{		
    transform:scale(1.05);
}

/* ============================================================
   4) TEMA: pagina di confronto viaggi Messico/Colombia
      Aggiungi class="tema-viaggi-showcase" al <body>
   ============================================================ */
body.tema-viaggi-showcase {
            font-family: 'Poppins', sans-serif;
            background-color: #0f172a; 
            color: #f8fafc;
            margin: 0;
            padding: 0;
        }

        .tema-viaggi-showcase header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background-color: #0f172a;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .tema-viaggi-showcase .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .tema-viaggi-showcase .logo-container img {
            height: 40px;
            width: auto;
            display: block;
        }

        .tema-viaggi-showcase .logo-text {
            font-size: 1.3rem;
            font-weight: 600;
            color: #ffffff !important;
            margin: 0;
            white-space: nowrap;
            text-decoration: none;
        }

        .tema-viaggi-showcase nav a {
            color: #f8fafc;
            text-decoration: none;
            margin-left: 20px;
            font-size: 0.95rem;
            opacity: 0.8;
            transition: opacity 0.2s;
        }

        .tema-viaggi-showcase nav a:hover {
            opacity: 1;
            color: #38bdf8;
        }

        /* Hero Section */
        .tema-viaggi-showcase .travel-hero {
            text-align: center;
            padding: 80px 20px 40px 20px;
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .tema-viaggi-showcase .travel-hero h1 {
            font-size: 2.8rem;
            margin: 0 0 10px 0;
            font-weight: 700;
            color: #ffffff;
        }

        .tema-viaggi-showcase .travel-hero p {
            font-size: 1.1rem;
            opacity: 0.8;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Container Generale */
        .tema-viaggi-showcase .travel-container {
            max-width: 1000px;
            margin: 40px auto;
            padding: 0 20px;
        }

        /* Griglia delle due opzioni */
        .tema-viaggi-showcase .trips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        @media (max-width: 800px) {
            .tema-viaggi-showcase .trips-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Card di Mostra */
        .tema-viaggi-showcase .trip-showcase-card {
            background: rgba(30, 41, 59, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .tema-viaggi-showcase .trip-banner {
            width: 100%;
            height: 260px;
            position: relative;
        }

        .tema-viaggi-showcase .trip-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .tema-viaggi-showcase .trip-banner-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60%;
            background: linear-gradient(to top, rgba(15, 23, 42, 1), rgba(15, 23, 42, 0));
            display: flex;
            align-items: flex-end;
            padding: 20px;
        }

        .tema-viaggi-showcase .trip-date-badge {
            color: #0f172a;
            padding: 6px 14px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Badge Colore Specifico */
        .tema-viaggi-showcase .mexico-badge { background-color: #ec4899; color: #ffffff; box-shadow: 0 4px 10px rgba(236, 72, 153, 0.3); }
        .tema-viaggi-showcase .colombia-badge { background-color: #22c55e; color: #0f172a; box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3); }

        .tema-viaggi-showcase .trip-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .tema-viaggi-showcase .trip-body h2 {
            font-size: 1.8rem;
            margin: 0 0 5px 0;
            color: #ffffff;
        }

        .tema-viaggi-showcase .trip-location-sub {
            color: #38bdf8;
            font-size: 1rem;
            margin: 0 0 20px 0;
            font-weight: 500;
        }

        /* Info Boxes Grid Corta */
        .tema-viaggi-showcase .info-grid-quick {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 20px;
        }

        .tema-viaggi-showcase .quick-box {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 10px;
            border-radius: 12px;
            text-align: center;
        }

        .tema-viaggi-showcase .quick-box span {
            display: block;
            font-size: 0.75rem;
            opacity: 0.5;
            text-transform: uppercase;
            margin-bottom: 2px;
        }

        .tema-viaggi-showcase .quick-box p {
            margin: 0;
            font-weight: 600;
            font-size: 0.9rem;
            color: #ffffff;
        }

        /* Liste Attività compatte */
        .tema-viaggi-showcase .activities-preview {
            margin: 15px 0 25px 0;
        }

        .tema-viaggi-showcase .activities-preview ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .tema-viaggi-showcase .activities-preview li {
            font-size: 0.9rem;
            opacity: 0.85;
            margin-bottom: 8px;
            position: relative;
            padding-left: 20px;
        }

        .tema-viaggi-showcase .activities-preview li::before {
            content: "•";
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        .tema-viaggi-showcase .mexico-list li::before { color: #ec4899; }
        .tema-viaggi-showcase .colombia-list li::before { color: #22c55e; }

        /* Deal Box */
        .tema-viaggi-showcase .trip-deal-box {
            background: rgba(15, 23, 42, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 16px;
            text-align: center;
        }

        .tema-viaggi-showcase .mexico-border { border-color: rgba(236, 72, 153, 0.2); }
        .tema-viaggi-showcase .colombia-border { border-color: rgba(34, 197, 94, 0.2); }

        .tema-viaggi-showcase .trip-price {
            font-size: 1.1rem;
            margin: 0 0 15px 0;
            color: #ffffff;
        }

        .tema-viaggi-showcase .trip-price strong {
            color: #f59e0b;
            font-size: 2rem;
        }

        .tema-viaggi-showcase .stripe-booking-btn {
            display: block;
            text-align: center;
            color: #ffffff !important;
            text-decoration: none;
            padding: 14px 24px;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .tema-viaggi-showcase .mexico-btn {
            background: #ec4899;
            box-shadow: 0 6px 15px rgba(236, 72, 153, 0.2);
        }
        .tema-viaggi-showcase .mexico-btn:hover {
            background: #db2777;
            transform: translateY(-2px);
        }

        .tema-viaggi-showcase .colombia-btn {
            background: #22c55e;
            color: #0f172a !important;
            box-shadow: 0 6px 15px rgba(34, 197, 94, 0.2);
        }
        .tema-viaggi-showcase .colombia-btn:hover {
            background: #16a34a;
            transform: translateY(-2px);
        }

        /* FAQ Globale della pagina */
        .tema-viaggi-showcase .faq-section {
            margin-top: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 40px;
        }

        .tema-viaggi-showcase .faq-item {
            margin-bottom: 25px;
        }

        .tema-viaggi-showcase .faq-item h4 {
            color: #38bdf8;
            margin: 0 0 8px 0;
            font-size: 1.1rem;
        }

        .tema-viaggi-showcase .faq-item p {
            margin: 0;
            font-size: 0.95rem;
            opacity: 0.8;
            line-height: 1.6;
        }

       

/* --- Mobile: solo intestazione, il menu ora è gestito dal blocco
       unificato "MENU HAMBURGER" in fondo al foglio di stile --- */
        @media screen and (max-width: 900px) {
            .tema-viaggi-showcase header {
                padding: 15px 20px !important;
            }
        }

/* ============================================================
   5) TEMA: Consulenza — Arancione bruciato
      Aggiungi class="tema-arancio" al <body>
   ============================================================ */
.tema-arancio {
            --bg-main: #0f172a;
            --bg-card: #1e293b;
            --accent-primary: #c2410c;
            --accent-secondary: #38bdf8;
            --text-light: #f8fafc;
            --text-muted: #94a3b8;
        }

        body.tema-arancio { font-family: 'Poppins', sans-serif; background-color: var(--bg-main); color: var(--text-light); margin: 0; padding-top: 80px; }
        .tema-arancio .container { max-width: 1000px; margin: 0 auto; padding: 20px; }

        /* HEADER */
        .tema-arancio header.site-header {
            position: fixed; top: 0; left: 0; right: 0; height: 70px;
            background: rgba(15, 23, 42, 0.9); backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 1000; display: flex; justify-content: space-between; align-items: center; padding: 0 40px;
        }

        .tema-arancio .brand-logo { display: flex; align-items: center; gap: 12px; }
        .tema-arancio .brand-logo img { height: 40px; width: auto; }
        .tema-arancio .brand-name { font-size: 1.2rem; font-weight: 700; color: var(--text-light); letter-spacing: 0.5px; }

        .tema-arancio nav.site-nav { display: flex; gap: 25px; }
        .tema-arancio nav.site-nav a { color: var(--text-muted); text-decoration: none; font-weight: 500; transition: 0.3s; }
        .tema-arancio nav.site-nav a:hover { color: var(--accent-primary); }

        /* HERO */
        .tema-arancio .hero-section {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            border: 1px solid rgba(194, 65, 12, 0.2);
            padding: 60px 30px; border-radius: 24px; text-align: center; margin-bottom: 40px;
        }
        .tema-arancio .hero-section h1 { font-size: 2.8rem; margin: 0 0 10px 0; }
        .tema-arancio .hero-section p { font-size: 1.1rem; color: var(--accent-primary); text-transform: uppercase; letter-spacing: 1px; }

        /* CONTENT */
        .tema-arancio .content-grid { display: grid; grid-template-columns: 1.8fr 1.2fr; gap: 30px; }
        .tema-arancio .main-text { background: var(--bg-card); padding: 35px; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.05); }
        .tema-arancio .main-text h2 { color: var(--accent-primary); margin-top: 25px; }
        .tema-arancio .main-text p { line-height: 1.8; color: #cbd5e1; }
        
        /* FOTO PERSONALE */
        .tema-arancio .hero-image {
            width: 100%; height: 300px; object-fit: cover; border-radius: 15px; margin-bottom: 25px; box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }

        /* BOX CONSULENZA */
        .tema-arancio .consulting-box {
            margin-top: 40px; padding: 30px; background: rgba(194, 65, 12, 0.1);
            border: 1px dashed var(--accent-primary); border-radius: 15px; text-align: center;
        }
        .tema-arancio .contact-btn {
            display: inline-block; margin-top: 20px; padding: 15px 30px;
            background: var(--accent-primary); color: var(--bg-main);
            text-decoration: none; border-radius: 50px; font-weight: 700; transition: 0.3s;
        }
        .tema-arancio .contact-btn:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(194, 65, 12, 0.3); }

        /* SIDEBAR */
        .tema-arancio .sidebar-skills { background: #162033; padding: 30px; border-radius: 20px; }
        .tema-arancio .skill-item { margin-bottom: 20px; padding: 15px; border-left: 3px solid var(--accent-primary); background: rgba(0,0,0,0.2); border-radius: 0 8px 8px 0; }

        @media (max-width: 768px) {
            .tema-arancio .content-grid { grid-template-columns: 1fr; }
            .tema-arancio header.site-header { padding: 0 20px; }
        }

/* ============================================================
   /* ============================================================
/* ============================================================
   TEMA: Pagina Prenotazione / Consulenza Confinando
   ============================================================ */
/* =====================================================
   CONFINANDO - CALL VIDEOCHIAMATA
   ===================================================== */


* {
    box-sizing: border-box;
}


body {

    margin:0;

    font-family:'Poppins', sans-serif;

    background:#0f172a;

    color:#f8fafc;

}



/* ================= HEADER ================= */


header {

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px 50px;

    border-bottom:1px solid rgba(255,255,255,.1);

}



.logo {

    display:flex;

    align-items:center;

    gap:15px;

}


.logo img {

    height:40px;

}



.logo span {

    font-size:1.4rem;

    font-weight:700;

}



nav a {

    text-decoration:none;

    color:#cbd5e1;

    margin-left:25px;

    transition:.3s;

}


nav a:hover {

    color:#38bdf8;

}





/* ================= CONTENUTO PRINCIPALE ================= */


main {

    max-width:1200px;

    margin:auto;

    padding:60px 30px;

}



.content {

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    align-items:start;

}





/* ================= CASELLE PREZZI ================= */


.plans {

    display:flex;

    flex-direction:column;

    gap:25px;

}



.box {

    background:#1e293b;

    border:1px solid rgba(255,255,255,.1);

    border-radius:25px;

    padding:30px;

    transition:.3s;

}



.box:hover {

    transform:translateY(-5px);

    border-color:#38bdf8;

}



.box h2 {

    margin-top:0;

    color:#38bdf8;

    font-size:1.3rem;

}



.box p {

    color:#cbd5e1;

}



.price {

    margin-top:20px;

    font-size:2rem;

    font-weight:700;

    color:white;

}



.free {

    color:#22c55e;

}





/* ================= LISTA ORE ================= */


.hours {

    margin-top:20px;

}



.hours p {

    background:#0f172a;

    padding:10px 15px;

    border-radius:10px;

    margin:8px 0;

    color:#f8fafc;

}





/* ================= PARTE DESTRA ================= */


.info {

    background:#1e293b;

    padding:40px;

    border-radius:25px;

    border:1px solid rgba(255,255,255,.1);

}



.info h2 {

    color:#38bdf8;

    font-size:2rem;

}



.info p {

    color:#cbd5e1;

}



.info ul {

    list-style:none;

    padding:0;

    margin-top:30px;

}



.info li {

    background:#0f172a;

    padding:15px;

    border-radius:12px;

    margin-bottom:12px;

}





/* ================= AVVISO ================= */


.notice {

    margin-top:35px;

    padding:25px;

    border-radius:20px;

    background:rgba(56,189,248,.1);

    border:1px solid #38bdf8;

}



.notice h3 {

    color:#38bdf8;

    margin-top:0;

}





/* ================= CTA ================= */


.cta {

    margin-top:70px;

    text-align:center;

    padding:60px 30px;

    background:#1e293b;

    border-radius:30px;

}



.cta h2 {

    font-size:2.3rem;

    color:#38bdf8;

}



.cta p {

    color:#cbd5e1;

}



.cta a {

    display:inline-block;

    margin-top:25px;

    padding:15px 35px;

    background:#38bdf8;

    color:#0f172a;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}



.cta a:hover {

    transform:translateY(-4px);

}





/* ================= FOOTER ================= */


footer {

    text-align:center;

    padding:40px;

    margin-top:50px;

    border-top:1px solid rgba(255,255,255,.1);

    color:#64748b;

}



footer img {

    height:35px;

}





/* ================= MOBILE ================= */


@media(max-width:900px){


header {

    padding:15px 20px;

}


nav {

    display:none;

}



.content {

    grid-template-columns:1fr;

}



.info {

    padding:25px;

}



main {

    padding:20px;

}


}/* =====================================================
   CONFINANDO - CALL VIDEOCHIAMATA
   ===================================================== */


* {
    box-sizing: border-box;
}


body {

    margin:0;

    font-family:'Poppins', sans-serif;

    background:#0f172a;

    color:#f8fafc;

}



/* ================= HEADER ================= */


header {

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:8px 40px;

    border-bottom:1px solid rgba(255,255,255,.1);

}



.logo {

    display:flex;

    align-items:center;

    gap:15px;

}


.logo img {

    height:30px;

}



.logo span {

    font-size:1.2rem;

    font-weight:600;

}



nav a {

    text-decoration:none;

    color:#cbd5e1;

    margin-left:25px;

    transition:.3s;

    font-weight:600;


}


nav a:hover {

    color:#38bdf8;

}





/* ================= CONTENUTO PRINCIPALE ================= */


main {

    max-width:1200px;

    margin:auto;

    padding:60px 30px;

}



.content {

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    align-items:start;

}





/* ================= CASELLE PREZZI ================= */


.plans {

    display:flex;

    flex-direction:column;

    gap:25px;

}



.box {

    background:#1e293b;

    border:1px solid rgba(255,255,255,.1);

    border-radius:25px;

    padding:30px;

    transition:.3s;

}



.box:hover {

    transform:translateY(-5px);

    border-color:#38bdf8;

}



.box h2 {

    margin-top:0;

    color:#38bdf8;

    font-size:1.3rem;

}



.box p {

    color:#cbd5e1;

}



.price {

    margin-top:20px;

    font-size:2rem;

    font-weight:700;

    color:white;

}



.free {

    color:#22c55e;

}





/* ================= LISTA ORE ================= */


.hours {

    margin-top:20px;

}



.hours p {

    background:#0f172a;

    padding:10px 15px;

    border-radius:10px;

    margin:8px 0;

    color:#f8fafc;

}





/* ================= PARTE DESTRA ================= */


.info {

    background:#1e293b;

    padding:40px;

    border-radius:25px;

    border:1px solid rgba(255,255,255,.1);

}



.info h2 {

    color:#38bdf8;

    font-size:2rem;

}



.info p {

    color:#cbd5e1;

}



.info ul {

    list-style:none;

    padding:0;

    margin-top:30px;

}



.info li {

    background:#0f172a;

    padding:15px;

    border-radius:12px;

    margin-bottom:12px;

}





/* ================= AVVISO ================= */


.notice {

    margin-top:35px;

    padding:25px;

    border-radius:20px;

    background:rgba(56,189,248,.1);

    border:1px solid #38bdf8;

}



.notice h3 {

    color:#38bdf8;

    margin-top:0;

}





/* ================= CTA ================= */


.cta {

    margin-top:70px;

    text-align:center;

    padding:60px 30px;

    background:#1e293b;

    border-radius:30px;

}



.cta h2 {

    font-size:2.3rem;

    color:#38bdf8;

}



.cta p {

    color:#cbd5e1;

}



.cta a {

    display:inline-block;

    margin-top:25px;

    padding:15px 35px;

    background:#38bdf8;

    color:#0f172a;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}



.cta a:hover {

    transform:translateY(-4px);

}





/* ================= FOOTER ================= */


footer {

    text-align:center;

    padding:40px;

    margin-top:50px;

    border-top:1px solid rgba(255,255,255,.1);

    color:#64748b;

}



footer img {

    height:35px;

}





/* ================= MOBILE ================= */


@media(max-width:900px){


header {

    padding:15px 20px;

}


nav {

    display:none;

}



.content {

    grid-template-columns:1fr;

}



.info {

    padding:25px;

}



main {

    padding:20px;

}


}

/* ============================================================
   7) TEMA: Consulenza — Oro (Colombia)
      Aggiungi class="tema-oro" al <body>
   ============================================================ */
.tema-oro {
            --bg-main: #0f172a;
            --bg-card: #1e293b;
            --accent-primary: #fbbf24; /* Oro colombiano */
            --accent-secondary: #38bdf8;
            --text-light: #f8fafc;
            --text-muted: #94a3b8;
        }

        body.tema-oro { font-family: 'Poppins', sans-serif; background-color: var(--bg-main); color: var(--text-light); margin: 0; padding-top: 80px; }
        .tema-oro .container { max-width: 1000px; margin: 0 auto; padding: 20px; }

        /* HEADER */
        .tema-oro header.site-header {
            position: fixed; top: 0; left: 0; right: 0; height: 70px;
            background: rgba(15, 23, 42, 0.9); backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 1000; display: flex; justify-content: space-between; align-items: center; padding: 0 40px;
        }

        .tema-oro .brand-logo { display: flex; align-items: center; gap: 12px; }
        .tema-oro .brand-logo img { height: 40px; width: auto; }
        .tema-oro .brand-name { font-size: 1.2rem; font-weight: 700; color: var(--text-light); letter-spacing: 0.5px; }

        .tema-oro nav.site-nav { display: flex; gap: 25px; }
        .tema-oro nav.site-nav a { color: var(--text-muted); text-decoration: none; font-weight: 500; transition: 0.3s; }
        .tema-oro nav.site-nav a:hover { color: var(--accent-primary); }

        /* HERO */
        .tema-oro .hero-section {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            border: 1px solid rgba(251, 191, 36, 0.2);
            padding: 60px 30px; border-radius: 24px; text-align: center; margin-bottom: 40px;
        }
        .tema-oro .hero-section h1 { font-size: 2.8rem; margin: 0 0 10px 0; }
        .tema-oro .hero-section p { font-size: 1.1rem; color: var(--accent-primary); text-transform: uppercase; letter-spacing: 1px; }

        /* CONTENT */
        .tema-oro .content-grid { display: grid; grid-template-columns: 1.8fr 1.2fr; gap: 30px; }
        .tema-oro .main-text { background: var(--bg-card); padding: 35px; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.05); }
        .tema-oro .main-text h2 { color: var(--accent-primary); margin-top: 25px; }
        .tema-oro .main-text p { line-height: 1.8; color: #cbd5e1; }
        
        /* FOTO PERSONALE */
        .tema-oro .hero-image {
            width: 100%; height: 300px; object-fit: cover; border-radius: 15px; margin-bottom: 25px; box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }

        /* BOX CONSULENZA */
        .tema-oro .consulting-box {
            margin-top: 40px; padding: 30px; background: rgba(251, 191, 36, 0.1);
            border: 1px dashed var(--accent-primary); border-radius: 15px; text-align: center;
        }
        .tema-oro .contact-btn {
            display: inline-block; margin-top: 20px; padding: 15px 30px;
            background: var(--accent-primary); color: var(--bg-main);
            text-decoration: none; border-radius: 50px; font-weight: 700; transition: 0.3s;
        }
        .tema-oro .contact-btn:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(251, 191, 36, 0.3); }

        /* SIDEBAR */
        .tema-oro .sidebar-skills { background: #162033; padding: 30px; border-radius: 20px; }
        .tema-oro .skill-item { margin-bottom: 20px; padding: 15px; border-left: 3px solid var(--accent-primary); background: rgba(0,0,0,0.2); border-radius: 0 8px 8px 0; }

        @media (max-width: 768px) {
            .tema-oro .content-grid { grid-template-columns: 1fr; }
            .tema-oro header.site-header { padding: 0 20px; }
        }

/* ============================================================
   8) TEMA: Consulenza — Rosa/Rosso
      Aggiungi class="tema-rosa" al <body>
   ============================================================ */
.tema-rosa {
            --bg-main: #0f172a;
            --bg-card: #1e293b;
            --accent-primary: #f43f5e;
            --accent-secondary: #06b6d4;
            --text-light: #f8fafc;
            --text-muted: #94a3b8;
        }

        body.tema-rosa { font-family: 'Poppins', sans-serif; background-color: var(--bg-main); color: var(--text-light); margin: 0; padding-top: 80px; }
        .tema-rosa .container { max-width: 1000px; margin: 0 auto; padding: 20px; }

        /* HEADER */
        .tema-rosa header.site-header {
            position: fixed; top: 0; left: 0; right: 0; height: 70px;
            background: rgba(15, 23, 42, 0.9); backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 1000; display: flex; justify-content: space-between; align-items: center; padding: 0 40px;
        }

        .tema-rosa .brand-logo { display: flex; align-items: center; gap: 12px; }
        .tema-rosa .brand-logo img { height: 40px; width: auto; }
        .tema-rosa .brand-name { font-size: 1.2rem; font-weight: 700; color: var(--text-light); letter-spacing: 0.5px; }

        .tema-rosa nav.site-nav { display: flex; gap: 25px; }
        .tema-rosa nav.site-nav a { color: var(--text-muted); text-decoration: none; font-weight: 500; transition: 0.3s; }
        .tema-rosa nav.site-nav a:hover { color: var(--accent-primary); }
 
        /* HERO */
        .tema-rosa .hero-section {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            border: 1px solid rgba(244, 63, 94, 0.2);
            padding: 60px 30px; border-radius: 24px; text-align: center; margin-bottom: 40px;
        }
        .tema-rosa .hero-section h1 { font-size: 2.8rem; margin: 0 0 10px 0; }
        .tema-rosa .hero-section p { font-size: 1.1rem; color: var(--accent-primary); text-transform: uppercase; letter-spacing: 1px; }

        /* CONTENT */
        .tema-rosa .content-grid { display: grid; grid-template-columns: 1.8fr 1.2fr; gap: 30px; }
        .tema-rosa .main-text { background: var(--bg-card); padding: 35px; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.05); }
        .tema-rosa .main-text h2 { color: var(--accent-primary); margin-top: 25px; }
        .tema-rosa .main-text p { line-height: 1.8; color: #cbd5e1; }
        
        /* FOTO PERSONALE */
        .tema-rosa .hero-image {
            width: 100%; height: 300px; object-fit: cover; border-radius: 15px; margin-bottom: 25px; box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }

        /* BOX CONSULENZA */
        .tema-rosa .consulting-box {
            margin-top: 40px; padding: 30px; background: rgba(244, 63, 94, 0.1);
            border: 1px dashed var(--accent-primary); border-radius: 15px; text-align: center;
        }
        .tema-rosa .contact-btn {
            display: inline-block; margin-top: 20px; padding: 15px 30px;
            background: var(--accent-primary); color: var(--bg-main);
            text-decoration: none; border-radius: 50px; font-weight: 700; transition: 0.3s;
        }
        .tema-rosa .contact-btn:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(244, 63, 94, 0.3); }

        /* SIDEBAR */
        .tema-rosa .sidebar-skills { background: #162033; padding: 30px; border-radius: 20px; }
        .tema-rosa .skill-item { margin-bottom: 20px; padding: 15px; border-left: 3px solid var(--accent-primary); background: rgba(0,0,0,0.2); border-radius: 0 8px 8px 0; }

        @media (max-width: 768px) {
            .tema-rosa .content-grid { grid-template-columns: 1fr; }
            .tema-rosa header.site-header { padding: 0 20px; }
        }

/* ============================================================
   9) TEMA: Consulenza — Verde Smeraldo
      Aggiungi class="tema-smeraldo" al <body>
   ============================================================ */
.tema-smeraldo {
            --bg-main: #0f172a;
            --bg-card: #1e293b;
            --accent-primary: #34d399;
            --accent-secondary: #38bdf8;
            --text-light: #f8fafc;
            --text-muted: #94a3b8;
        }

        body.tema-smeraldo { font-family: 'Poppins', sans-serif; background-color: var(--bg-main); color: var(--text-light); margin: 0; padding-top: 80px; }
        .tema-smeraldo .container { max-width: 1000px; margin: 0 auto; padding: 20px; }

        /* HEADER */
        .tema-smeraldo header.site-header {
            position: fixed; top: 0; left: 0; right: 0; height: 70px;
            background: rgba(15, 23, 42, 0.9); backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 1000; display: flex; justify-content: space-between; align-items: center; padding: 0 40px;
        }

        .tema-smeraldo .brand-logo { display: flex; align-items: center; gap: 12px; }
        .tema-smeraldo .brand-logo img { height: 40px; width: auto; }
        .tema-smeraldo .brand-name { font-size: 1.2rem; font-weight: 700; color: var(--text-light); letter-spacing: 0.5px; }

        .tema-smeraldo nav.site-nav { display: flex; gap: 25px; }
        .tema-smeraldo nav.site-nav a { color: var(--text-muted); text-decoration: none; font-weight: 500; transition: 0.3s; }
        .tema-smeraldo nav.site-nav a:hover { color: var(--accent-primary); }

        /* HERO */
        .tema-smeraldo .hero-section {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            border: 1px solid rgba(52, 211, 153, 0.2);
            padding: 60px 30px; border-radius: 24px; text-align: center; margin-bottom: 40px;
        }
        .tema-smeraldo .hero-section h1 { font-size: 2.8rem; margin: 0 0 10px 0; }
        .tema-smeraldo .hero-section p { font-size: 1.1rem; color: var(--accent-primary); text-transform: uppercase; letter-spacing: 1px; }

        /* CONTENT */
        .tema-smeraldo .content-grid { display: grid; grid-template-columns: 1.8fr 1.2fr; gap: 30px; }
        .tema-smeraldo .main-text { background: var(--bg-card); padding: 35px; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.05); }
        .tema-smeraldo .main-text h2 { color: var(--accent-primary); margin-top: 25px; }
        .tema-smeraldo .main-text p { line-height: 1.8; color: #cbd5e1; }
        
        .tema-smeraldo .hero-image {
            width: 100%; height: 300px; object-fit: cover; border-radius: 15px; margin-bottom: 25px; box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }

        .tema-smeraldo .consulting-box {
            margin-top: 40px; padding: 30px; background: rgba(52, 211, 153, 0.1);
            border: 1px dashed var(--accent-primary); border-radius: 15px; text-align: center;
        }
        .tema-smeraldo .contact-btn {
            display: inline-block; margin-top: 20px; padding: 15px 30px;
            background: var(--accent-primary); color: var(--bg-main);
            text-decoration: none; border-radius: 50px; font-weight: 700; transition: 0.3s;
        }
        .tema-smeraldo .contact-btn:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(52, 211, 153, 0.3); }

        .tema-smeraldo .sidebar-skills { background: #162033; padding: 30px; border-radius: 20px; }
        .tema-smeraldo .skill-item { margin-bottom: 20px; padding: 15px; border-left: 3px solid var(--accent-primary); background: rgba(0,0,0,0.2); border-radius: 0 8px 8px 0; }

        @media (max-width: 768px) {
            .tema-smeraldo .content-grid { grid-template-columns: 1fr; }
            .tema-smeraldo header.site-header { padding: 0 20px; }
        }

/* ============================================================
   10) TEMA: Consulenza — Turchese Oceanico
       Aggiungi class="tema-turchese" al <body>
   ============================================================ */
.tema-turchese {
            --bg-main: #0f172a;
            --bg-card: #1e293b;
            --accent-primary: #38bdf8; /* Turchese oceanico */
            --accent-secondary: #f43f5e; /* Rosa neon */
            --text-light: #f8fafc;
            --text-muted: #94a3b8;
        }

        body.tema-turchese { font-family: 'Poppins', sans-serif; background-color: var(--bg-main); color: var(--text-light); margin: 0; padding-top: 80px; }
        .tema-turchese .container { max-width: 1000px; margin: 0 auto; padding: 20px; }

        /* HEADER */
        .tema-turchese header.site-header {
            position: fixed; top: 0; left: 0; right: 0; height: 70px;
            background: rgba(15, 23, 42, 0.9); backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 1000; display: flex; justify-content: space-between; align-items: center; padding: 0 40px;
        }

        .tema-turchese .brand-logo { display: flex; align-items: center; gap: 12px; }
        .tema-turchese .brand-logo img { height: 40px; width: auto; }
        .tema-turchese .brand-name { font-size: 1.2rem; font-weight: 700; color: var(--text-light); letter-spacing: 0.5px; }

        .tema-turchese nav.site-nav { display: flex; gap: 25px; }
        .tema-turchese nav.site-nav a { color: var(--text-muted); text-decoration: none; font-weight: 500; transition: 0.3s; }
        .tema-turchese nav.site-nav a:hover { color: var(--accent-primary); }
 


        /* HERO */
        .tema-turchese .hero-section {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            border: 1px solid rgba(56, 189, 248, 0.2);
            padding: 60px 30px; border-radius: 24px; text-align: center; margin-bottom: 40px;
        }
        .tema-turchese .hero-section h1 { font-size: 2.8rem; margin: 0 0 10px 0; }
        .tema-turchese .hero-section p { font-size: 1.1rem; color: var(--accent-primary); text-transform: uppercase; letter-spacing: 1px; }

        /* CONTENT */
        .tema-turchese .content-grid { display: grid; grid-template-columns: 1.8fr 1.2fr; gap: 30px; }
        .tema-turchese .main-text { background: var(--bg-card); padding: 35px; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.05); }
        .tema-turchese .main-text h2 { color: var(--accent-primary); margin-top: 25px; }
        .tema-turchese .main-text p { line-height: 1.8; color: #cbd5e1; }
        
        /* FOTO PERSONALE */
        .tema-turchese .hero-image {
            width: 100%; height: 300px; object-fit: cover; border-radius: 15px; margin-bottom: 25px; box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }

        /* BOX CONSULENZA */
        .tema-turchese .consulting-box {
            margin-top: 40px; padding: 30px; background: rgba(56, 189, 248, 0.1);
            border: 1px dashed var(--accent-primary); border-radius: 15px; text-align: center;
        }
        .tema-turchese .contact-btn {
            display: inline-block; margin-top: 20px; padding: 15px 30px;
            background: var(--accent-primary); color: var(--bg-main);
            text-decoration: none; border-radius: 50px; font-weight: 700; transition: 0.3s;
        }
        .tema-turchese .contact-btn:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(56, 189, 248, 0.3); }

        /* SIDEBAR */
        .tema-turchese .sidebar-skills { background: #162033; padding: 30px; border-radius: 20px; }
        .tema-turchese .skill-item { margin-bottom: 20px; padding: 15px; border-left: 3px solid var(--accent-primary); background: rgba(0,0,0,0.2); border-radius: 0 8px 8px 0; }

        @media (max-width: 768px) {
            .tema-turchese .content-grid { grid-template-columns: 1fr; }
            .tema-turchese header.site-header { padding: 0 20px; }
        }

/* ============================================================
   11) TEMA: Quiz ("gioca con me.html")
       Aggiungi class="tema-quiz" al <body>
   ============================================================ */
.tema-quiz {
            --bg-main: #0f172a;
            --bg-card: rgba(30, 41, 59, 0.7);
            --accent-quiz: #38bdf8;   
            --accent-selected: #0284c7; 
            --accent-success: #10b981; 
            --accent-danger: #f43f5e;  
            --text-light: #f8fafc;
            --text-muted: #94a3b8;
        }

        body.tema-quiz { 
            font-family: 'Poppins', sans-serif; 
            background-color: var(--bg-main); 
            color: var(--text-light); 
            margin: 0; 
            padding-top: 100px; 
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            background-image: radial-gradient(circle at top right, rgba(56, 189, 248, 0.05), transparent 400px);
        }

        /* LAYOUT A DUE COLONNE FISSO */
        .tema-quiz .main-layout {
            display: flex;
            max-width: 1050px;
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
            gap: 25px;
            box-sizing: border-box;
            flex: 1;
            align-items: flex-start;
        }

        .tema-quiz .container { 
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        /* SIDEBAR DESTRA - SEMPRE VISIBILE */
        .tema-quiz .sidebar-scores {
            width: 300px;
            background: rgba(30, 41, 59, 0.85);
            border: 1px solid rgba(56, 189, 248, 0.2);
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            box-sizing: border-box;
            position: sticky;
            top: 100px;
        }

        .tema-quiz .sidebar-scores h3 {
            margin: 0 0 15px 0;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 8px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 8px;
        }

        .tema-quiz .scores-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .tema-quiz .score-history-item {
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 12px 14px;
            border-radius: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: border-color 0.3s ease;
        }

        .tema-quiz .score-history-item:hover {
            border-color: rgba(56, 189, 248, 0.3);
        }

        .tema-quiz .score-history-left {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .tema-quiz .history-date {
            color: var(--text-muted);
            font-size: 0.72rem;
        }

        .tema-quiz .history-points {
            font-weight: 700;
            color: var(--accent-quiz);
            font-size: 1.05rem;
        }

        .tema-quiz .history-accuracy {
            background: rgba(56, 189, 248, 0.1);
            color: var(--accent-quiz);
            padding: 4px 8px;
            border-radius: 8px;
            font-size: 0.78rem;
            font-weight: 600;
        }

        /* HEADER & NAV */
        .tema-quiz header.site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 70px;
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
        }

        .tema-quiz .logo-container { display: flex; align-items: center; gap: 12px; text-decoration: none; }
        .tema-quiz .logo-container img { height: 38px; width: auto; }
        .tema-quiz .logo-text { font-size: 1.1rem; font-weight: 600; letter-spacing: 0.5px; color: var(--text-light); }

        .tema-quiz nav.site-nav { display: flex; gap: 25px; }
        .tema-quiz nav.site-nav a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; font-weight: 500; }
        .tema-quiz nav.site-nav a:hover { color: var(--accent-quiz); }

        /* INTRO TEXT */
        .tema-quiz .quiz-intro { text-align: center; margin-bottom: 25px; }
        .tema-quiz .quiz-intro h1 { font-size: 2.2rem; margin: 0 0 8px 0; font-weight: 700; color: var(--text-light); }
        .tema-quiz .quiz-intro p { font-size: 1rem; color: var(--accent-quiz); margin: 0; font-weight: 500; }

        /* QUIZ BOX CONTAINER */
        .tema-quiz #quiz-box { 
            background: var(--bg-card); 
            padding: 45px 40px 40px 40px; 
            border-radius: 24px; 
            border: 1px solid rgba(56, 189, 248, 0.15); 
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            text-align: center;
            position: relative;
        }

        /* TIMER BOX */
        .tema-quiz #timer-box {
            position: absolute;
            top: 15px;
            right: 25px;
            font-size: 0.95rem;
            color: var(--accent-quiz);
            font-weight: 700;
            background: rgba(15, 23, 42, 0.85);
            padding: 6px 16px;
            border-radius: 20px;
            border: 1px solid rgba(56, 189, 248, 0.4);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .tema-quiz .timer-low {
            color: var(--accent-danger) !important;
            border-color: var(--accent-danger) !important;
            animation: pulse 1s infinite alternate;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            100% { transform: scale(1.05); }
        }

        .tema-quiz #question { 
            font-size: 1.3rem; 
            color: var(--text-light); 
            margin-top: 20px; 
            margin-bottom: 30px; 
            font-weight: 600;
            line-height: 1.5;
        }

        .tema-quiz #answers { 
            display: flex; 
            flex-direction: column; 
            gap: 14px; 
            margin-bottom: 30px; 
        }

        .tema-quiz #answers button {
            background: rgba(15, 23, 42, 0.5);
            color: #cbd5e1;
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 16px 20px;
            font-size: 0.95rem;
            font-weight: 500;
            border-radius: 12px;
            cursor: pointer;
            text-align: left;
            font-family: 'Poppins', sans-serif;
            transition: all 0.25s ease;
        }

        .tema-quiz #answers button:hover:not(:disabled) {
            background: #1e293b;
            color: var(--text-light);
            border-color: rgba(56, 189, 248, 0.4);
        }

        .tema-quiz .quiz-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .tema-quiz .btn-nav-quiz {
            color: white;
            border: none;
            padding: 14px 26px;
            font-size: 0.95rem;
            font-weight: 600;
            border-radius: 12px;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            transition: all 0.25s ease;
        }

        .tema-quiz .btn-next {
            background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
            box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
        }

        .tema-quiz .btn-prev {
            background: #1e293b;
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-muted);
        }

        .tema-quiz .btn-nav-quiz:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .tema-quiz #score { 
            margin-top: 25px; 
            margin-bottom: 0;
            font-size: 0.9rem; 
            color: var(--text-muted); 
        }

        .tema-quiz .quiz-completed-icon { font-size: 3.5rem; margin-bottom: 15px; display: block; }

        .tema-quiz .review-container {
            text-align: left;
            margin-top: 30px;
            max-height: 280px;
            overflow-y: auto;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
        }

        .tema-quiz .review-item {
            background: rgba(15, 23, 42, 0.4);
            border-radius: 12px;
            padding: 15px;
            margin-bottom: 15px;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .tema-quiz .review-q { font-size: 0.95rem; font-weight: 600; margin-bottom: 8px; color: var(--text-light); }
        .tema-quiz .review-ans-box { font-size: 0.88rem; margin: 4px 0; padding: 6px 12px; border-radius: 6px; }
        .tema-quiz .review-correct { background: rgba(16, 185, 129, 0.15); border: 1px solid var(--accent-success); color: #a7f3d0; }
        .tema-quiz .review-wrong { background: rgba(244, 63, 94, 0.15); border: 1px solid var(--accent-danger); color: #fecdd3; }

        .tema-quiz .score-badge-container { display: flex; justify-content: center; gap: 12px; margin: 20px 0; flex-wrap: wrap; }
        .tema-quiz .score-card { background: rgba(15, 23, 42, 0.6); border: 1px solid rgba(255,255,255,0.08); padding: 10px 16px; border-radius: 14px; min-width: 90px; }
        .tema-quiz .score-card-title { font-size: 0.72rem; text-transform: uppercase; color: var(--text-muted); letter-spacing: 1px; margin-bottom: 4px; }
        .tema-quiz .score-card-value { font-size: 1.3rem; font-weight: 700; }

        .tema-quiz .aesthetic-wave { height: 2px; background: linear-gradient(90deg, transparent 0%, var(--accent-quiz) 50%, transparent 100%); margin: 30px 0 20px 0; opacity: 0.4; }
.tema-quiz footer { display: flex; justify-content: center; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--text-muted); padding: 20px 0; width: 100%; }
        .tema-quiz footer img { height: 26px; width: auto; }

               @media (max-width: 880px) {
            .tema-quiz .main-layout { flex-direction: column; }
            .tema-quiz .sidebar-scores { width: 100%; position: static; }
        }	

/* ============================================================
   FIX MOBILE — MENU HAMBURGER UNIFICATO PER TUTTE LE PAGINE
   Aggiunto per rendere il sito utilizzabile da smartphone.
   ============================================================ */

/* Fix: i menu a tendina ora si aprono al passaggio del mouse
   su desktop (prima mancava questa regola) */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Su mobile i dropdown si aprono al tocco tramite la classe .show
   aggiunta via JS (nav-toggle.js) */
.dropdown-content.show {
    display: block !important;
}

/* Pulsante hamburger: nascosto su desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px;
    height: 34px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1200;
    padding: 0;
}

.nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #ffffff;
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Overlay scuro dietro al menu aperto */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    /* Deve restare SOTTO all'header (che ha z-index:1000 su tutte le pagine),
       altrimenti il menu (figlio dell'header) risulterebbe coperto e i
       link diventerebbero cliccabili solo apparentemente. */
    z-index: 900;
}
.nav-overlay.active { display: block; }

@media (max-width: 900px) {

    .nav-toggle {
        display: flex;
    }

    /* Vale sia per <nav> semplice (index, viaggia con me, call videochiamata)
       sia per <nav class="site-nav"> (pagine paese e quiz) */
    header nav {
        position: fixed !important;
        top: 0;
        right: 0;
        height: 100vh;
        width: 78%;
        max-width: 320px;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        padding: 100px 30px 30px 30px !important;
        gap: 22px !important;
        transform: translateX(100%);
        transition: transform 0.35s ease;
        overflow-y: auto;
        display: flex !important;
        z-index: 1100;
        box-shadow: -12px 0 30px rgba(0,0,0,0.4);
    }

    header nav.nav-open {
        transform: translateX(0);
    }

    header nav .dropdown {
        width: 100%;
    }

    header nav .dropdown-content {
        position: static;
        transform: none;
        box-shadow: none;
        width: 100%;
        min-width: 0;
        margin-top: 8px;
        background: rgba(255,255,255,0.06);
    }

    header nav .dropdown-content a {
        color: #f8fafc !important;
    }

    header nav .dropdown-content a:hover {
        background-color: rgba(255,255,255,0.1) !important;
    }

    /* Header: lascia spazio al bottone hamburger e non spingere gli
       elementi fuori schermo */
    .site-header, header {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* ============================================================
   FIX MOBILE — HOME (index.html)
   1) La hero (badge + titolo + paragrafo + bottoni) usciva dai
      bordi dello schermo e si sovrapponeva all'header fisso.
   2) La griglia "Paesi Visitati" ora su smartphone mostra solo
      le prime 5 card, con un bottone "+ Mostra altri Paesi".
   ============================================================ */
@media (max-width: 900px) {

    .hero-content {
        max-width: 100% !important;
        margin-left: 0 !important;
        padding: 0 24px;
        padding-top: 110px; /* spazio per non finire sotto l'header fisso */
        box-sizing: border-box;
    }

    .badge {
        display: inline-block;
        max-width: 100%;
        font-size: 0.85rem;
    }

    .hero h1 {
        font-size: 2.1rem;
        word-wrap: break-word;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .buttons {
        flex-wrap: wrap;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-book {
        padding: 12px 22px;
        font-size: 0.9rem;
    }

    /* Griglia paesi: una colonna leggibile invece di 3 strette */
    .grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Nasconde tutte le card dalla 6ª in poi finché non si apre */
    #countries-grid .country-card:nth-child(n+6) {
        display: none;
    }

    #countries-grid.expanded .country-card:nth-child(n+6) {
        display: block;
    }

    .countries-toggle-btn {
        display: block;
        margin: 25px auto 0 auto;
        padding: 14px 28px;
        background: #38bdf8;
        color: #0f172a;
        border: none;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.95rem;
        cursor: pointer;
        font-family: 'Poppins', sans-serif;
        transition: 0.3s;
    }

    .countries-toggle-btn:hover {
        transform: scale(1.03);
    }
}

/* Il bottone "+ Mostra altri Paesi" esiste SOLO per l'esperienza
   mobile: su desktop tutte le card sono già visibili nella griglia */
@media (min-width: 901px) {
    .countries-toggle-btn {
        display: none;
    }
}

/* ============================================================
   COOKIE BANNER — valido su tutte le pagine
   ============================================================ */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 18px 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    box-shadow: 0 -8px 25px rgba(0,0,0,0.35);
    transform: translateY(120%);
    transition: transform 0.4s ease;
    font-family: 'Poppins', sans-serif;
}

.cookie-banner.cookie-banner-show {
    transform: translateY(0);
}

.cookie-banner.cookie-banner-hide {
    transform: translateY(120%);
}

.cookie-banner-text {
    color: #f8fafc;
    font-size: 0.85rem;
    line-height: 1.5;
    flex: 1 1 320px;
    max-width: 800px;
}

.cookie-banner-text a {
    color: #38bdf8;
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 11px 20px;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    transition: 0.3s;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: #38bdf8;
    color: #0f172a;
}

.cookie-btn-accept:hover {
    transform: scale(1.04);
}

.cookie-btn-reject {
    background: transparent;
    color: #f8fafc;
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-btn-reject:hover {
    background: rgba(255,255,255,0.08);
}

@media (max-width: 600px) {
    .cookie-banner {
        padding: 16px 20px;
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-banner-actions {
        justify-content: stretch;
    }
    .cookie-btn {
        flex: 1;
    }
}

/* ============================================================
   RECENSIONI SFOCATE — sblocco gratuito con un click
   ============================================================ */
.review-locked {
    filter: blur(7px);
    pointer-events: none;
    user-select: none;
    transition: filter 0.5s ease;
}

.review-locked.unlocked {
    filter: none;
    pointer-events: auto;
    user-select: auto;
}

.unlock-reviews-btn {
    display: block;
    margin: 10px auto 30px auto;
    padding: 13px 26px;
    background: transparent;
    border: 1px solid rgba(56, 189, 248, 0.5);
    color: #38bdf8;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
}

.unlock-reviews-btn:hover {
    background: rgba(56, 189, 248, 0.1);
    transform: scale(1.03);
}

.unlock-reviews-btn.hidden {
    display: none;
}
