/* ============================================================
   Autoscuola Europa Ivrea - Stile principale
   ============================================================ */

/* ---------- Variabili ---------- */
:root {
    --header-h: 60px;
    --footer-h: 50px;
    --color-primary: #d4000c;
    --color-primary-dark: #a80009;
    --color-primary-glow: rgba(212, 0, 12, 0.25);
    --color-primary-glow-strong: rgba(212, 0, 12, 0.45);
    /* Scuro */
    --color-bg-deep: #0d0d0d;
    --color-bg: #151515;
    --color-bg-card: #1a1a1a;
    --color-border: #2a2a2a;
    --color-border-hover: #444444;
    --color-header: #0d0d0d;
    --color-footer: #0d0d0d;
    /* Chiaro */
    --color-light-bg: #d8d8d8;
    --color-light-bg-alt: #e0e0e0;
    --color-light-card: #ffffff;
    --color-light-text: #1a1a1a;
    --color-light-text-muted: #333333;
    --color-light-border: #e0e0e0;
    /* Globali */
    --color-white: #ffffff;
    --color-text: #ffffff;
    --color-text-muted: #cccccc;
    --color-text-subtle: #999999;
    --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
    --font-body: 'Plus Jakarta Sans', Arial, Helvetica, sans-serif;
}

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: #0d0d0d;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-light-text);
    background: var(--color-light-bg);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ---------- Layout wrapper ---------- */
.site-main {
    flex: 1;
    padding-top: var(--header-h);
}

.site-main:has(.video-banner:first-child) {
    padding-top: 0;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal.reveal-delay {
    transition-delay: 0.2s;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ---------- Parallax layer esagoni ---------- */
.parallax-bg {
    position: relative;
    overflow: hidden;
}

.parallax-layer {
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    bottom: -100%;
    background: url('/public/images/xxx_bg2.jpg') center center / 100% auto no-repeat;
    background-color: #3f3f3f;
    will-change: transform;
    z-index: 0;
}

@media (max-width: 991.98px) {
    .parallax-layer {
        background-size: cover;
        background-position: center center;
    }
}

.parallax-bg .container {
    position: relative;
    z-index: 2;
}

.parallax-bg .section-title {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 4px 20px rgba(0, 0, 0, 0.6);
}

.parallax-bg .section-subtitle {
    color: #ffffff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

/* ---------- Divisore rosso tra sezioni ---------- */
.section-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--color-primary) 30%, var(--color-primary) 70%, transparent 100%);
}

/* ---------- Titoli e sottotitoli globali ---------- */
.section-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 12px;
    color: var(--color-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    font-size: 17px;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   HEADER - 60px fisso, due stati: trasparente / scrolled
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: calc(var(--header-h) + env(safe-area-inset-top, 0px));
    padding-top: env(safe-area-inset-top, 0px);
    background: transparent;
    border-bottom: none;
    z-index: 1030;
    transition: background 0.4s ease;
}

.site-header::before {
    content: '';
    position: absolute;
    top: calc(-1 * env(safe-area-inset-top, 0px));
    left: 0;
    right: 0;
    height: env(safe-area-inset-top, 0px);
    background: #0d0d0d;
    z-index: 1;
}

