/* =========================================================
   Parking Scala dei Turchi — Stylesheet
   Palette: palette-parcheggio-sicilia.html
   Font:    Cormorant Garamond (titoli) + DM Sans (testo)
   ========================================================= */

:root {
    /* Primari */
    --mare-profondo:   #0D3B5E;
    --cielo-estivo:    #2A7FAF;
    --acqua-cristallo: #5BBFDE;
    --schiuma:         #C8EBF5;
    /* Terrosi */
    --marna-bianca:    #F5F0E8;
    --sabbia-calda:    #E8D5A3;
    --tufo-antico:     #C4965A;
    --terra-rossa:     #8B4A2B;
    /* Accenti */
    --sole-agrigento:  #F2A20C;
    --ulivo:           #6B7C45;
    --fico-dindia:     #B85C38;
    /* Neutri */
    --bianco-puro:     #FEFCF8;
    --grigio-pietra:   #6B6560;
    --inchiostro:      #1A1410;

    /* Bootstrap overrides */
    --bs-primary:        #2A7FAF;
    --bs-secondary:      #C4965A;
    --bs-dark:           #0D3B5E;
    --bs-primary-rgb:    42, 127, 175;
    --bs-secondary-rgb:  196, 150, 90;
    --bs-dark-rgb:       13, 59, 94;
    --bs-light:          #F5F0E8;
    --bs-body-font-family: 'DM Sans', sans-serif;
    --bs-body-color:     #1A1410;
    --bs-body-bg:        #FEFCF8;
}

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bianco-puro);
    color: var(--inchiostro);
}

h1, h2, h3, h4, h5 { font-family: 'Cormorant Garamond', serif; }

/* Bootstrap utility overrides */
.text-primary   { color: var(--cielo-estivo) !important; }
.text-secondary { color: var(--tufo-antico) !important; }
.bg-primary     { background-color: var(--cielo-estivo) !important; }
.bg-secondary   { background-color: var(--tufo-antico) !important; }
.bg-dark        { background-color: var(--mare-profondo) !important; }
.border-primary { border-color: var(--cielo-estivo) !important; }

.btn-primary {
    background-color: var(--cielo-estivo);
    border-color: var(--cielo-estivo);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    letter-spacing: 0.03em;
}
.btn-primary:hover, .btn-primary:focus {
    background-color: var(--mare-profondo);
    border-color: var(--mare-profondo);
    color: #fff;
}
.btn-secondary {
    background-color: var(--tufo-antico);
    border-color: var(--tufo-antico);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}
.btn-secondary:hover, .btn-secondary:focus {
    background-color: var(--cielo-estivo);
    border-color: var(--cielo-estivo);
    color: #fff;
}
.btn-outline-light {
    border-color: rgba(255,255,255,0.6);
    color: #fff;
}
.btn-outline-light:hover {
    background-color: #fff;
    color: var(--mare-profondo);
}
.btn {
    font-weight: 500;
    transition: .3s;
}

/* =========================================================
   SPINNER
   ========================================================= */
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}
#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/* =========================================================
   BACK TO TOP
   ========================================================= */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 88px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--tufo-antico);
    border-color: var(--tufo-antico);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 99;
}
.back-to-top:hover { background-color: var(--cielo-estivo); border-color: var(--cielo-estivo); }

/* =========================================================
   WHATSAPP FLOATING BUTTON
   ========================================================= */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 1000;
    transition: 0.3s;
    text-decoration: none;
}
.whatsapp-float:hover {
    background: #1ebe5c;
    color: #fff;
    transform: scale(1.08);
}

