/* ==========================================================
   MV CLEANING SERVICES LTD
   Production Stylesheet v1.0 (Refactor)
   Functional behavior preserved.
========================================================== */

/* ==========================
   MONTSERRAT
========================== */

@font-face{

    font-family:"Montserrat";

    src:url("../assets/fonts/Montserrat-Regular.woff2") format("woff2");

    font-weight:400;

    font-style:normal;

    font-display:swap;

}

@font-face{

    font-family:"Montserrat";

    src:url("../assets/fonts/Montserrat-SemiBold.woff2") format("woff2");

    font-weight:600;

    font-style:normal;

    font-display:swap;

}

@font-face{

    font-family:"Montserrat";

    src:url("../assets/fonts/Montserrat-ExtraBold.woff2") format("woff2");

    font-weight:800;

    font-style:normal;

    font-display:swap;

}

:root{

    --pink:#F48CA6;
    --soft-pink:#EFB7C8;
    --teal:#43C6B8;
    --mint:#BFEDE8;
    --black:#101010;
    --white:#ffffff;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Montserrat',sans-serif;
    color:var(--black);
    overflow-x:hidden;

}

.container{

    width:min(1400px,90%);
    margin:auto;

}

/* HEADER */

.header{

    position:fixed;
    top:0;
    left:0;

    width:100%;

    z-index:999;

    transition:.35s ease;

}

.header.scrolled{

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(12px);

    box-shadow:0 2px 20px rgba(0,0,0,.08);

}

.logo{

    opacity:0;

    visibility:hidden;

    transition:opacity .3s ease;

}

.header.scrolled .logo{

    opacity:1;

    visibility:visible;

}

.header .container{

    height:90px;

    display:flex;
    align-items:center;
    justify-content:space-between;

}

.logo img{

    height:60px;

}

.nav{

    display:flex;
    gap:2rem;

}

.nav a{

    text-decoration:none;

    color:rgba(255,255,255,.96);

    font-weight:600;

    text-shadow:0 2px 8px rgba(0,0,0,.22);

    transition:
        color .3s ease,
        text-shadow .3s ease;

}

.header.scrolled .nav a{

    color:var(--black);

    text-shadow:none;

}

.btn-header{

    opacity:0;

    visibility:hidden;

    transition:opacity .3s ease;

    background:var(--pink);
    color:white;

    text-decoration:none;

    padding:14px 28px;

    border-radius:999px;

    font-weight:600;

}

@font-face{

    font-family:"Montserrat";

    src:url("../assets/fonts/Montserrat-Bold.woff2") format("woff2");

    font-weight:700;

    font-style:normal;

    font-display:swap;

}

.header.scrolled .btn-header{

    opacity:1;

    visibility:visible;

}

/* HERO */

.hero{

    min-height:100vh;
    padding-top:90px;

    position:relative;
    overflow: hidden;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    background:url('../assets/images/hero-bg.webp');
    background-size:cover;
    background-position:center;


}

.hero::before{

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.30) 0%,
        rgba(0,0,0,.18) 20%,
        rgba(0,0,0,.08) 38%,
        rgba(0,0,0,0) 55%
    );

    pointer-events: none;

    z-index: 1;

}

.hero > *{

    position: relative;

    z-index: 2;

}

.hero-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
    rgba(255,255,255,.45),
    rgba(255,255,255,.60)
    );

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:1000px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    width:90%;

    padding-top:60px;

}

.hero-logo{

    transform:scale(.90);

    height:clamp(180px,18vw,200px);

    margin-bottom:20px;

}

.hero h1{

    transform:translateY(25px);

    font-size:clamp(3rem,6vw,5.5rem);

    font-weight:800;

    line-height:1.15;

    margin-bottom:2.5rem;

}

.hero p{

    transform:translateY(20px);

    max-width:800px;

    margin:auto;

    font-size:1.4rem;

    line-height:1.6;

    margin-bottom:2rem;

}

.btn-primary{

    transform:translateY(15px);

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:var(--pink);

    color:white;

    text-decoration:none;

    padding:18px 42px;

    border-radius:999px;

    font-weight:600;

    transition:.3s ease;

}

