@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&family=Open+Sans:wght@400;600&display=swap');

/* =========================================
   1. BASE & RESET (COMUNE A TUTTO IL SITO)
   ========================================= */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.6;
    zoom: 0.9;
}

h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-top: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================================
   2. HEADER & MENU (FISSO)
   ========================================= */
.site-header {
    background-color: #0099ff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Menu Navigazione */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: white;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}


.main-nav a:hover,
.main-nav a.active {
    opacity: 0.8;
    color: #8bc34a;
    /* Highlight color (lime green) */
}

.btn-preventivo {
    background-color: #8bc34a;
    color: white !important;
    padding: 10px 20px;
    border-radius: 4px;
    border: 2px solid #8bc34a;
}

.btn-preventivo:hover {
    background-color: #7cb342;
    border-color: #7cb342;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
}

@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0099ff;
        padding: 20px 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .flotta-cta {
        margin-left: 0;
        margin-top: 30px;
    }

    /* Mobile Adjustments */
    .hero-section {
        height: 350px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .container {
        width: 95%;
    }
}

/* Google Translate Styling */
#google_translate_element {
    margin-left: 15px;
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
    /* Reset line-height to prevent expansion */
}

/* Container: Compact, Circle/Square */
.goog-te-gadget-simple {
    background-color: white !important;
    border: 2px solid white !important;
    padding: 0 !important;
    border-radius: 50% !important;
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    cursor: pointer;
    transition: transform 0.2s;
}

.goog-te-gadget-simple:hover {
    transform: scale(1.1);
}

/* Hide ALL internal google text/icons */
.goog-te-gadget-simple span,
.goog-te-gadget-simple img,
.goog-te-menu-value,
.goog-te-gadget-icon {
    display: none !important;
}

/* Insert Custom Globe Icon */
.goog-te-gadget-simple::after {
    content: '🌍';
    font-size: 18px;
    line-height: 1;
    margin: 0;
    padding: 0;
}

/* Hide top frame */
body {
    top: 0 !important;
}

.goog-te-banner-frame {
    display: none !important;
}

/* =========================================
   3. HOME PAGE (Hero, Icone, Info)
   ========================================= */
.hero-section {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: #333;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideAnimation 30s infinite;
}

.slide:nth-child(1) {
    animation-delay: 0s;
}

.slide:nth-child(2) {
    animation-delay: 5s;
}

.slide:nth-child(3) {
    animation-delay: 10s;
}

.slide:nth-child(4) {
    animation-delay: 15s;
}

.slide:nth-child(5) {
    animation-delay: 20s;
}

.slide:nth-child(6) {
    animation-delay: 25s;
}

@keyframes slideAnimation {
    0% {
        opacity: 0;
    }

    3% {
        opacity: 1;
    }

    14% {
        opacity: 1;
    }

    17% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-text h1 {
    color: white;
    font-size: 3rem;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    text-align: center;
}

/* Icone Home */
.icons-section {
    padding: 60px 0;
    text-align: center;
}

.icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #8bc34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.icon-circle svg,
.icon-circle img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.icon-item h3 {
    color: #0099ff;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
}

.info-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding-top: 20px;
}

.info-text h2 {
    color: #0099ff;
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.btn-link {
    color: #8bc34a;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 2px solid #8bc34a;
}

/* =========================================
   4. PAGINA FLOTTA
   ========================================= */
.flotta-top {
    padding: 60px 0;
    display: flex;
    align-items: center;
    gap: 50px;
}

.flotta-img-box img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 450px;
}

