/* ============================================================
   ELETTROIMPIANTI MAZZANTE FELISIANO – Custom CSS
   ============================================================ */

/* ── Design Tokens ───────────────────────────────────────── */
:root {
    --primary-color:   #1565C0;   /* Blu elettrico profondo */
    --secondary-color: #42A5F5;   /* Azzurro tenue          */
    --accent-color:    #38B5E6;   /* Azzurro accento        */
    --light-bg:        #F5F7FA;   /* Bianco/avorio          */
    --text-dark:       #1E2A3A;
    --text-muted:      #6B7A8D;
    --white:           #ffffff;
    --border-light:    #E2E8F0;
    --section-pad:     80px;
}

/* ── Globals ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
}

a { text-decoration: none; transition: color .25s; }
img { max-width: 100%; }

.section-pad { padding: var(--section-pad) 0; }
.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--accent-color);
    display: block;
    margin-bottom: .5rem;
}
.section-title { line-height: 1.2; }
.section-title span { color: var(--accent-color); }

.btn-primary-custom {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: .75rem 1.75rem;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: .875rem;
    letter-spacing: .05em;
    transition: background .25s, transform .2s, box-shadow .25s;
    display: inline-block;
}
.btn-primary-custom:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(21,101,192,.30);
}

.btn-outline-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: .65rem 1.6rem;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: .875rem;
    letter-spacing: .05em;
    transition: all .25s;
    display: inline-block;
}
.btn-outline-custom:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Credits */
.credits_link {
    color: #38B5E6 !important;
    font-weight: 700;
    font-family: sans-serif;
}
.credits_link:hover { color: #fff !important; }
.credits_link::before {
    content: "";
    vertical-align: middle;
    width: 16px; height: 16px;
    display: inline-block;
    margin-right: 5px; margin-left: 5px;
    background-image: url(https://www.clion.it/favicon-96x96.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    transition: all 450ms ease;
}
.credits_link:hover::before {
    transform: scale(1.5) rotateZ(360deg) rotateY(360deg);
}

/* ── TOP-BAR ─────────────────────────────────────────────── */
#topbar {
    background: var(--text-dark);
    color: #aab3bf;
    font-size: .78rem;
    padding: 6px 0;
    position: relative;
    z-index: 1050;
}
#topbar a { color: #aab3bf; }
#topbar a:hover { color: var(--accent-color); }
#topbar i { color: var(--accent-color); }

/* ── NAVBAR ──────────────────────────────────────────────── */
#mainNav {
    background: rgba(10,20,40,.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background .35s, box-shadow .35s, padding .35s, top .35s;
    padding: 18px 0;
    position: fixed;
    width: 100%;
    z-index: 1040;
    padding-top: 40px;
    top: 0 !important;
}
#mainNav.scrolled {
    background: rgba(21,30,44,.97);
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    padding: 10px 0;
    top: 0;
}
/* Mobile: sfondo sempre scuro opaco (il collapse altrimenti eredita bianco) */
@media (max-width: 991px) {
    #mainNav {
        background: rgba(21,30,44,.97) !important;
        padding: 12px 0;
    }
    #mainNav .navbar-collapse {
        background: rgba(21,30,44,.97);
        border-top: 1px solid rgba(255,255,255,.08);
        padding: .75rem 0 .5rem;
        margin-top: .5rem;
    }
}

#mainNav .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: .82rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255,255,255,.88) !important;
    padding: .45rem .9rem !important;
    position: relative;
    transition: color .2s;
}
#mainNav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 2px;
    background: var(--accent-color);
    transition: left .25s, right .25s;
}
#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after { left: .9rem; right: .9rem; }
#mainNav .nav-link:hover,
#mainNav .nav-link.active { color: var(--white) !important; }
#mainNav .navbar-toggler { border-color: rgba(255,255,255,.4); }
#mainNav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,.8%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── HERO / SWIPER ───────────────────────────────────────── */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}
.hero-swiper { width: 100%; height: 100%; }
.swiper-slide-hero {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}
.swiper-slide-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(10,20,40,.80) 55%, rgba(10,20,40,.35) 100%);
    z-index: 1;
    opacity: 0.7;
}
.slide-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 7s ease;
}
.swiper-slide-active .slide-bg { transform: scale(1); }