.site-header.scrolled {
    background: linear-gradient(90deg, #d4000c 0%, #d4000c 15%, #0d0d0d 100%);
}

/* Pagine interne (senza video banner): header sempre visibile con logo */
body:not(:has(.video-banner)) .site-header {
    background: linear-gradient(90deg, #d4000c 0%, #d4000c 15%, #0d0d0d 100%);
}

body:not(:has(.video-banner)) .site-header .navbar-brand {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

body:not(:has(.video-banner)) .site-header .nav-link {
    text-shadow: none;
}

.site-header .navbar {
    height: var(--header-h);
    padding: 0;
}

.site-header .navbar-brand {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    height: var(--header-h);
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.site-header.scrolled .navbar-brand {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.brand-logo {
    max-width: 350px;
    height: auto;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: flex-end;
}

.site-header .navbar-nav {
    align-items: center;
}

.site-header .nav-link {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    padding: 0 16px !important;
    line-height: var(--header-h);
    transition: color 0.3s;
    white-space: nowrap;
    position: relative;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.site-header.scrolled .nav-link {
    text-shadow: none;
    color: #ffffff;
}

.site-header .nav-link:not(.dropdown-toggle)::before {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.site-header .dropdown-toggle::before {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 16px;
    right: 30px;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.site-header .nav-link:hover {
    color: var(--color-white);
}

.site-header .nav-link:hover::before {
    transform: scaleX(1);
}

.site-header .nav-link.active {
    color: var(--color-white);
}

.site-header .nav-link.active::before {
    transform: scaleX(1);
}

.site-header .nav-item.dropdown {
    position: relative;
}

.site-header .dropdown-menu {
    font-size: 15px;
    font-weight: 700;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 2px solid var(--color-primary);
    border-radius: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    margin-top: 0;
    padding: 0;
    left: 0;
    right: auto;
    min-width: auto;
}

.site-header .dropdown-item {
    font-size: 15px;
    font-weight: 700;
    padding: 12px 16px;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-bottom: none !important;
    white-space: nowrap;
}

.site-header .dropdown-item:first-child {
    border-top: none !important;
}

.site-header .dropdown-item:hover {
    background: rgba(212, 0, 12, 0.15);
    color: var(--color-white);
}

.site-header .dropdown-toggle::after {
    transition: transform 0.3s;
}

.site-header .dropdown-toggle[aria-expanded="true"] {
    color: var(--color-white);
}

.site-header .dropdown-toggle[aria-expanded="true"]::before {
    transform: scaleX(1);
}

.site-header .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Header right: social + hamburger */
.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    height: var(--header-h);
}

/* Social icons nell'header */
.header-social {
    display: none;
}

.header-social-desktop {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: 20px;
}

.header-social a {
    color: #ffffff;
    font-size: 22px;
    transition: color 0.3s;
    text-decoration: none;
}

.header-social a:hover {
    color: var(--color-primary);
}

/* Hamburger */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1050;
}

.menu-toggle-bar {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--color-white);
    margin: 6px 0;
    transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.active .menu-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .menu-toggle-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile menu */
@media (max-width: 991.98px) {
    .menu-toggle {
        display: block;
    }

    /* Mobile: social visibili a sinistra del panino */
    .header-social {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .header-social a {
        font-size: 22px;
    }

    /* Nascondi social dentro il menu desktop su mobile */
    .header-social-desktop {
        display: none !important;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(13, 13, 13, 0.97);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0;
        z-index: 1040;
        overflow-y: auto;
    }

    .site-header:has(.nav-menu.open) {
        background: rgba(13, 13, 13, 0.95) !important;
    }

    .nav-menu.open {
        display: flex;
    }

    .site-header .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 0 !important;
        width: 100%;
    }

    .site-header .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .site-header .nav-link {
        line-height: 1.5;
        padding: 14px 20px !important;
        text-align: left;
        width: 100%;
        font-size: 18px;
    }

    .site-header .dropdown-menu {
        border: none;
        border-top: none;
        box-shadow: none;
        padding-left: 16px;
        background: transparent;
        text-align: left;
    }
}

/* ============================================================
   FOOTER - scuro
   ============================================================ */
.site-footer {
    background: var(--color-footer);
    color: #ffffff;
    font-size: 16px;
    padding: 40px 0;
    flex-shrink: 0;
}

.site-footer .row {
    width: 100%;
}

.footer-copy,
.footer-address {
    font-size: 16px;
    color: #ffffff;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
}

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

.footer-sep {
    margin: 0 8px;
    opacity: 0.5;
    color: #ffffff;
}

/* ============================================================
   VIDEO BANNER
   ============================================================ */
.video-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    line-height: 0;
}

.video-banner video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.video-scroll-arrow {
    display: none;
}

@media (min-width: 992px) {
    .video-scroll-arrow {
        display: block;
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        color: var(--color-white);
        font-size: 42px;
        font-weight: 900;
        -webkit-text-stroke: 2px var(--color-white);
        text-decoration: none;
        opacity: 0.8;
        transition: opacity 0.3s;
        animation: bounceArrow 2s infinite;
    }

    .video-scroll-arrow:hover {
        opacity: 1;
        color: var(--color-white);
    }

    @keyframes bounceArrow {
        0%, 20%, 50%, 80%, 100% {
            transform: translateX(-50%) translateY(0);
        }
        40% {
            transform: translateX(-50%) translateY(-12px);
        }
        60% {
            transform: translateX(-50%) translateY(-6px);
        }
    }
}

/* ============================================================
   SEZIONE STATS - SCURA con parallax esagoni
   ============================================================ */
.section-stats {
    padding: 160px 0;
}

.section-stats::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(13, 13, 13, 0.15) 0%, rgba(13, 13, 13, 0.6) 100%);
    z-index: 1;
}

.stat-hex {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.stat-hex .stat-item {
    width: 260px;
    aspect-ratio: 2 / 1.732;
    background: rgba(0, 0, 0, 0.85);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 60px;
    color: var(--color-primary);
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.4;
}

/* ============================================================
   SEZIONE SERVIZI - CHIARA
   ============================================================ */
.section-services {
    padding: 100px 0;
    background: linear-gradient(to bottom, #e8e8e8, #a8a8a8);
}

.section-services .section-subtitle {
    color: var(--color-light-text-muted);
}

.service-card {
    text-align: center;
    border: none;
    border-radius: 6px;
    aspect-ratio: 1 / 1;
    margin-top: 50px;
    position: relative;
    overflow: visible;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.service-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.service-card-link:hover {
    color: inherit;
    text-decoration: none;
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--card-bg) center center / cover no-repeat;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.5s ease;
    z-index: 0;
}

.service-card-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-bg::after {
    transform: scale(1.05);
}

.service-card-content {
    position: relative;
    z-index: 2;
    padding: 60px 28px 30px;
    background: linear-gradient(
        to bottom,
        rgba(13, 13, 13, 0) 0%,
        rgba(13, 13, 13, 0) 45%,
        rgba(13, 13, 13, 0.7) 70%,
        rgba(13, 13, 13, 0.95) 100%
    );
    border-radius: 6px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.service-hex-icon {
    width: 80px;
    aspect-ratio: 2 / 1.732;
    background: var(--color-primary);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -46px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    transition: transform 0.3s;
}

.service-card:hover .service-hex-icon {
    transform: translateX(-50%) scale(1.1);
}

.service-hex-icon i {
    font-size: 30px;
    color: #ffffff;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.service-card p {
    font-size: 15px;
    color: #ffffff;
    margin: 0;
    line-height: 1.7;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

/* ============================================================
   SEZIONE PERCHE SCEGLIERCI - SCURA con parallax esagoni
   ============================================================ */
.section-why {
    padding: 120px 0;
}

.section-why::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.55) 0%, rgba(13, 13, 13, 0.3) 50%, rgba(13, 13, 13, 0.55) 100%);
    z-index: 1;
}

.why-hex {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.why-hex .why-item {
    width: 260px;
    aspect-ratio: 2 / 1.732;
    background: rgba(0, 0, 0, 0.85);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 26px 27px;
}

.why-item i {
    font-size: 36px;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.why-item h3 {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 6px;
    color: var(--color-white);
}

.why-item p {
    font-size: 14px;
    color: #ffffff;
    margin: 0;
    line-height: 1.45;
}

/* ============================================================
   SEZIONE COME FUNZIONA - CHIARA
   ============================================================ */
.section-steps {
    padding: 100px 0;
    background: linear-gradient(to bottom, #e8e8e8, #a8a8a8);
}

.step-item {
    text-align: center;
    padding: 20px 12px;
}

@media (max-width: 991.98px) {
    .step-item {
        padding-bottom: 32px;
    }
}

.step-hex {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.step-hex-inner {
    width: 100px;
    aspect-ratio: 2 / 1.732;
    background: var(--color-primary);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number {
    font-family: var(--font-display);
    font-size: 48px;
    color: #ffffff;
    letter-spacing: 0;
}

.step-item h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-light-text);
    margin-bottom: 10px;
}

.step-item p {
    font-size: 15px;
    color: var(--color-light-text-muted);
    margin: 0;
    line-height: 1.6;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.step-novita {
    margin: 14px auto 0;
    max-width: 280px;
    padding: 12px 16px;
    background: #fff;
    border-top: 3px solid var(--color-primary);
    border-bottom: 3px solid var(--color-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.step-novita-label {
    display: block;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.step-novita-text {
    display: block;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-light-text);
}

/* ============================================================
   SEZIONE CTA - SCURA con parallax esagoni
   ============================================================ */
.section-cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
    background: url('/public/images/AULA%20LEZIONE3_web.jpg') center center / cover no-repeat;
}

@media (min-width: 992px) {
    .section-cta {
        background-attachment: fixed;
    }
}

.section-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.section-cta .container {
    position: relative;
    z-index: 2;
}

.cta-card {
    width: 480px;
    aspect-ratio: 2 / 1.732;
    background: rgba(0, 0, 0, 0.85);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 60px;
}

.cta-card h2 {
    font-family: var(--font-display);
    font-size: 36px;
    color: #ffffff;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.cta-card p {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 28px;
    line-height: 1.7;
}

.cta-card .cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   PAGINE INTERNE - HERO PARALLAX + CONTENUTO CHIARO
   ============================================================ */
.page-hero {
    padding: 170px 0 145px;
    text-align: center;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(13, 13, 13, 0.25) 0%, rgba(13, 13, 13, 0.7) 100%);
    z-index: 1;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1;
    margin: 0 0 14px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 6px 28px rgba(0, 0, 0, 0.6);
}

.page-hero-subtitle {
    font-size: 19px;
    color: #ffffff;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.5;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.page-hero-image {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    text-align: center;
    z-index: 2;
}

.page-hero-image img {
    max-width: 220px;
    width: 100%;
    height: auto;
    display: inline-block;
}

.page-hero-hexagons {
    margin-top: 60px;
}

.page-hero-hexagons .why-hex .why-item {
    width: 300px;
    padding: 30px 36px;
}

.page-hero-hexagons .why-item i {
    font-size: 42px;
    margin-bottom: 12px;
}

.page-hero-hexagons .why-item h3 {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.page-hero-hexagons .why-item p {
    font-size: 15px;
    line-height: 1.5;
}

@media (max-width: 991.98px) {
    .page-hero-hexagons .why-hex .why-item {
        width: 240px;
        padding: 24px 30px;
    }

    .page-hero-hexagons .why-item i {
        font-size: 34px;
        margin-bottom: 8px;
    }

    .page-hero-hexagons .why-item h3 {
        font-size: 17px;
    }

    .page-hero-hexagons .why-item p {
        font-size: 13px;
    }
}

@media (max-width: 767.98px) {
    .page-hero-hexagons .why-hex .why-item {
        width: 290px;
        padding: 28px 34px;
    }

    .page-hero-hexagons .why-item i {
        font-size: 40px;
    }

    .page-hero-hexagons .why-item h3 {
        font-size: 19px;
    }

    .page-hero-hexagons .why-item p {
        font-size: 15px;
    }
}

.page-content {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f5f5f5, #d4d4d4);
}

.page-content .section-title {
    margin-bottom: 12px;
}

.page-content .section-subtitle {
    color: var(--color-light-text-muted);
    margin-bottom: 60px;
}

.page-content-body {
    color: var(--color-light-text-muted);
    font-size: 17px;
    line-height: 1.8;
    margin-top: 70px;
}

.section-title + .page-content-body {
    margin-top: 50px;
}

.page-content-body p {
    margin: 0 0 22px;
}

.page-content-body p:last-child {
    margin-bottom: 0;
}

.page-content-body strong {
    color: var(--color-light-text);
    font-weight: 700;
}

.page-content-body h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    background: #d4000c;
    padding: 6px 7px 4px;
    display: inline-block;
    margin: 70px 0 14px;
    line-height: 1;
}

.page-content-body > h3:first-child {
    margin-top: 0;
}

.page-content-body h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-light-text);
    margin: 26px 0 10px;
}

.page-content-body ul,
.page-content-body ol {
    margin: 0 0 22px;
    padding-left: 24px;
}

.page-content-body ul li,
.page-content-body ol li {
    margin-bottom: 6px;
}

.page-content-body a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.page-content-body a:hover {
    color: var(--color-primary-dark);
}

.page-content-body a.btn-site {
    color: var(--color-white);
    text-decoration: none;
}

.page-content-body a.btn-site:hover {
    color: var(--color-white);
}

.page-content-cta {
    text-align: center;
    margin: 28px 0 !important;
}

.page-content-cta .btn-site {
    font-size: 14px;
    letter-spacing: 1px;
}

.page-content-highlight {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    color: var(--color-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 100px 0 12px;
    line-height: 1.15;
}

.prontuario-block {
    text-align: center;
    margin: 80px 0 40px;
    padding: 40px 20px;
    background: linear-gradient(to bottom, #ffffff 0%, #ececec 100%);
    border-radius: 6px;
}

.prontuario-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 400;
    color: var(--color-primary);
    letter-spacing: 1px;
    margin: 0 0 8px;
    line-height: 1.15;
}

.prontuario-arrow {
    display: block;
    width: 38px;
    height: 38px;
    margin: 0 auto 18px;
    color: var(--color-primary);
    animation: prontuario-bounce 1.6s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

@keyframes prontuario-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-12px); }
    60% { transform: translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
    .prontuario-arrow {
        animation: none;
    }
}

.prontuario-preview {
    display: inline-block;
    line-height: 0;
    max-width: 365px;
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.prontuario-preview:hover,
.prontuario-preview:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
}

.prontuario-preview img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 991.98px) {
    .prontuario-block {
        margin: 60px 0 30px;
    }

    .prontuario-title {
        font-size: 30px;
    }

    .prontuario-preview {
        max-width: 295px;
    }
}

.page-content-tagline {
    font-family: var(--font-display);
    font-size: 22px;
    text-align: center;
    color: var(--color-light-text);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.page-section-next {
    margin-top: 90px;
}

.page-content-callout {
    background: #ffffff;
    border-left: 4px solid var(--color-primary);
    padding: 18px 24px;
    margin: 26px 0;
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-light-text);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.page-content-callout .callout-label {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    display: inline-block;
    margin-right: 8px;
}

.page-content-schedule {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 36px;
    margin: 18px 0 8px;
}

.page-content-schedule .schedule-row {
    font-size: 17px;
    color: var(--color-light-text);
}

.page-content-schedule .schedule-label {
    font-family: var(--font-display);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-right: 6px;
}

.page-content-back {
    text-align: center;
    margin: 0 0 32px;
}

.page-content-back a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-light-text-muted);
    text-decoration: none;
    padding: 6px 14px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 999px;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.page-content-back a:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background: rgba(0, 0, 0, 0.03);
}

.page-content.page-content-with-map {
    padding-bottom: 0;
}

.page-content.page-content-with-map .map-wrapper {
    margin-top: 48px;
}

/* ============================================================
   SEZIONE CONTATTI - CHIARA
   ============================================================ */
.section-contact {
    padding: 100px 0 0;
    background: linear-gradient(to bottom, #e8e8e8, #a8a8a8);
}

.contact-info-item {
    text-align: center;
    padding: 20px 12px;
}

@media (max-width: 991.98px) {
    .contact-info-item {
        padding-bottom: 28px;
    }
}

.contact-info-item i {
    font-size: 32px;
    color: var(--color-primary);
    margin-bottom: 14px;
    display: block;
}

.contact-info-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-light-text);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-item p {
    font-size: 16px;
    color: var(--color-light-text-muted);
    margin: 0;
    line-height: 1.7;
}

.contact-info-item a {
    color: var(--color-light-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-item a:hover {
    color: var(--color-primary);
}

.map-wrapper {
    overflow: hidden;
    margin-top: 48px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: 0;
}

/* ============================================================
   BOTTONI
   ============================================================ */
.btn-site {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 3px;
    background: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.btn-site:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
}

.btn-outline {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 3px;
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
    cursor: pointer;
}

.btn-outline:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .site-header .container-fluid {
        padding-left: 15px !important;
        padding-right: 10px !important;
    }

    .brand-logo {
        max-width: 230px;
    }

    .video-banner {
        height: 75vh;
    }

    .stat-hex .stat-item {
        width: 220px;
    }

    .stat-number {
        font-size: 52px;
    }

    .why-hex .why-item {
        width: 240px;
        padding: 24px 25px;
    }

    .page-hero {
        padding: 135px 0 110px;
    }

    .page-hero-title {
        font-size: 52px;
        letter-spacing: 3px;
    }

    .page-hero-subtitle {
        font-size: 17px;
    }

    .page-hero-image {
        bottom: 20px;
    }

    .page-hero-image img {
        max-width: 180px;
    }

    .page-content {
        padding: 70px 0;
    }

    .page-content-body {
        font-size: 16px;
    }

    .page-content-highlight {
        font-size: 30px;
        margin-top: 44px;
    }

    .cta-card {
        width: 420px;
        padding: 70px 50px;
    }

    .cta-card h2 {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .cta-card p {
        font-size: 15px;
        margin-bottom: 22px;
    }
}

@media (max-width: 767.98px) {
    .video-banner {
        height: 60vh;
    }

    .video-banner video {
        object-fit: cover;
    }

    .section-services,
    .section-why,
    .section-steps,
    .section-cta,
    .section-stats,
    .section-contact {
        padding: 70px 0;
    }

    .section-contact {
        padding-bottom: 0;
    }

    .section-title {
        font-size: 38px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .stat-number {
        font-size: 54px;
    }

    .stat-hex .stat-item {
        width: 220px;
    }

    .stat-label {
        font-size: 14px;
    }

    .why-hex .why-item {
        width: 220px;
        padding: 22px 23px;
    }

    .why-item i {
        font-size: 30px;
        margin-bottom: 8px;
    }

    .why-item h3 {
        font-size: 17px;
    }

    .why-item p {
        font-size: 13px;
        line-height: 1.4;
    }

    .service-card h3 {
        font-size: 28px;
    }

    .service-card p {
        font-size: 17px;
    }

    .step-item h3 {
        font-size: 26px;
    }

    .step-item p {
        font-size: 16px;
    }

    .contact-info-item h4 {
        font-size: 18px;
    }

    .contact-info-item p {
        font-size: 18px;
    }

    .page-hero {
        padding: 110px 0 85px;
    }

    .page-hero-title {
        font-size: 48px;
        letter-spacing: 3px;
    }

    .page-hero-subtitle {
        font-size: 16px;
    }

    .page-hero-image {
        bottom: 15px;
    }

    .page-hero-image img {
        max-width: 160px;
    }

    .page-content-body {
        font-size: 15px;
        line-height: 1.7;
    }

    .page-content-highlight {
        font-size: 26px;
        letter-spacing: 2px;
        margin-top: 36px;
    }

    .page-content-tagline {
        font-size: 19px;
    }

    .cta-card {
        width: 340px;
        padding: 44px 34px;
    }

    .cta-card h2 {
        font-size: 23px;
        letter-spacing: 1.5px;
        line-height: 1.1;
        margin-bottom: 10px;
    }

    .cta-card p {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 18px;
    }

    .cta-card .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-site,
    .btn-outline {
        font-size: 13px;
        padding: 12px 24px;
    }

    .site-footer {
        height: auto;
        padding: 12px 0;
    }

    .site-footer .col-md-4 {
        padding: 2px 0;
    }
}

@media (max-width: 575.98px) {
    .stat-number {
        font-size: 52px;
    }

    .stat-hex .stat-item {
        width: 220px;
    }

    .why-hex .why-item {
        width: 200px;
        padding: 18px 19px;
    }

    .stat-label {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .why-item h3 {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .why-item p {
        font-size: 12px;
        line-height: 1.35;
    }

    .why-item i {
        font-size: 26px;
        margin-bottom: 6px;
    }
}

/* Sotto 450px: esagoni why 1 per riga, più grandi */
@media (max-width: 449.98px) {
    .section-why .col-6 {
        width: 100%;
    }

    .why-hex .why-item {
        width: 280px;
        padding: 28px 29px;
    }

    .why-item h3 {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .why-item p {
        font-size: 15px;
        line-height: 1.5;
    }

    .why-item i {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .parallax-layer {
        background-size: cover;
    }
}

/* ============================================================
   PHOTOGALLERY (pagine interne - es. chi-siamo)
   ============================================================ */
.page-gallery {
    padding: 100px 0;
}

.page-gallery .section-title {
    text-align: center;
    margin-bottom: 12px;
}

.page-gallery .section-subtitle {
    text-align: center;
    margin-bottom: 48px;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.gallery-cell {
    flex: 0 0 calc((100% - 4 * 16px) / 5);
    max-width: calc((100% - 4 * 16px) / 5);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gallery-item {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 6px;
    cursor: zoom-in;
    background: #1a1a1a;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.45) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item-title {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
    text-align: center;
    line-height: 1.15;
}

@media (max-width: 991.98px) {
    .gallery-item-title {
        font-size: 17px;
        letter-spacing: 1.5px;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.55);
}

.gallery-item:hover img {
    transform: scale(1.08);
}


.gallery-item:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

@media (max-width: 1199.98px) {
    .gallery-cell {
        flex-basis: calc((100% - 3 * 16px) / 4);
        max-width: calc((100% - 3 * 16px) / 4);
    }
}

@media (max-width: 991.98px) {
    .gallery-grid {
        gap: 14px;
    }

    .gallery-cell {
        flex-basis: calc((100% - 2 * 14px) / 3);
        max-width: calc((100% - 2 * 14px) / 3);
    }

    .page-gallery {
        padding: 80px 0;
    }

    .page-gallery .section-subtitle {
        margin-bottom: 36px;
    }
}

@media (max-width: 699.98px) {
    .gallery-grid {
        gap: 10px;
    }

    .gallery-cell {
        flex-basis: calc((100% - 10px) / 2);
        max-width: calc((100% - 10px) / 2);
    }

    .page-gallery {
        padding: 60px 0;
    }
}

/* ============================================================
   LIGHTBOX GALLERY (overlay full-page, nav prev/next)
   ============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    padding: 60px 24px;
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.lightbox-stage {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: min(90vw, 1600px);
    max-height: calc(100vh - 140px);
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.lightbox-image.is-ready {
    opacity: 1;
}

.lightbox-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    margin: -24px 0 0 -24px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: lightbox-spin 0.9s linear infinite;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.lightbox.is-loading .lightbox-spinner {
    opacity: 1;
}

@keyframes lightbox-spin {
    to { transform: rotate(360deg); }
}

.lightbox-btn {
    position: absolute;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    z-index: 2;
}

.lightbox-btn:hover,
.lightbox-btn:focus-visible {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.06);
    outline: none;
}

.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

.lightbox-prev:hover,
.lightbox-prev:focus-visible { transform: translateY(-50%) scale(1.06); }
.lightbox-next:hover,
.lightbox-next:focus-visible { transform: translateY(-50%) scale(1.06); }

.lightbox-close {
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 18px;
}

.lightbox-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
    padding: 0 80px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
    pointer-events: none;
}

.lightbox-counter {
    position: absolute;
    top: 28px;
    left: 24px;
    color: #ffffff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
    pointer-events: none;
}

.lightbox-caption {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    max-width: min(90vw, 1600px);
    padding: 10px 22px;
    color: #ffffff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.9);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    pointer-events: none;
}

@media (max-width: 767.98px) {
    .lightbox-caption {
        font-size: 18px;
        letter-spacing: 1.5px;
        bottom: 20px;
        padding: 8px 16px;
    }
}

.lightbox-counter .lightbox-counter-sep {
    color: var(--color-primary);
    margin: 0 4px;
}

body.lightbox-open {
    overflow: hidden;
}

@media (max-width: 767.98px) {
    .lightbox {
        padding: 50px 8px;
    }

    .lightbox-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 38px;
        height: 38px;
    }

    .lightbox-counter {
        top: 16px;
        left: 14px;
        font-size: 17px;
    }

    .lightbox-caption {
        padding: 0 60px;
        font-size: 13px;
        bottom: 10px;
    }

    .lightbox-image {
        max-height: calc(100vh - 110px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .gallery-item img,
    .lightbox-image,
    .lightbox-btn {
        transition: none;
    }
    .lightbox-spinner {
        animation: none;
    }
}

/* ============================================================
   VIDEO SECTION (pagine interne - es. patente-moto)
   Sfondo chiaro come .page-content
   ============================================================ */
.page-videos {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f5f5f5, #d4d4d4);
}

.page-videos .section-title {
    text-align: center;
    margin-bottom: 12px;
}

.page-videos .section-subtitle {
    text-align: center;
    color: var(--color-light-text-muted);
    margin-bottom: 48px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.video-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--color-primary);
    font-size: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
    text-align: center;
}

.video-item video,
.video-item iframe {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    display: block;
    border: 0;
    border-radius: 8px;
    background: #000;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.25);
    object-fit: contain;
}

@media (max-width: 1199.98px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .video-item video,
    .video-item iframe {
        max-width: 720px;
        margin: 0 auto;
    }
}

@media (max-width: 991.98px) {
    .page-videos {
        padding: 80px 0;
    }

    .page-videos .section-subtitle {
        margin-bottom: 36px;
    }

    .video-item h3 {
        font-size: 26px;
    }
}

@media (max-width: 699.98px) {
    .page-videos {
        padding: 60px 0;
    }

    .video-item h3 {
        font-size: 24px;
        margin-bottom: 14px;
    }
}

.video-grid--single {
    grid-template-columns: 1fr;
    justify-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.video-grid--single .video-item {
    width: 100%;
}

.video-grid--single .video-item video,
.video-grid--single .video-item iframe {
    max-width: 900px;
    margin: 0 auto;
}