.btn-primary::after{

    content:"→";

    font-size:1rem;

    transition:transform .3s ease;

}

.btn-primary:hover::after{

    transform:translateX(5px);

}

.btn-primary:hover{

    transform:translateY(-3px);

}

.scroll-indicator{

    transform:translateY(10px);

    margin-top:3rem;

    font-size:2rem;

    animation:bounce 2s infinite;

}

.hero-logo,
.hero h1,
.hero p,
.hero .btn-primary,
.hero .scroll-indicator{

    opacity:0;

}

/* ==========================
   EXPERIENCE
========================== */

.experience{

    padding:140px 0;

    background:#fff;

}

.experience-header{

    max-width:900px;

    margin:0 auto 80px;

    text-align:center;

}

.experience-header h2{

    font-size:clamp(2.5rem,5vw,4.5rem);

    font-weight:800;

    line-height:1.1;

    margin-bottom:2rem;

    color:var(--black);

}

.experience-header p{

    font-size:1.15rem;

    line-height:1.9;

    color:#555;

    margin-bottom:1.25rem;

}

.experience-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.experience-card{

    background:#fff;

    border:1px solid rgba(0,0,0,.08);

    border-radius:24px;

    padding:32px;

    transition:.35s ease;

}

.experience-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

}


.experience-card h3{

    font-size:1.35rem;

    font-weight:800;

    margin-bottom:12px;

    line-height:1.2;

}

.experience-card p{

    color:#666;

    line-height:1.8;

}

.experience-header p:nth-of-type(2){

    max-width:680px;

    margin:0 auto 1.25rem;

}

.experience-card-content{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:24px;

}

.experience-text{

    flex:1;

}

.experience-image{

    width:95px;

    height:95px;

    border-radius:50%;

    overflow:hidden;

    flex-shrink:0;

    border:3px solid rgba(67,198,184,.12);

}

.experience-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

/* ==========================
   SECTION HEADER
========================== */

.section-header{

    text-align:center;

    max-width:900px;

    margin:0 auto 80px;

}

.section-header h2{

    font-size:clamp(2.5rem,5vw,4.5rem);

    font-weight:800;

    margin-bottom:1.5rem;

}

.section-header > p:first-of-type{

    font-size:1.35rem;

    color:var(--pink);

    font-weight:600;

    margin-bottom:1.5rem;

}

.section-intro{

    font-size:1.1rem;

    line-height:1.9;

    color:#666;

}

/* ==========================
   SERVICES
========================== */

.services{

    padding:140px 0;

    background:#ffffff;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.service-card{

    position:relative;

    height:480px;

    overflow:hidden;

    border-radius:28px;

    cursor:pointer;

    background:#000;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.45s ease;

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 30px 60px rgba(0,0,0,.15);


}

.service-card h3{

    font-size:1.5rem;

    font-weight:800;

    margin-bottom:15px;


}

.service-card:hover h3{

    color:var(--teal);

}

.service-card p{

    line-height:1.8;

    color:#666;

}

.featured{

    background:linear-gradient(
        135deg,
        var(--pink),
        var(--soft-pink)
    );

    color:white;

}

.featured h3,
.featured p{

    color:white;

}

.service-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.8s ease;

}

.service-card:hover img{

    transform:scale(1.06);

}

.service-overlay{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    padding:32px;

    background:linear-gradient(

        transparent,

        rgba(0,0,0,.78) 45%,

        rgba(0,0,0,.92)

    );

    color:white;

    transform:translateY(95px);

    transition:.45s ease;

}

.service-card:hover .service-overlay{

    transform:translateY(0);

}

.service-overlay h3{

    font-size:1.8rem;

    font-weight:700;

    margin-bottom:18px;

}

.service-overlay p{

    min-height:88px;

    line-height:1.8;

    opacity:0;

    transform:translateY(20px);

    transition:.45s ease;

    margin-bottom:22px;

    color:var(--white);

}

.service-card:hover .service-overlay p{

    opacity:1;

    transform:translateY(0);

}

.service-link{

    background:none;

    border:none;

    padding:0;

    margin:0;

    color:var(--teal);

    font:inherit;

    font-weight:700;

    cursor:pointer;

}

.service-card:hover .service-link{

    transform:translateX(8px);

}