.hero-content {
    position: relative; z-index: 2;
    padding: 0 15px;
    max-width: 640px;
}
.hero-content .slide-label {
    font-family: 'Montserrat', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
    opacity: 0; transform: translateY(20px);
    transition: all .6s .2s;
}
.swiper-slide-active .slide-label { opacity: 1; transform: translateY(0); }
.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.2rem;
    opacity: 0; transform: translateY(30px);
    transition: all .7s .35s;
}
.swiper-slide-active .hero-content h1 { opacity: 1; transform: translateY(0); }
.hero-content p {
    color: rgba(255,255,255,.8);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0; transform: translateY(20px);
    transition: all .6s .55s;
}
.swiper-slide-active .hero-content p { opacity: 1; transform: translateY(0); }
.hero-content .hero-cta {
    opacity: 0; transform: translateY(20px);
    transition: all .6s .7s;
}
.swiper-slide-active .hero-content .hero-cta { opacity: 1; transform: translateY(0); }

/* Swiper bullets */
.hero-swiper .swiper-pagination-bullet {
    width: 10px; height: 10px;
    background: rgba(255,255,255,.5);
    opacity: 1;
    transition: background .25s, transform .25s;
}
.hero-swiper .swiper-pagination-bullet-active {
    background: var(--accent-color);
    transform: scale(1.4);
}
/* Swiper nav arrows */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: var(--white);
    background: rgba(255,255,255,.1);
    width: 46px; height: 46px;
    border-radius: 50%;
    transition: background .25s;
}
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after { font-size: 16px; }
.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover { background: var(--primary-color); }

/* scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.hero-scroll span {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,.7));
    animation: scrollLine 1.6s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{opacity:.4;transform:scaleY(0.6)} 50%{opacity:1;transform:scaleY(1)} }
.hero-scroll small {
    color: rgba(255,255,255,.6); font-size: .68rem; letter-spacing: .12em;
    text-transform: uppercase; writing-mode: horizontal-tb;
}

/* ── ABOUT ───────────────────────────────────────────────── */
#about { background: var(--white); position: relative; overflow: hidden; }
#about::after {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: var(--secondary-color);
    opacity: .06; z-index: 0;
}
#about .container { position: relative; z-index: 1; }
.badge-about {
    display: inline-flex; align-items: center; justify-content: center;
    flex-direction: column;
    width: 90px; height: 90px; border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 8px 28px rgba(21,101,192,.35);
}
.badge-about .num { font-size: 1.8rem; font-weight: 700; line-height: 1; }
.badge-about .sub { font-size: .55rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; opacity: .85; }

.feature-icon-box {
    display: flex; align-items: flex-start; gap: .75rem;
}
.feature-icon-box .icon-wrap {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 8px;
    background: rgba(56,181,230,.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-color);
    transition: background .25s;
}
.feature-icon-box:hover .icon-wrap { background: var(--primary-color); color: var(--white); }
.feature-icon-box h6 { font-size: .88rem; margin-bottom: .2rem; }
.feature-icon-box p { font-size: .8rem; color: var(--text-muted); margin: 0; }

/* ── SERVICES ────────────────────────────────────────────── */
#services { background: var(--light-bg); position: relative; overflow: hidden; }
#services::before {
    content: '\f0e7';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: -60px; right: -80px;
    font-size: 380px;
    color: var(--secondary-color);
    opacity: .05;
    z-index: 0;
    line-height: 1;
}
#services .container { position: relative; z-index: 1; }

.service-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(21,101,192,.12);
}
.service-card .img-wrap {
    position: relative; overflow: hidden;
    height: 200px;
}
.service-card .img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .45s;
}
.service-card:hover .img-wrap img { transform: scale(1.08); }
.service-card .card-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(21,101,192,.4);
}
.service-card .card-body { padding: 1.4rem; }
.service-card .card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: .5rem;
}
.service-card .card-text { font-size: .84rem; color: var(--text-muted); line-height: 1.65; }

