/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Skip Link per accessibilità */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #2563eb;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Offset sotto header fisso per pagine senza hero (es. privacy policy) */
.header + .container {
    padding-top: 90px;
}

/* Migliora lo scroll verso ancore sotto header fisso */
#main { scroll-margin-top: 90px; }

.navbar {
    padding: 1rem 0;
}

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

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

.logo img {
    width: 200px;
    height: 60px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, transform 0.1s ease;
}

.nav-menu a:hover {
    color: #2563eb;
    background-color: rgba(37, 99, 235, 0.08);
}

.nav-menu a:active {
    transform: scale(0.98);
    background-color: rgba(37, 99, 235, 0.12);
    border: none;
    box-shadow: none;
}

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

.hamburger:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    /* Immagine di sfondo a tutta larghezza con overlay scuro per leggibilità */
    background-image: linear-gradient(rgba(17, 24, 39, 0.55), rgba(17, 24, 39, 0.55)), url('images/laundry-service-ciro-marina-crotone.jpg');
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;
    overflow: hidden;
    margin-bottom: 0;
    animation: heroFade 0.8s ease both;
}

.hero-content {
    flex: 1;
    z-index: 2;
    padding: 0 20px;
    max-width: 600px;
    margin-left: 5%;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: #fff;
    color: #2563eb;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2563eb;
}

.richiesta{
    box-shadow: 0 0px 5px rgba(0,0,0,0.2);
}

/* Rimosso il blocco video; la hero usa immagine di sfondo */

@keyframes heroFade {
    from { opacity: 0; transform: scale(1.02); }
    to { opacity: 1; transform: scale(1); }
}

/* About Section */
.about {
    padding: 150px 0;
    background: #f8fafc;
    margin-top: 50px;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568; /* Contrasto migliorato 4.6:1 */
}

.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature i {
    font-size: 2rem;
    color: #2563eb;
    margin-top: 0.5rem;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: white;
    position: relative;
    z-index: 10;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 4rem;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-card i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-card p {
    color: #4a5568; /* Contrasto migliorato 4.6:1 */
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 120px 0;
    background: #f8fafc;
    position: relative;
    z-index: 10;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.gallery-slider {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.slider-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
}

.slide-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/*
.slider-nav:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
*/

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #2563eb;
}

/* Override layout per i pulsanti della gallery: bordi sinistro/destro dell'immagine */
.gallery-slider .slider-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    border-radius: 0;
    transform: none;
    display: block;
    pointer-events: none;
    z-index: 5;
}
.gallery-slider .slider-nav .prev,
.gallery-slider .slider-nav .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(15,23,42,0.08);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    pointer-events: auto;
}
.gallery-slider .slider-nav .prev { left: 16px; }
.gallery-slider .slider-nav .next { right: 16px; }
.gallery-slider .slider-nav .prev:hover,
.gallery-slider .slider-nav .next:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 10px 24px rgba(0,0,0,0.22);
    background-color: #ffffff;
    color: var(--accent-primary);
}
.gallery-slider .slider-nav .prev i,
.gallery-slider .slider-nav .next i {
    font-size: 18px;
}

/* Contact Section */
.contact {
    padding: 120px 0 50px 0;
    background: white;
    position: relative;
    z-index: 10;
}

/* Link Contattaci: alto contrasto su bianco con hover leggero */
:root {
    --contact-link-color: #02175c; /* blu 800 coerente con palette */
    --contact-link-hover-color: #083492; /* accento */
}
#contact a {
    color: rgb(14, 67, 211); /*var(--contact-link-color);*/
    text-decoration: none;
    transition: color 0.3s ease;
}
#contact a:hover {
    color: rgb(82, 128, 253);/*var(--contact-link-hover-color);*/
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: #2563eb;
    margin-top: 0.5rem;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.info-item p {
    color: #4a5568; /* Contrasto migliorato 4.6:1 */
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.form-group.checkbox input {
    width: auto;
}

/* Stili per accessibilità form */
.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e293b;
    display: block;
}

.error-message {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 4px;
    display: none;
}

.error-message.show {
    display: block;
}

.help-text {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 4px;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc2626;
    background-color: #fef2f2;
}

/* Focus indicators migliorati */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.btn:focus {
    outline: 2px solid #1d4ed8;
    outline-offset: 2px;
}

.nav-menu a:focus,
.nav-menu a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.45);
    background-color: rgba(37, 99, 235, 0.08);
}

.slider-nav:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.dot:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Messaggio di successo */
.success-message {
    background-color: #dcfce7;
    border: 1px solid #16a34a;
    color: #15803d;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-weight: 500;
}

/* Map Section */
.map {
    padding: 10px 0 70px 0;
    background: white;
}
.map h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}
.map {
    padding: 0;
    margin: 0;
}
.map > .container {
    width: 100vw;
    max-width: 100vw;
    padding: 0;
    margin: 0;
}
.map-wrapper {
    position: relative;
    width: 100vw;
    max-width: none;
    margin: 0;
}
.map-embed {
    width: 100vw;
    /*aspect-ratio: 22 / 9; /* altezza leggermente ridotta rispetto a 20:9 */
    height: auto;
    min-height: 500px; /* fallback leggermente ridotto */
    border: 0;
    /*border-radius: 16px;*/
    box-shadow: 0 12px 30px rgba(0,0,0,0.16);
    transition: width 0.3s ease, height 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}