/* ==========================
   PROCESS
========================== */

.process{

    padding:140px 0;

    background:white;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:40px;

}

.process-step{

    position:relative;

    text-align:center;

    padding:40px;

}

.step-number{

    display:block;

    font-size:6rem;

    font-weight:800;

    color:rgba(244,140,166,.15);

    margin-bottom:20px;

}

.process-step h3{

    font-size:1.5rem;

    font-weight:800;

    margin-bottom:15px;

}

.process-step p{

    color:#666;

    line-height:1.8;

}

/*======================================
AREAS WE SERVE
======================================*/

.coverage{

    padding:140px 0;

    background:#ffffff;

}

.coverage-grid{

    display:grid;

    grid-template-columns:32% 68%;

    gap:32px;

    align-items:center;

}

.coverage-content{

    max-width:430px;

}

.section-label{

    display:inline-block;

    margin-bottom:20px;

    text-transform:uppercase;

    letter-spacing:.18em;

    font-size:.9rem;

    font-weight:700;

    color:var(--teal);

}

.coverage-content h2{

    font-size:clamp(2.2rem,3vw,3.3rem);

    line-height:1.15;

    margin-bottom:22px;

}

.coverage-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:35px;

}

.coverage-features{

    list-style:none;

    padding:0;

    margin:0 0 40px;

}

.coverage-features li{

    position:relative;

    padding-left:34px;

    margin-bottom:18px;

    font-weight:600;

}

.coverage-features li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:var(--teal);

    font-weight:700;

}

.coverage-cta{

    padding:30px;

    border-radius:22px;

    background:#f7faf9;

    border:1px solid rgba(0,0,0,.06);

}

.coverage-cta h4{

    margin-bottom:12px;

    font-size:1.35rem;

}

.coverage-cta p{

    margin-bottom:24px;

}

.coverage-right{

    display:flex;

    flex-direction:column;

    align-items:center;

}

.coverage-map{

    border-radius:30px;

    overflow:hidden;

    box-shadow:0 25px 60px rgba(0,0,0,.10);

}

.coverage-map img{

    display:block;

    width:100%;

    height:100%;

}

#coverage-map-image{

    cursor:pointer;

    transition:opacity .25s ease;

}

.coverage-cities{

    display:flex;
    flex-wrap:wrap;
    gap:12px;
    justify-content:center;

    margin-top:30px;

}

.coverage-cities span{

    padding:10px 18px;

    border-radius:999px;

    background:#fff;

    border:1px solid rgba(0,0,0,.08);

    cursor:pointer;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease;

}

.coverage-cities span:hover,
.coverage-cities span.active{

    background:var(--teal);

    color:#fff;

    border-color:var(--teal);

}

/* ==========================
   FAQ
========================== */

.faq{

    padding:140px 0;

    background:#f7faf9;

    position:relative;

}

.faq-container{

    max-width:900px;

    margin:auto;

}

.faq-item{


    background:#fff;

    border:1px solid rgba(0,0,0,.05);

    border-radius:20px;

    box-shadow:0 8px 24px rgba(0,0,0,.04);

    transition:all .3s ease;

    overflow:hidden;


}

.faq-item:hover{

    transform:translateY(-3px);

    box-shadow:0 14px 32px rgba(0,0,0,.06);

}

.faq-question{

    width:100%;

    background:none;

    border:none;

    cursor:pointer;

    text-align:left;

    font-family:'Montserrat',sans-serif;

    font-size:1.15rem;

    font-weight:600;

    padding:28px 30px;

    position:relative;

}

.faq-question::after{

    content:"+";

    position:absolute;

    right:30px;

    color:var(--teal);

    font-size:1.5rem;

    top:50%;

    transform:translateY(-50%);

    width:34px;

    height:34px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    transition:all .3s ease;

}

.faq-item.active .faq-question::after{

    content:"−";

    background:var(--teal);

    color:#fff;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    padding:0 30px 0px;

    transition:
        max-height .45s ease,
        padding .45s ease;

}

.faq-answer p{

    padding-bottom:30px;

    color:#666;

    line-height:1.8;

    opacity:0;

    transform:translateY(8px);

    transition:
        opacity .30s ease,
        transform .30s ease;

}