/* =========================================================
   NAVBAR
   ========================================================= */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1030;
    background: transparent;
    transition: background 0.4s, box-shadow 0.4s;
    padding: 0 1.5rem;
}
.site-nav.scrolled {
    background: var(--mare-profondo);
    box-shadow: 0 2px 20px rgba(13,59,94,0.3);
}
.site-nav .navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: #fff;
    text-decoration: none;
    line-height: 1.2;
}
.site-nav .navbar-brand small {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--acqua-cristallo);
    font-weight: 400;
}
.site-nav .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    padding: 0.5rem 0.75rem !important;
    transition: color 0.2s;
}
.site-nav .nav-link:hover, .site-nav .nav-link.active {
    color: var(--sabbia-calda) !important;
}
.site-nav .navbar-toggler {
    border: 1px solid rgba(255,255,255,0.4);
    padding: 6px 10px;
}
.site-nav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
@media (max-width: 991.98px) {
    .site-nav .navbar-collapse {
        background: var(--mare-profondo);
        padding: 1rem 1.5rem;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .site-nav .nav-link { padding: 0.6rem 0 !important; }
}
.btn-wa {
    background: #25D366;
    color: #fff !important;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    transition: background 0.2s;
}
.btn-wa:hover { background: #1ebe5c; color: #fff !important; }

/* Lang switcher */
#langLabel { font-weight: 600; letter-spacing: 1px; color: #fff; }
.lang-option.active { font-weight: 700; color: var(--acqua-cristallo) !important; }

/* =========================================================
   HERO
   ========================================================= */
.hero-section {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    transform: scale(1.04);
    transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(13,59,94,0.82) 0%,
        rgba(13,59,94,0.5) 50%,
        rgba(91,191,222,0.2) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}
.hero-eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--acqua-cristallo);
    margin-bottom: 1rem;
}
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 7vw, 5rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.hero-title em {
    font-style: italic;
    color: var(--sabbia-calda);
}
.hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    font-weight: 300;
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }
.hero-ctas .btn { padding: 0.75rem 1.75rem; border-radius: 4px; font-size: 0.9rem; }
.btn-gold {
    background: var(--sole-agrigento);
    color: var(--inchiostro);
    border: none;
    font-weight: 600;
}
.btn-gold:hover { background: #d48e0b; color: var(--inchiostro); }

/* Quick info strip inside hero */
.hero-info-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.hero-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
}
.hero-info-item i { color: var(--acqua-cristallo); font-size: 1rem; }

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
}
.scroll-indicator .chevron {
    display: block;
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255,255,255,0.4);
    border-bottom: 2px solid rgba(255,255,255,0.4);
    transform: rotate(45deg);
    margin: 0.5rem auto 0;
    animation: scrollBounce 1.6s infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
    50% { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* =========================================================
   SECTION COMMONS
   ========================================================= */
.section-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--cielo-estivo);
    margin-bottom: 0.5rem;
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--mare-profondo);
    line-height: 1.2;
    margin-bottom: 0;
}
.section-title em { font-style: italic; color: var(--tufo-antico); }
.section-divider {
    width: 48px;
    height: 2px;
    background: var(--tufo-antico);
    margin: 1rem 0 1.5rem;
}
.section-divider.center { margin: 1rem auto 1.5rem; }

/* =========================================================
   STATS BAR
   ========================================================= */
.stats-bar {
    background: var(--mare-profondo);
    padding: 1.5rem 0;
}
.stat-item {
    text-align: center;
    padding: 0.5rem 1rem;
    border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--sabbia-calda);
    line-height: 1;
}
.stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}
@media (max-width: 576px) {
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
    .stat-item:last-child { border-bottom: none; }
}

/* =========================================================
   IL PARCHEGGIO
   ========================================================= */
.parcheggio-section { background: var(--marna-bianca); }

.info-card {
    background: var(--bianco-puro);
    border-radius: 12px;
    padding: 1.75rem;
    height: 100%;
    border-bottom: 3px solid var(--cielo-estivo);
    box-shadow: 0 2px 16px rgba(13,59,94,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(13,59,94,0.12);
}
.info-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--schiuma);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.info-card-icon i { font-size: 1.3rem; color: var(--cielo-estivo); }
.info-card h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--mare-profondo);
    margin-bottom: 0.75rem;
}
.info-card p, .info-card ul { font-size: 0.88rem; color: var(--grigio-pietra); margin: 0; }
.info-card ul { padding-left: 1.1rem; }
.info-card ul li { margin-bottom: 0.35rem; }

.vehicle-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--schiuma);
    color: var(--mare-profondo);
    border-radius: 20px;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 500;
    margin: 0.2rem;
}