/* Swiper services dots */
.services-swiper .swiper-pagination-bullet { background: var(--border-light); opacity:1; }
.services-swiper .swiper-pagination-bullet-active { background: var(--primary-color); }

/* ── WHY CHOOSE US ───────────────────────────────────────── */
#why {
    background: var(--white);
    position: relative; overflow: hidden;
}
#why .why-img-col {
    position: relative;
}
#why .why-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: visible;
}
#why .why-img-wrap img {
    border-radius: 12px;
    width: 100%;
    object-fit: cover;
    height: 460px;
    box-shadow: 24px 24px 0 var(--secondary-color);
}
.why-checklist { list-style: none; padding: 0; margin: 1.5rem 0; }
.why-checklist li {
    display: flex; align-items: flex-start; gap: .75rem;
    margin-bottom: .9rem;
    font-size: .92rem;
}
.why-checklist li i {
    color: var(--primary-color);
    font-size: 1.1rem; flex-shrink: 0;
    margin-top: 2px;
}

/* ── STATS ────────────────────────────────────────────────── */
#stats {
    background: var(--text-dark);
    padding: 56px 0;
    position: relative; overflow: hidden;
}
#stats::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2342A5F5' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}
#stats .container { position: relative; z-index: 1; }

/* Stats row: flex con separatori via pseudo-elementi, nessun col-auto che rompe la griglia */
#stats .stats-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-around;
    gap: 0;
}
.stat-item {
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 1rem;
}
/* Separatore verticale tra i blocchi */
.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(255,255,255,.12);
}
.stat-item .stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem; font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.stat-item .stat-number span { color: var(--accent-color); }
.stat-item .stat-label {
    font-size: .82rem; color: rgba(255,255,255,.55);
    letter-spacing: .08em; text-transform: uppercase;
    margin-top: .4rem;
}
/* Mobile: griglia 2×2 */
@media (max-width: 575px) {
    #stats .stats-row {
        flex-wrap: wrap;
    }
    .stat-item {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 1.25rem .5rem;
    }
    .stat-item + .stat-item::before { display: none; }
}

/* ── VIDEO / CTA BAND ────────────────────────────────────── */
#video-cta {
    position: relative;
    height: 320px;
    overflow: hidden;
}
.video-cta-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.video-cta-bg::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(10,20,40,.70);
}
.video-cta-inner {
    position: relative; z-index: 2;
    height: 100%;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    text-align: center;
}
.play-btn {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    font-size: 1.6rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 0 rgba(21,101,192,.5);
    animation: pulse 2s ease-in-out infinite;
    transition: background .25s, transform .2s;
    cursor: pointer;
    border: 3px solid rgba(255,255,255,.3);
}
.play-btn:hover { background: var(--accent-color); transform: scale(1.1); }
@keyframes pulse {
    0%  { box-shadow: 0 0 0 0 rgba(21,101,192,.55); }
    70% { box-shadow: 0 0 0 26px rgba(21,101,192,0); }
    100%{ box-shadow: 0 0 0 0 rgba(21,101,192,0); }
}

/* ── PROCESS ─────────────────────────────────────────────── */
#process {
    background: var(--light-bg);
    position: relative; overflow: hidden;
}
#process::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: .05; z-index: 0;
}
#process .container { position: relative; z-index: 1; }

.process-step {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: box-shadow .3s, transform .3s;
    height: 100%;
}
.process-step:hover {
    box-shadow: 0 16px 40px rgba(21,101,192,.1);
    transform: translateY(-5px);
}
.process-step-number {
    position: absolute;
    top: -18px; left: 50%;
    transform: translateX(-50%);
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(21,101,192,.35);
}
.process-step i {
    font-size: 2rem; color: var(--primary-color);
    margin-bottom: 1rem; display: block;
}
.process-step h5 {
    font-size: .95rem; margin-bottom: .5rem;
}
.process-step p { font-size: .82rem; color: var(--text-muted); margin: 0; }

/* Connector line between steps */
.process-connector {
    display: flex; align-items: center; justify-content: center;
    padding-top: 2rem;
}
.process-connector i { color: var(--border-light); font-size: 1.4rem; }