.faq-item.active .faq-answer{

    max-height:300px;

}

.faq-item.active .faq-answer p{

    opacity:1;

    transform:translateY(0);

}


.faq-item.active{

    border-color:rgba(67,198,184,.25);

    box-shadow:0 12px 30px rgba(67,198,184,.10);

}

.faq-cta{

    text-align:center;

    margin-top:80px;

}

.faq-cta p{

    margin-bottom:20px;

    font-size:1.1rem;

}


/* ==========================
   CONTACT
========================== */


.contact{

    padding:140px 0 140px;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f9fcfb
    );

}

.contact-card{

    max-width:900px;

    margin:0 auto;

    background:white;

    border-radius:32px;

    padding:60px;

    box-shadow:
    0 25px 60px rgba(0,0,0,.08);

}

.contact-header{

    text-align:center;

    margin-bottom:50px;

}

.contact-tag{

    display:inline-block;

    color:var(--teal);

    font-weight:600;

    margin-bottom:15px;

}

.contact-header h2{

    font-size:clamp(2rem,4vw,3.5rem);

    font-weight:800;

    margin-bottom:20px;

}

.contact-header p{

    max-width:650px;

    margin:auto;

    line-height:1.8;

    color:#666;

}

.contact-form{

    display:flex;

    flex-direction:column;

    gap:28px;

}

.form-group{

    display:flex;

    flex-direction:column;

}

.form-group label{

    margin-bottom:10px;

    font-weight:600;

}

.form-group select:hover{

    cursor:pointer;
    color:#43C6B8;

}

.form-group input,
.form-group select,
.form-group textarea{

    border:none;

    border-bottom:2px solid rgba(0,0,0,.08);

    padding:16px 0;

    background:none;

    font-family:'Montserrat',sans-serif;

    font-size:1rem;

    transition:.3s ease;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    outline:none;

    border-color:var(--teal);

}

.contact-btn{

    margin-top:15px;

    align-self:center;

}

.contact-benefits{

    margin-top:60px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.benefit-item{

    text-align:center;

    padding:18px;

    background:rgba(67,198,184,.08);

    border:1px solid rgba(67,198,184,.15);

    border-radius:18px;

    font-weight:600;

}

.contact-quote{

    margin-top:40px;

    text-align:center;

}

.contact-quote p{

    max-width:650px;

    margin:auto;

    font-size:1.1rem;

    line-height:1.9;

    color:#666;

}

.quote-benefits{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:18px;

    margin-top:24px;

}

.quote-benefits span{

    font-size:.92rem;

    color:#666;

    font-weight:500;

    display:flex;

    align-items:center;

    gap:8px;

}

.quote-benefits span::before{

    content:"";

    width:8px;

    height:8px;

    border-radius:50%;

    background:var(--teal);

    flex-shrink:0;

}


#message{

    min-height:180px;

    line-height:1.8;

    resize:vertical;

}

/* ==========================
   FOOTER
========================== */

.footer{

    background:#101010;

    color:white;

    padding:30px 0 0;

}

.footer-grid{

    display:grid;

    grid-template-columns:1.15fr 1.45fr .85fr .65fr;

    gap:40px;

    align-items:flex-start;

    padding-bottom:30px;

}

.footer-brand{

    display:flex;

    align-items:center;

    gap:20px;

}

.footer-logo{

    height:82px;

    flex-shrink:0;

}

.footer-brand-text{

    max-width:260px;

}

.footer-tagline{

    margin:0;

    font-size:1rem;

    line-height:1.8;

    color:rgba(255,255,255,.75);

}

.footer-column{

    min-width:0;

}

.footer-column h4{

    margin-bottom:20px;

    font-size:1.1rem;

    color:var(--teal);

}

.footer-column ul{

    list-style:none;

    margin:0;

    padding:0;

}

.footer-services ul{

    columns:2;

    column-gap:14px;

}

.footer-column li{

    margin-bottom:14px;

    color:rgba(255,255,255,.75);

    font-size:.95rem;

    break-inside:avoid;

}

.footer-column a{

    color:var(--teal);

    text-decoration:none;

    transition:.3s ease;

}