/* =========================================================
   TARIFFE
   ========================================================= */
.tariffe-section { background: var(--bianco-puro); }

.tariffe-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(13,59,94,0.1);
}
.tariffe-table thead th {
    background: var(--mare-profondo);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 1rem 1.25rem;
    text-align: center;
}
.tariffe-table thead th:first-child { text-align: left; }
.tariffe-table tbody tr { background: var(--bianco-puro); }
.tariffe-table tbody tr:nth-child(even) { background: var(--marna-bianca); }
.tariffe-table tbody tr:hover { background: var(--schiuma); }
.tariffe-table tbody td {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    color: var(--inchiostro);
    text-align: center;
    border-bottom: 1px solid rgba(13,59,94,0.06);
}
.tariffe-table tbody td:first-child { text-align: left; font-weight: 500; }
.tariffe-table .price-cell {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--mare-profondo);
}
.tariffe-table .price-cell small { font-size: 0.65rem; font-family: 'DM Sans',sans-serif; color: var(--grigio-pietra); display: block; font-weight: 400; }

.vehicle-icon { font-size: 1.2rem; margin-right: 0.4rem; }

.sconto-badge {
    display: inline-block;
    background: var(--sole-agrigento);
    color: var(--inchiostro);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    letter-spacing: 0.05em;
}

/* =========================================================
   PRENOTAZIONE
   ========================================================= */
.prenotazione-section {
    background: linear-gradient(135deg, var(--mare-profondo) 0%, #0A2F4D 100%);
    padding: 80px 0;
}

/* =========================================================
   COME ARRIVARE
   ========================================================= */
.arrivare-section { background: var(--marna-bianca); }

.direction-card {
    background: var(--bianco-puro);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 2px 10px rgba(13,59,94,0.05);
}
.direction-card .dir-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--schiuma);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.direction-card .dir-icon i { color: var(--cielo-estivo); font-size: 1rem; }
.direction-card .dir-info h6 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--mare-profondo);
    margin: 0 0 0.25rem;
}
.direction-card .dir-info p { font-size: 0.85rem; color: var(--grigio-pietra); margin: 0; }

.map-embed {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(13,59,94,0.15);
    height: 380px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Walking path */
.walk-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px dashed rgba(13,59,94,0.12);
}
.walk-step:last-child { border-bottom: none; }
.walk-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--cielo-estivo);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}
.walk-step span { font-size: 0.88rem; color: var(--grigio-pietra); }

/* =========================================================
   SCALA DEI TURCHI INFO
   ========================================================= */
.scala-section { background: var(--sabbia-calda); }
.scala-section .section-title { color: var(--terra-rossa); }
.scala-section .section-divider { background: var(--tufo-antico); }

.scala-info-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border-top: 3px solid var(--tufo-antico);
}
.scala-info-card i { font-size: 1.8rem; color: var(--tufo-antico); margin-bottom: 0.75rem; display: block; }
.scala-info-card h6 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--mare-profondo);
    margin-bottom: 0.35rem;
}
.scala-info-card p { font-size: 0.83rem; color: var(--grigio-pietra); margin: 0; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-section { background: var(--bianco-puro); }

.accordion-item {
    border: none;
    border-bottom: 1px solid rgba(13,59,94,0.1);
    background: transparent;
}
.accordion-item:last-child { border-bottom: none; }
.accordion-button {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--mare-profondo);
    background: transparent;
    padding: 1.25rem 0;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    color: var(--cielo-estivo);
    background: transparent;
}
.accordion-button::after {
    filter: none;
    opacity: 0.5;
}
.accordion-body {
    font-size: 0.88rem;
    color: var(--grigio-pietra);
    line-height: 1.75;
    padding: 0 0 1.25rem;
}

/* =========================================================
   CONTATTI
   ========================================================= */
.contatti-section { background: var(--marna-bianca); }

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact-info-item .ci-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--schiuma);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-item .ci-icon i { color: var(--cielo-estivo); font-size: 1.1rem; }
.contact-info-item h6 {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--grigio-pietra);
    margin: 0 0 0.2rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
}
.contact-info-item a, .contact-info-item p {
    font-size: 0.95rem;
    color: var(--mare-profondo);
    font-weight: 500;
    margin: 0;
    text-decoration: none;
}
.contact-info-item a:hover { color: var(--cielo-estivo); }