.map-embed:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.2);
}
.map-alt {
    text-align: center;
    margin-top: 0.75rem;
    color: #475569;
}
.map-alt a { color: var(--accent-primary); }

/* Pulsante overlay Apri su Google Maps */
.map-action {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--accent-primary);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.map-action:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.22);
}

/* Video Section */
.video-section {
    padding: 80px 0 60px 0;
}
.video-container {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.16);
}
.video-player {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #0b1320;
}
.video-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    padding: 16px 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0));
    color: #fff;
    pointer-events: none;
}
.video-overlay h2 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--footer-heading-color);
}
/* Footer brand name prominente */
.footer-brand {
    font-size: clamp(0.875rem, 0.77rem + 0.84vw, 1.4rem); /* -30% */
    font-weight: 800;
    margin-bottom: 0.25rem; /* spazio negativo: riduce gap sotto titolo */
    color: #ffffff;
    white-space: nowrap; /* singola riga */
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.02em; /* spazio negativo (tracking) */
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    color: #94a3b8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

/* Footer links and contact anchors */
.footer a,
.contact a {
    color: var(--footer-link-color);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer a:hover,
.contact a:hover {
    color: var(--footer-link-hover-color);
}

/* Footer description under brand */
.footer .footer-section:first-child p {
    text-align: left;
    line-height: 1.5em;
    color: var(--footer-text-color);
}
/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-primary);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.18); /* ombreggiatura leggera */
    border: none;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s ease, box-shadow 0.3s ease;
}
.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
}
.back-to-top:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}
.back-to-top:focus {
    outline: 2px solid #1d4ed8;
    outline-offset: 2px;
}
.back-to-top.near-footer {
    bottom: 90px; /* mantiene almeno ~20px dal footer, più spazio su mobile */
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Modal styles (globali) */
.modal { display: none; }
.modal.active { display: block; }
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17,24,39,0.5);
}
.modal-dialog {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 90%;
  max-width: 420px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.modal-header { display:flex; align-items:center; justify-content:space-between; padding:16px 20px; border-bottom:1px solid #e5e7eb; }
.modal-header h2 { font-size: 18px; margin:0; }
.modal-close { background:none; border:none; font-size:24px; line-height:1; cursor:pointer; }
.modal-body { padding: 16px 20px; }
.modal-footer { padding: 16px 20px; border-top:1px solid #e5e7eb; display:flex; justify-content:flex-end; }

/* Cookie banner (globale) */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background: #111827;
  color: #fff;
  padding: 12px 16px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.15);
  display: none;
  z-index: 1001;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-banner a { color: #93C5FD; }
.cookie-banner .btn { margin-left: 8px; }

/* Responsive Design */
@media (max-width: 768px) {
    .logo img {
        width: 160px;
        height: 48px;
    }
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 50px;
        background-attachment: scroll; /* migliore compatibilità mobile */
        background-position: center 50%;
        min-height: 85vh;
    }
.video-section { padding: 60px 0 40px 0; }
.video-container { margin: 0 16px; }
.video-overlay h2 { font-size: 1.4rem; }


/* Modal styles */
.modal { display: none; }
.modal.active { display: block; }
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17,24,39,0.5);
}
.modal-dialog {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 90%;
  max-width: 420px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.modal-header { display:flex; align-items:center; justify-content:space-between; padding:16px 20px; border-bottom:1px solid #e5e7eb; }
.modal-header h2 { font-size: 18px; margin:0; }
.modal-close { background:none; border:none; font-size:24px; line-height:1; cursor:pointer; }
.modal-body { padding: 16px 20px; }
.modal-footer { padding: 16px 20px; border-top:1px solid #e5e7eb; display:flex; justify-content:flex-end; }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background: #111827;
  color: #fff;
  padding: 12px 16px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.15);
  display: none;
  z-index: 1001;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-banner a { color: #93C5FD; }
.cookie-banner .btn { margin-left: 8px; }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    /* Nessun contenitore video in mobile */
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .map { padding: 0; }
    .map-wrapper { padding: 0; width: 100vw; }
    .map-embed { aspect-ratio: 22 / 9; min-height: 216px; }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .back-to-top {
        right: 16px;
        bottom: 20px;
        width: 40px;
        height: 40px;
    }
    .back-to-top.near-footer {
        bottom: 80px;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 140px;
        height: 42px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .footer-brand {
        font-size: 1.4rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .services h2,
    .about h2,
    .gallery h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    .video-section { padding: 40px 0 30px 0; }
    .video-container { margin: 0 12px; border-radius: 12px; }
    .video-overlay { padding: 12px 14px; }
    .video-overlay h2 { font-size: 1.2rem; }
    .map-embed { aspect-ratio: 9 / 5; min-height: 188px; }
    
    .service-card {
        padding: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img[src=""] {
    opacity: 0;
}
/* Theme Variables */
:root {
    --footer-bg-color: #0f172a; /* slate-900 */
    --footer-text-color: #94a3b8; /* slate-400 */
    --footer-heading-color: #f1f5f9; /* slate-100: contrast >= 4.5:1 on dark bg */
    --footer-link-color: #93c5fd; /* light blue for high contrast */
    --footer-link-hover-color: #bfdbfe;
    --accent-primary: #2563eb; /* existing primary */
}