/* ── FAQ ─────────────────────────────────────────────────── */
#faq {
    background: var(--white);
    position: relative; overflow: hidden;
}
#faq::before {
    content: '\f059';
    font-family: 'bootstrap-icons';
    position: absolute;
    bottom: -40px; right: -60px;
    font-size: 320px;
    color: var(--secondary-color);
    opacity: .05; z-index: 0;
    line-height: 1;
}
#faq .container { position: relative; z-index: 1; }

.accordion-item {
    border: 1px solid var(--border-light) !important;
    border-radius: 8px !important;
    margin-bottom: .75rem;
    overflow: hidden;
}
.accordion-button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    color: var(--text-dark) !important;
    background: var(--white) !important;
    box-shadow: none !important;
    padding: 1.1rem 1.3rem;
}
.accordion-button:not(.collapsed) {
    color: var(--primary-color) !important;
    background: rgba(56,181,230,.05) !important;
}
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231565C0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}
.accordion-body { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }

/* Gallery grid (right of FAQ) */
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.gallery-item { position: relative; border-radius: 8px; overflow: hidden; cursor: pointer; }
.gallery-item img {
    width: 100%; height: 160px; object-fit: cover;
    transition: transform .45s, filter .35s;
    display: block;
}
.gallery-item .gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(21,101,192,.0);
    display: flex; align-items: center; justify-content: center;
    transition: background .3s;
}
.gallery-item .gallery-overlay i {
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0;
    transform: scale(.7);
    transition: opacity .3s, transform .3s;
}
.gallery-item:hover img { transform: scale(1.08); filter: brightness(.75); }
.gallery-item:hover .gallery-overlay { background: rgba(21,101,192,.4); }
.gallery-item:hover .gallery-overlay i { opacity: 1; transform: scale(1); }
/* Always show zoom icon on mobile */
@media (max-width: 767px) {
    .gallery-item .gallery-overlay i {
        opacity: .8; transform: scale(.8);
        position: absolute; bottom: 8px; right: 8px;
        font-size: 1.1rem;
    }
}
/* Badge counter overlay */
.gallery-more {
    position: relative; border-radius: 8px; overflow: hidden;
}
.gallery-more::after {
    content: attr(data-more);
    position: absolute; inset: 0;
    background: rgba(21,101,192,.75);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    display: flex; align-items: center; justify-content: center;
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
#testimonials {
    position: relative;
    background: var(--text-dark);
    overflow: hidden;
}
.testimonials-bg-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: .3;
    z-index: 0;
}
#testimonials .container { position: relative; z-index: 2; }

.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem 1.75rem;
    box-shadow: 0 20px 56px rgba(0,0,0,.18);
    height: 100%;
}
.stars i { color: #F7C800; font-size: .9rem; }
.testimonial-card blockquote {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
    margin: .75rem 0 1rem;
}
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
}
.testimonial-author .name { font-weight: 700; font-size: .87rem; margin: 0; }
.testimonial-author .role { font-size: .75rem; color: var(--text-muted); }

/* ── CONTACT ─────────────────────────────────────────────── */
#contact {
    background: var(--light-bg);
    position: relative; overflow: hidden;
}
#contact::before {
    content: '';
    position: absolute;
    background: repeating-linear-gradient(
        45deg, transparent, transparent 10px,
        var(--accent-color) 10px, var(--accent-color) 11px
    );
    top: 0; right: -200px;
    width: 600px; height: 100%;
    opacity: .04; z-index: 0;
}
#contact .container { position: relative; z-index: 1; }

.contact-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,.06);
}
.contact-info-item {
    display: flex; align-items: flex-start; gap: 1rem;
    margin-bottom: 1.25rem;
}
.contact-info-item .icon-wrap {
    flex-shrink: 0;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: rgba(56,181,230,.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--primary-color);
}
.contact-info-item h6 { font-size: .8rem; color: var(--text-muted); margin: 0 0 .2rem; text-transform: uppercase; letter-spacing: .06em; }
.contact-info-item p { margin: 0; font-size: .9rem; font-weight: 600; }
.contact-info-item a { color: var(--text-dark); }
.contact-info-item a:hover { color: var(--primary-color); }