/* Contact form */
.contact-form { background: var(--bianco-puro); border-radius: 16px; padding: 2rem; box-shadow: 0 4px 24px rgba(13,59,94,0.08); }
.contact-form .form-label { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grigio-pietra); font-weight: 500; }
.contact-form .form-control, .contact-form .form-select {
    border: 1px solid rgba(13,59,94,0.15);
    border-radius: 6px;
    background: var(--marna-bianca);
    font-size: 0.9rem;
    color: var(--inchiostro);
    padding: 0.65rem 0.9rem;
}
.contact-form .form-control:focus, .contact-form .form-select:focus {
    border-color: var(--cielo-estivo);
    box-shadow: 0 0 0 3px rgba(42,127,175,0.12);
    background: #fff;
}

/* =========================================================
   BREADCRUMB / PAGE HERO (pagine secondarie)
   ========================================================= */
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 140px 0 60px;
}
.bg-breadcrumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(13,59,94,0.75), rgba(42,127,175,0.45));
}
.bg-breadcrumb > * { position: relative; z-index: 1; }
.bg-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,0.8); text-decoration: none; }
.bg-breadcrumb .breadcrumb-item a:hover { color: var(--sabbia-calda); }
.bg-breadcrumb .breadcrumb-item.active { color: var(--sabbia-calda); }
.bg-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }
@media (max-width: 767px) { .bg-breadcrumb { padding: 110px 0 50px; } }

/* =========================================================
   GALLERY (gallery.html)
   ========================================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 4/3;
    display: block;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,59,94,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; color: #fff; }

/* =========================================================
   HOME GALLERY MOSAIC
   ========================================================= */
.home-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}
.home-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.home-gallery-item:hover img { transform: scale(1.06); }
.mosaic-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,59,94,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transition: 0.3s;
}
.home-gallery-item:hover .mosaic-overlay { opacity: 1; }
.mosaic-overlay i { font-size: 1.8rem; color: #fff; }
.mosaic-overlay span { font-size: 0.82rem; font-weight: 500; color: #fff; letter-spacing: 0.5px; }

/* =========================================================
   SERVICE CARDS (camper, navette)
   ========================================================= */
.service-item {
    position: relative;
    background: var(--bianco-puro);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(13,59,94,0.07);
    transition: 0.3s;
}
.service-item:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(13,59,94,0.13); }
.service-check-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: var(--bianco-puro);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(13,59,94,0.06);
    margin-bottom: 10px;
    transition: 0.3s;
}
.service-check-item:hover { transform: translateX(5px); }
.service-check-item i { font-size: 1.3rem; color: var(--cielo-estivo); flex-shrink: 0; }
.service-check-item span { font-weight: 500; font-size: 0.9rem; }