.flotta-title h1 {
    color: #006eb6;
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.flotta-subtitle {
    color: #8bc34a;
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.wifi-badge {
    display: inline-flex;
    align-items: center;
    background-color: #8bc34a;
    color: white;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 800;
    text-transform: uppercase;
}

.green-banner {
    background-color: #8bc34a;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.dark-green-banner {
    background-color: #558b2f;
    color: white;
    text-align: center;
    padding: 18px 0;
    font-weight: 800;
    font-size: 1.3rem;
    text-transform: uppercase;
}

.models-grid {
    padding: 60px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.model-item h3 {
    color: #006eb6;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}

.fleet-icon-small {
    max-height: 100px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.btn-fleet-green {
    background-color: #7cb342;
    color: white;
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 2px;
}

.btn-fleet-blue {
    background-color: #8dc6ef;
    color: #004d80;
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 2px;
}

.btn-row {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.features-tech {
    text-align: center;
    padding: 50px 0;
}

.tech-icons-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
}

.tech-item img {
    height: 55px;
    margin-bottom: 15px;
}

.tech-item span {
    color: #8bc34a;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.bottom-services {
    background-color: #0ea1e6;
    padding: 80px 0;
    text-align: center;
    margin-top: 50px;
}

.bottom-services h2 {
    color: white;
    margin-bottom: 60px;
}

.big-icons-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.big-icon-item {
    width: 200px;
    color: white;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.big-icon-circle {
    width: 150px;
    height: 150px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 6px solid white;
}

.big-icon-circle img {
    width: 80px;
}

/* =========================================
   5. PAGINA SERVIZI
   ========================================= */
.page-title-center {
    text-align: center;
    padding: 40px 0;
}

.page-title-center h1 {
    color: #0099ff;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-title-center .subtitle {
    color: #8bc34a;
    font-size: 1.1rem;
    font-weight: 600;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 60px;
}

.service-row {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-icon-box {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.circle-blue {
    background-color: #dcedfc;
}

.circle-green {
    background-color: #e9f5e9;
}

.circle-orange {
    background-color: #ff9800;
}

.circle-yellow {
    background-color: #ffd700;
}

.circle-white {
    background-color: #ffffff;
}

.circle-gray {
    background-color: #f0f0f0;
}

.circle-gray img {
    border-radius: 50%;
}

.service-row:nth-child(even) {
    background-color: #ffffff;
}

.service-icon-box img {
    width: 60px;
    height: auto;
}

.service-icon-box img.icon-large {
    width: 80px;
}

.service-text h3 {
    color: #0099ff;
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* =========================================
   6. PAGINA OFFERTE (FIX RESTAURATO)
   ========================================= */
.offers-intro h1 {
    color: #006eb6;
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.offers-section-gray {
    background-color: #e6e6e6;
    padding: 60px 0;
    margin-top: 30px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offer-card {
    background: white;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.offer-img-box {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.offer-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.overlay-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.6rem;
    text-align: center;
    width: 90%;
    text-shadow: 2px 2px 0 #006eb6;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.offer-details-row {
    display: flex;
    height: 60px;
}

.offer-dates {
    background-color: #2c7da0;
    color: white;
    flex: 2;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 0.85rem;
}

.offer-price {
    background-color: #8bc34a;
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.offer-action {
    background: white;
    padding: 15px 0;
    text-align: center;
}

.offer-action a {
    color: #8bc34a;
    font-weight: 700;
    text-transform: uppercase;
}

/* =========================================
   7. PAGINA TARIFFE (FIX RESTAURATO)
   ========================================= */
.inclusions-section {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.inclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #444;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8bc34a;
    font-weight: 900;
    font-size: 1.1rem;
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.season-card {
    border: 1px solid #cceeff;
    border-radius: 8px;
    text-align: center;
    padding: 40px 20px;
    background: white;
}

.season-card.featured {
    background-color: #eaf8ff;
    border-color: #0099ff;
}

.season-title {
    color: #0099ff;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.season-price {
    color: #0099ff;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 10px 0;
    line-height: 1;
}

.price-label {
    display: block;
    font-size: 1rem;
    color: #333;
    font-weight: 400;
    margin-bottom: 5px;
    text-transform: none;
    /* Ensure it's not uppercased if inherited */
}

.extras-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.extra-col h3 {
    color: #0099ff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.bullet-list {
    list-style: none;
    padding: 0;
}

.bullet-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
    color: #555;
}

.bullet-list li::before {
    content: '•';
    color: #0099ff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* =========================================
   8. PAGINA VENDITA (FIX RESTAURATO)
   ========================================= */
.vendita-intro {
    text-align: center;
    padding: 50px 0;
}

.vendita-intro h1 {
    color: #006eb6;
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.brands-grid-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.brand-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.brand-logo-box {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-box img {
    max-height: 80px;
    max-width: 200px;
    width: auto;
}

.btn-vendita {
    background-color: #8bc34a;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 800;
    text-transform: uppercase;
}

.usato-showcase {
    background-color: #f4f4f4;
    padding: 60px 0;
    border-top: 1px solid #ddd;
}

.section-title-center {
    text-align: center;
    color: #333;
    font-size: 2rem;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.sales-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sale-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.sale-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.sale-info {
    padding: 20px;
    text-align: center;
}

.sale-info .price {
    color: #8bc34a;
    font-size: 1.4rem;
    font-weight: 800;
}

.btn-contact {
    color: #006eb6;
    border: 2px solid #006eb6;
    padding: 8px 20px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    display: inline-block;
    margin-top: 10px;
}

.footer-col a {
    color: #ffd700;
    text-decoration: underline;
    display: inline-block;
    margin-bottom: 5px;
}


/* =========================================
   9. PAGINA PREVENTIVO (DESIGN GRIGIO & PULITO)
   ========================================= */
/* Testata */
.page-header-simple {
    padding: 40px 0;
    text-align: center;
}

.page-header-simple h1 {
    color: #006eb6;
    font-size: 2.2rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 800;
}

.sub-header-blue {
    color: #0099ff;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.intro-p {
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.95rem;
}

/* Sezione Grigia */
.grey-form-section {
    background-color: #e6e6e6;
    padding: 60px 0;
    margin-top: 20px;
}

.form-section-title {
    color: #666;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* INPUT STILE PIATTO BIANCO */
.flat-input {
    background: white;
    border: none;
    border-radius: 4px;
    padding: 15px;
    width: 100%;
    font-size: 0.9rem;
    color: #555;
    font-family: inherit;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.flat-input::placeholder {
    color: #bbb;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.flat-input:focus {
    outline: 2px solid #0099ff;
}

/* Layout Griglie Form */
.personal-data-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.trip-data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.date-time-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.column-title {
    color: #666;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Dettagli e Accessori */
.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: end;
    margin-bottom: 40px;
}

.detail-box label {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.big-number {
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.radio-group-styled {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px;
}

.radio-group-styled label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: #555;
}

/* BOX ACCESSORI BIANCO */
.accessories-white-box {
    background: white;
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.accessories-grid-final {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.acc-item {
    font-size: 0.85rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
}

.acc-item input {
    accent-color: #8bc34a;
    transform: scale(1.3);
}

/* Note e Privacy */
.notes-box-white {
    background: white;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.privacy-row {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.submit-container {
    text-align: center;
    margin-top: 40px;
}

.btn-send-quote {
    background-color: #8bc34a;
    color: white;
    padding: 15px 60px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-send-quote:hover {
    background-color: #7cb342;
}


/* =========================================
   10. FOOTER & RESPONSIVE
   ========================================= */
footer {
    background-color: #0099ff;
    color: white;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    font-size: 12px;
    opacity: 0.8;
}

/* Cellulari */
@media (max-width: 900px) {

    .icons-grid,
    .models-grid,
    .info-split,
    .offers-grid,
    .sales-grid,
    .brands-grid-section,
    .inclusions-grid,
    .seasons-grid,
    .extras-section,
    .personal-data-grid,
    .trip-data-grid,
    .details-grid,
    .accessories-grid-final,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .flotta-top,
    .service-row,
    .service-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .date-time-row {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2rem;
    }
}

/* Opzionale: forza l'immagine della testata Flotta ad essere più piccola */
.flotta-img-box img {
    max-width: 300px !important;
    /* Cambia 350px con la misura che preferisci */
    margin: 0 auto;
    /* La centra se è più piccola del contenitore */
}

/* =========================================
   11. NEW SECTIONS (FIXES)
   ========================================= */

/* Header Icone Home */
.icon-section-title {
    color: #0099ff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Montserrat', sans-serif;
}

/* Blue Services Section */
.blue-services-section {
    background-color: #008bd2;
    padding: 60px 0;
    color: white;
}

.blue-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.blue-service-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.blue-service-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 4px;
}

.blue-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blue-service-content h3 {
    font-size: 1.1rem;
    color: white;
    /* Explicitly white */
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 800;
    text-align: left;
}

.blue-service-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.95;
    margin: 0;
    text-align: left;
}

@media (max-width: 900px) {
    .blue-services-grid {
        grid-template-columns: 1fr;
    }
}

/* Flotta CTA */
.flotta-cta {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.flotta-cta a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.3s;
}

.flotta-cta span {
    color: #0099ff;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
}

.flotta-cta:hover a {
    transform: translateY(5px);
}



/* Stagione Attiva (Tariffe) */
.stagione-attiva {
    border: 3px solid #8BC34A !important;
    background-color: #f9fff0 !important;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(139, 195, 74, 0.4);
    position: relative;
    z-index: 10;
}

.stagione-attiva::before {
    content: 'SIAMO QUI';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #8BC34A;
    color: white;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Specific coloring for Bassa Stagione */
#stagione-bassa {
    background-color: #eaf8ff !important;
    border: 1px solid #cceeff;
}

/* =========================================
   12. MAP SECTION
   ========================================= */
.map-section {
    padding: 60px 0;
    text-align: center;
}

/* =========================================
   13. MOBILE STICKY BUTTON
   ========================================= */
.mobile-sticky-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #8bc34a;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    /* High z-index to stay on top */
    text-align: center;
    font-size: 14px;
    border: 2px solid white;
}

@media (max-width: 900px) {
    .mobile-sticky-btn {
        display: block;
    }
}


/* Mobile Fleet Layout */
@media (max-width: 768px) {
    .flotta-top {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .flotta-img-box {
        margin-bottom: 20px;
    }

    .flotta-title {
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .flotta-cta {
        margin-top: 10px;
        margin-left: 0;
        /* Reset desktop margin */
        text-align: center;
    }
}