.form-control-custom {
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: .75rem 1rem;
    font-size: .9rem;
    color: var(--text-dark);
    transition: border-color .25s, box-shadow .25s;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    background: var(--light-bg);
}
.form-control-custom:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(56,181,230,.15);
    background: var(--white);
}
.acceptance_block { margin: 1rem 0; }
.acceptance_block p { margin-bottom: .5rem !important; }
.acceptance_block input[type="checkbox"] { accent-color: var(--primary-color); }

.map-wrap { border-radius: 12px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.08); }
.map-wrap iframe { display: block; }

/* ── WHATSAPP FLOAT ──────────────────────────────────────── */
#whatsapp-btn {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 9999;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 6px 24px rgba(37,211,102,.45);
    transition: transform .25s, box-shadow .25s;
    animation: walpha 2.5s ease-in-out infinite;
}
#whatsapp-btn:hover { transform: scale(1.12) translateY(-3px); box-shadow: 0 12px 32px rgba(37,211,102,.55); color: var(--white); }
@keyframes walpha { 0%,100%{box-shadow:0 6px 24px rgba(37,211,102,.45)} 50%{box-shadow:0 6px 36px rgba(37,211,102,.75)} }

/* ── FOOTER ──────────────────────────────────────────────── */
#footer {
    background: #0D1724;
    color: rgba(255,255,255,.65);
    padding: 64px 0 0;
}
#footer h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--white);
    margin-bottom: 1.25rem;
}
#footer p { font-size: .85rem; line-height: 1.75; }
#footer a { color: rgba(255,255,255,.55); font-size: .85rem; transition: color .2s; }
#footer a:hover { color: var(--accent-color); }
.footer-links li { margin-bottom: .5rem; }
.footer-links li::before { content: '›'; color: var(--accent-color); margin-right: .5rem; }
.footer-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.55) !important;
    font-size: 1rem;
    transition: all .25s;
    margin-right: .4rem;
}
.footer-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white) !important;
}
.footer-separator {
    border-color: rgba(255,255,255,.08);
    margin: 2rem 0 1.5rem;
}
.footer-bottom {
    text-align: center;
    font-size: .75rem;
    color: rgba(255,255,255,.35);
    padding-bottom: 1.75rem;
    line-height: 1.9;
}
.footer-bottom a { color: rgba(255,255,255,.45) !important; }
.footer-bottom a:hover { color: var(--accent-color) !important; }

/* ── AOS overrides ───────────────────────────────────────── */
[data-aos]{ will-change: transform, opacity; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 991px) {
    #mainNav { top: 0; }
    #topbar { display: none; }
    #hero { padding-top: 80px; }
    #why .why-img-wrap img { height: 280px; box-shadow: 12px 12px 0 var(--secondary-color); }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
    :root { --section-pad: 56px; }
    .hero-content h1 { font-size: 1.8rem; }
    .badge-about { width: 72px; height: 72px; }
    .badge-about .num { font-size: 1.4rem; }
    .stat-divider { display: none !important; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item img { height: 120px; }
    .contact-card { padding: 1.5rem; }
}

.footer_logo{
    margin-top: -100px;
    padding: 15px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px -10px 15px -3px, rgba(0, 0, 0, 0.05) 0px -4px 6px -2px;
}

#mainNav .navbar-brand{
    padding: 7px;
    background: #fff;
    margin-bottom: -18px;
    margin-top: -9px;
    position: relative;
    border-radius: 0 4px 4px 0;
}

#mainNav.scrolled .navbar-brand{
    border-radius: 0 0 4px 0;
}

.navbar-brand:before{
    display: block;
    content: "";
    width: 1000px;
    background-color: #fff;
    height: 100%;
    position: absolute;
    right: 100%;
    top: 0;
    z-index: 0;
}

#mainNav .navbar-brand img { height: 70px; }

.footer_about{
    font-size: 15px !important;
    line-height: 1.2 !important;
    color: #fff;
    font-weight: 600;
    padding: 19px;
    /*background: var(--primary-color);*/
    background-color: #1565c0e0;
    backdrop-filter: blur(6px);
    border-radius: 4px;
    transform: scale(0.9) translateY(-57px);
}