/* Pricing table (camper stagioni) */
.pricing-table { border-radius: 14px; overflow: hidden; box-shadow: 0 6px 28px rgba(13,59,94,0.12); }
.pricing-row { display: flex; align-items: center; padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,0.1); transition: 0.2s; }
.pricing-row:last-child { border-bottom: none; }
.pricing-row:hover { filter: brightness(1.07); }
.season-badge { display: inline-block; padding: 3px 10px; border-radius: 16px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-left: 8px; }
.season-low  { background: #2A7A4A; color: #fff; }
.season-mid  { background: var(--cielo-estivo); color: #fff; }
.season-high { background: var(--tufo-antico); color: #fff; }
.season-peak { background: #C0392B; color: #fff; }
.pricing-row .season-name { font-weight: 700; font-size: 1rem; flex: 1; }
.pricing-row .season-dates { flex: 1; font-size: 0.85rem; opacity: 0.8; }
.pricing-row .season-price { font-size: 1.7rem; font-weight: 800; text-align: right; min-width: 110px; font-family: 'Cormorant Garamond', serif; }
.pricing-row .season-price small { font-size: 0.75rem; font-family: 'DM Sans',sans-serif; font-weight: 400; opacity: 0.75; }
@media (max-width: 576px) { .pricing-row { flex-wrap: wrap; gap: 6px; } .pricing-row .season-dates { flex: 100%; } .pricing-row .season-price { min-width: auto; } }

/* Route stops (navette) */
.route-stop { display: flex; align-items: flex-start; gap: 18px; padding: 18px 0; position: relative; }
.route-stop:not(:last-child)::after { content: ""; position: absolute; left: 18px; top: 56px; width: 2px; height: calc(100% - 36px); background: linear-gradient(var(--cielo-estivo), var(--tufo-antico)); }
.route-dot { width: 38px; height: 38px; border-radius: 50%; background: var(--cielo-estivo); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 0.85rem; flex-shrink: 0; z-index: 1; }
.schedule-table th { background: var(--mare-profondo); color: #fff; }
.schedule-table tbody tr:hover { background: var(--schiuma); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--inchiostro); }
.site-footer .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
}
.site-footer .footer-brand small {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--acqua-cristallo);
    font-weight: 400;
    margin-top: 2px;
}
.site-footer p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.7; }
.site-footer h6 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 1rem;
    font-weight: 500;
}
.site-footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: 0.2s;
    display: block;
    padding: 0.25rem 0;
}
.site-footer a:hover { color: var(--sabbia-calda); }
.footer-divider { border-color: rgba(255,255,255,0.07); }
.copyright-bar {
    background: rgba(0,0,0,0.2);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    padding: 0.9rem 0;
    text-align: center;
}
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    padding: 0;
    color: rgba(255,255,255,0.5);
    transition: 0.2s;
}
.footer-social a:hover { background: var(--cielo-estivo); border-color: var(--cielo-estivo); color: #fff; }

/* =========================================================
   COOKIE BANNER
   ========================================================= */
#cookieBanner {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(13,59,94,0.97);
    color: #fff;
    padding: 14px 20px;
    z-index: 9999;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
#cookieBanner p { margin: 0; font-size: 0.85rem; flex: 1; min-width: 180px; }
#cookieBanner .cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* =========================================================
   BAR PAGE SPECIFICS
   ========================================================= */
.bar-section { background: var(--marna-bianca); }
.bar-section .section-title { color: var(--fico-dindia, #B85C38); }

/* =========================================================
   ACCORDION (FAQ — also used in contact.html)
   ========================================================= */
.faq-section .accordion-button:focus { box-shadow: none; }

/* =========================================================
   FEATURE ICON BOX (contact, bar)
   ========================================================= */
.feature-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--schiuma);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.feature-icon-box i { font-size: 1.4rem; color: var(--cielo-estivo); }

/* =========================================================
   REVIEW CARDS (navetta-apecar, index)
   ========================================================= */
.review-card {
    background: var(--bianco-puro);
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 2px 16px rgba(13,59,94,0.07);
    border-top: 3px solid var(--cielo-estivo);
    transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(13,59,94,0.12);
}
.review-stars { color: var(--sole-agrigento); }
.review-stars i { font-size: 0.9rem; }
.review-text {
    font-size: 0.9rem;
    color: var(--grigio-pietra);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.25rem;
}
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cielo-estivo);
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.review-author-info .name { font-weight: 600; font-size: 0.9rem; color: var(--mare-profondo); }
.review-author-info .country { font-size: 0.78rem; color: var(--grigio-pietra); }

/* =========================================================
   CTA SECTION (navetta-apecar)
   ========================================================= */
.cta-section {
    background: linear-gradient(135deg, var(--mare-profondo) 0%, #0A2F4D 100%);
    padding: 60px 0;
}

/* =========================================================
   UTILITY
   ========================================================= */
.text-tufo    { color: var(--tufo-antico); }
.text-mare    { color: var(--mare-profondo); }
.text-acqua   { color: var(--acqua-cristallo); }
.bg-marna     { background-color: var(--marna-bianca); }
.bg-schiuma   { background-color: var(--schiuma); }
.bg-sabbia    { background-color: var(--sabbia-calda); }
.rounded-lg   { border-radius: 14px; }