.footer-column a:hover{

    opacity:.8;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding:18px 0;

    text-align:center;

}

.footer-bottom p{

    color:rgba(255,255,255,.55);

    font-size:.85rem;

}

.footer-legal{

    margin-top:0cqb;

    display:flex;

    flex-direction:column;

    gap:0px;

}

.footer-legal h4{

    padding-bottom:0px;

}

.footer-legal a{

    color:var(--text-light);

    text-decoration:none;

    transition:.25s ease;

}

.footer-legal a:hover{

    color:var(--primary-color);

}

.footer-legal ul{

    margin:0;

    padding:0;

    list-style:none;

}

.footer-legal li{

    margin-bottom:14px;

    padding:10px 0px;

}

/* ==========================
   FORM VALIDATION
========================== */

.form-group{

    position:relative;

}

.form-group.error input,
.form-group.error select,
.form-group.error textarea{

    border-bottom:2px solid #D94B4B;

}

.field-error{

    margin-top:8px;

    color:#D94B4B;

    font-size:.85rem;

    line-height:1.4;

    animation:fadeError .25s ease;

}

@keyframes fadeError{

    from{

        opacity:0;

        transform:translateY(-4px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


.form-success{

    display:none;

    margin-bottom:30px;

    padding:28px;

    border-radius:18px;

    background:#F8FBFA;

    border:1px solid rgba(47,127,122,.18);

    text-align:center;

    animation:fadeSuccess .4s ease;

}

.form-success.show{

    display:block;

}

.success-icon{

    width:60px;
    height:60px;

    margin:0 auto 18px;

    border-radius:50%;

    background:#2F7F7A;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    font-weight:700;

}

.form-success h3{

    margin-bottom:10px;

    color:#2F7F7A;

}

.form-success p{

    margin:0;

    color:#666;

    line-height:1.7;

}

.contact-form{

    transition:
        opacity .45s ease,
        transform .45s ease;

}

.contact-form.hide{

    opacity:0;

    transform:translateY(-20px);

    pointer-events:none;

}

.privacy-error{

    color:#d9534f;

    font-size:.85rem;

    margin-top:8px;

    margin-left:30px;

    display:none;

}

.form-consent.error .privacy-error{

    display:block;

}

.form-consent.error{

    border:1px solid #d9534f;

    border-radius:10px;

    padding:12px;

}

.consent-row{

    display:flex;

    align-items:flex-start;

    gap:12px;

}

.consent-row label{

    display:inline;

    margin:0;

    line-height:1.5;

}

.consent-row input[type="checkbox"]{

    margin-top:4px;

    flex-shrink:0;

    width:18px;

    height:18px;

}

@keyframes fadeSuccess{

    from{

        opacity:0;

        transform:translateY(15px);

    }

    to{

        opacity:1;

        transform:none;

    }

}


.hp-field{

    position:absolute;

    left:-9999px;

    width:1px;

    height:1px;

    overflow:hidden;

}


/* =====================================
   CLOUDFLARE TURNSTILE
===================================== */

.cf-turnstile{

    display:flex;

    justify-content:center;

    margin:24px 0;

}

/* =====================================
   Privacy Policy
===================================== */

.privacy-page{

    padding:50px 0 50px;

    background:#F8F7F5;

    min-height:100vh;

}

.privacy-page .container{

    max-width:900px;

}

.privacy-page h1{

    font-size:clamp(2.4rem,5vw,3.5rem);

    color:#101010;

    margin-bottom:20px;

}

.privacy-page h2{

    font-size:1.5rem;

    margin-top:50px;

    margin-bottom:18px;

    color:#101010;

}

.privacy-page p{

    color:#555;

    line-height:1.9;

    margin-bottom:18px;

}

.privacy-page ul{

    margin:25px 0;

    padding-left:28px;

}

.privacy-page li{

    margin-bottom:12px;

    color:#555;

    line-height:1.8;

}

.privacy-page strong{

    color:#101010;

}

.privacy-page hr{

    margin:50px 0;

    border:none;

    border-top:1px solid rgba(0,0,0,.08);

}

.privacy-page a{

    color:#43C6B8;

    text-decoration:none;

    transition:.25s;

}

.privacy-page a:hover{

    color:#EFB7C8;

}

.effective-date{

    display:inline-block;

    margin-bottom:40px;

    padding:10px 18px;

    border-radius:999px;

    background:#fff;

    border:1px solid rgba(0,0,0,.08);

    font-size:.9rem;

    color:#666;

}

.privacy-card{

    background:#fff;

    border-radius:24px;

    padding:60px;

    box-shadow:0 20px 60px rgba(0,0,0,.05);

}

.contact-box{

    margin-top:50px;

    padding:30px;

    border-left:5px solid #43C6B8;

    background:#FDFDFD;

    border-radius:16px;

}

@media (max-width:768px){

    .privacy-page{

        padding:120px 0 70px;

    }

    .privacy-card{

        padding:35px 25px;

    }

}

/* =====================================================
   FLOATING SOCIAL MENU
===================================================== */

.fab-container{

    position: fixed;

    right: 32px;

    bottom: 32px;

    z-index: 1000;

    display: flex;

    flex-direction: column;

    align-items: center;

}

.fab-menu{

    position:absolute;

    right:8px;

    bottom:72px;

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:12px;

    opacity:0;

    visibility:hidden;

    transform:translateY(12px);

    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s;

}

.fab-container.open .fab-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.fab-container.open .fab-item{

    opacity:1;

    transform:translateY(0) scale(1);

}

.fab-container.open .fab-main{

    transform:scale(1.08);

    box-shadow:
        0 18px 40px rgba(0,0,0,.22);

}

.fab-main{

    width:58px;

    height:58px;

    border:none;

    border-radius:50%;

    background:#ffffff;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:
        0 12px 30px rgba(0,0,0,.15);

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}

.fab-main:hover{

    transform:translateY(-3px);

    box-shadow:
        0 16px 36px rgba(0,0,0,.20);

}

.fab-icon{

    width:28px;

    height:28px;

    fill:var(--primary-color);

}

.fab-item{

    width:48px;

    height:48px;

    border-radius:50%;

    background:#ffffff;

    color:var(--primary-color);

    text-decoration:none;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:
        0 8px 24px rgba(0,0,0,.12);

    transition:
        transform .25s ease,
        opacity .25s ease,
        box-shadow .25s ease;

    opacity:0;

    transform:translateY(14px) scale(.92);

}

.fab-item:nth-child(1){

    transition-delay:.04s;

}

.fab-item:nth-child(2){

    transition-delay:.08s;

}

.fab-item:nth-child(3){

    transition-delay:.12s;

}

.fab-item:hover{

    transform:translateY(-2px);

    box-shadow:
        0 12px 28px rgba(0,0,0,.18);

}

.fab-social-icon{

    width:22px;

    height:22px;

    fill:currentColor;

}

@media (max-width:768px){

    .fab-container{

        right:20px;

        bottom:20px;

    }

}

/* =====================================
   Legal Pages
===================================== */

.legal-header{

    position:sticky;

    top:0;

    z-index:1000;

    background:#FFFFFF;

    border-bottom:1px solid rgba(0,0,0,.08);

    backdrop-filter:blur(12px);

}

.legal-header .container{

    max-width:900px;

    margin:0 auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    min-height:90px;

}

.legal-logo img{

    height:48px;

    display:block;

}

.legal-back{

    font-size:.95rem;

    font-weight:600;

    color:#101010;

    text-decoration:none;

    transition:.25s;

}

.legal-back:hover{

    color:#43C6B8;

}

.legal-footer{

    margin-top:0px;

    padding:40px 0;

    border-top:1px solid rgba(0,0,0,.08);

    background:#FFFFFF;

}

.legal-footer-content{

    max-width:900px;

    margin:0 auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    flex-wrap:wrap;

}

.legal-footer p{

    margin:0;

    color:#666;

    font-size:.9rem;

}

.legal-links{

    display:flex;

    align-items:center;

    gap:14px;

    flex-wrap:wrap;

}

.legal-links a{

    color:#666;

    text-decoration:none;

    transition:.25s;

}

.legal-links a:hover{

    color:#43C6B8;

}

.legal-links span{

    color:#CCC;

}

@media (max-width:768px){

    .legal-header .container{

        min-height:75px;

    }

    .legal-logo img{

        height:40px;

    }

    .legal-footer-content{

        flex-direction:column;

        text-align:center;

    }

    .legal-links{

        justify-content:center;

    }

}


/* =====================================
   Form Consent
===================================== */

.form-consent{

    display:flex;

    align-items:flex-start;

    gap:12px;

    margin-top:20px;

}

.form-consent input[type="checkbox"]{

    margin-top:4px;

    flex-shrink:0;

    width:18px;

    height:18px;

    accent-color:var(--primary-color);

}

.form-consent label{

    margin:0;

    font-size:.95rem;

    line-height:1.6;

    color:var(--text-color);

}

.form-consent a{

    color:var(--primary-color);

    font-weight:600;

    text-decoration:none;

}

.form-consent a:hover{

    text-decoration:underline;

}


/* ==========================
   RESPONSIVE
========================== */

@media(max-width:992px){

    .services-grid{

        grid-template-columns:1fr;

    }

    .process-grid{

        grid-template-columns:1fr;

        gap:20px;

    }

}

@media(max-width:768px){

    .services{

        padding:100px 0;

    }

    .process{

        padding:100px 0;

    }

    .services-grid{

        grid-template-columns:1fr;

    }

    .service-overlay{

        transform:translateY(125px);

    }

    .service-card.active .service-overlay{

        transform:translateY(0);

    }

    .service-card.active .service-overlay p{

        opacity:1;

        transform:translateY(0);

    }

    .service-overlay p{

        min-height:120px;

    }


}

@media(max-width:768px){

    .footer{

        padding-top:30px;

    }

    .footer-grid{

        grid-template-columns:1fr;

        gap:30px;

        text-align:center;

    }

    .footer-brand{

        flex-direction:column;

        gap:20px;

    }

    .footer-logo{

        height:75px;

    }

    .footer-services ul{

        columns:1;

    }

}

@media(max-width:768px){

    .experience-card-content{

        flex-direction:column;

        text-align:center;

    }

    .experience-image{

        width:90px;

        height:90px;

    }

}

@media(max-width:768px){

    .quote-benefits{

        flex-direction:column;

        align-items:flex-start;

        gap:12px;

        margin-top:20px;

    }

    .faq-question{

    padding-right:80px;

    }

    .faq-question::after{

    right:20px;

    }

}


/* ANIMATIONS */

@keyframes heroZoom{

    from{

        transform:scale(1.02);

    }

    to{

        transform:scale(1.06);

    }

}

@keyframes bounce{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(10px);

    }

}

/* MOBILE */

@media(max-width:768px){

    .nav{

        display:none;

    }

    .btn-header{

        display:none;

    }

    .hero-logo{

        height:90px;

    }

    .hero p{

        font-size:1.1rem;

    }

    .header .container{

    display:flex;

    justify-content:center;

    align-items:center;

    }

    .hero{
        padding-top:0;
    }

    .logo img{

    height:44px;

    width:auto;

    }

    .logo{

    opacity:0;

    visibility:hidden;

    transition:opacity .3s ease;

}

}

@media(max-width:768px){

    .experience{

        padding:100px 0;

    }

    .experience-grid{

        grid-template-columns:1fr;

    }

    .experience-header h2{

        font-size:2.5rem;

    }

    .areas{

    padding:100px 0;

    }

    .area-chip{

    width:100%;

    text-align:center;

    }

}

@media(max-width:992px){

    .coverage-grid{

        grid-template-columns:1fr;

    }

    .coverage-content{

        max-width:100%;

        text-align:center;

    }

    .coverage-features{

        display:inline-block;

        text-align:left;

    }

}

@media(max-width:768px){

    .coverage{

        padding:90px 0;

    }

    .coverage-content h2{

        font-size:2.6rem;

    }

    .coverage-cities{

        gap:12px;

    }

    .coverage-cities span{

        font-size:.9rem;

        padding:10px 18px;

    }

}


@media(max-width:768px){

    .contact{

        padding:10px 0;

    }

    .contact-card{

        padding:35px;

    }

    .contact-benefits{

        grid-template-columns:1fr;

    }

    .contact-btn{


        font-size:1rem;

        justify-content:center;

    }
}