/*==================================================
  ALWAYS AFFORDABLE HOOD CLEANING
  Main Stylesheet
==================================================*/

/*==================================================
  RESET
==================================================*/

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    color:#253746;
    background:#ffffff;
    line-height:1.7;
    font-size:16px;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    color:inherit;
    text-decoration:none;
}

ul{
    list-style:none;
}

button,
input,
textarea,
select{
    font:inherit;
}

/*==================================================
  VARIABLES
==================================================*/

:root{

    --navy:#082A47;
    --blue:#0F5FAF;
    --orange:#F26522;
    --orange-dark:#D94A16;

    --white:#ffffff;
    --light:#f6f8fb;
    --gray:#7b8794;
    --text:#243746;

    --container:1240px;

    --radius-sm:10px;
    --radius:18px;
    --radius-lg:28px;

    --shadow-sm:
        0 4px 12px rgba(0,0,0,.08);

    --shadow:
        0 10px 30px rgba(0,0,0,.10);

    --shadow-lg:
        0 20px 60px rgba(0,0,0,.15);

    --transition:.30s ease;

}

/*==================================================
  TYPOGRAPHY
==================================================*/

h1,
h2,
h3,
h4{
    font-family:'Poppins',sans-serif;
    font-weight:700;
    color:var(--navy);
    line-height:1.15;
}

h1{
    font-size:clamp(2.8rem,5vw,4.5rem);
    margin-bottom:24px;
}

h2{
    font-size:clamp(2rem,4vw,3rem);
    margin-bottom:20px;
}

h3{
    font-size:1.5rem;
    margin-bottom:16px;
}

p{
    margin-bottom:18px;
    color:var(--text);
}

section{
    padding:90px 0;
}

.container{
    width:min(92%,var(--container));
    margin:auto;
}

.text-center{
    text-align:center;
}

.text-light h1,
.text-light h2,
.text-light h3,
.text-light p{
    color:white;
}

/*==================================================
  BUTTONS
==================================================*/

.btn{

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

    padding:16px 34px;

    border-radius:999px;

    font-weight:700;

    transition:var(--transition);

    cursor:pointer;

}

.btn-primary{

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

}

.btn-primary:hover{

    background:var(--orange-dark);

    transform:translateY(-3px);

    box-shadow:var(--shadow);

}

.btn-outline{

    border:2px solid white;

    color:white;

}

.btn-outline:hover{

    background:white;

    color:var(--navy);

}

.btn-small{

    padding:12px 24px;

    font-size:.95rem;

}

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

.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:white;
    box-shadow:0 2px 12px rgba(0,0,0,.06);
}

.top-trust-bar{
    background:var(--navy);
    color:white;
    font-size:.92rem;
    font-weight:700;
}

.trust-bar-inner{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:34px;
    padding:8px 0;
    flex-wrap:wrap;
}

.main-header{
    background:rgba(255,255,255,.94);
    backdrop-filter:blur(14px);
    transition:var(--transition);
}

.site-header.is-scrolled .main-header{
    box-shadow:0 8px 24px rgba(0,0,0,.08);
}

.header-inner{
    min-height:86px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
    min-width:max-content;
}

.brand-logo{
    width:64px;
    height:auto;
}

.brand-text{
    display:flex;
    flex-direction:column;
    line-height:1.1;
}

.brand-text strong{
    font-family:'Poppins',sans-serif;
    font-size:1.15rem;
    color:var(--navy);
}

.brand-text small{
    font-weight:800;
    color:var(--orange);
    letter-spacing:.02em;
}

.site-nav{
    display:flex;
    align-items:center;
    gap:28px;
    font-weight:700;
    color:var(--navy);
}

.site-nav a{
    position:relative;
    transition:var(--transition);
}

.site-nav a:hover{
    color:var(--orange);
}

.header-actions{
    display:flex;
    align-items:center;
    gap:14px;
    min-width:max-content;
}

.header-phone{
    font-weight:800;
    color:var(--navy);
}

.header-phone:hover{
    color:var(--orange);
}

.nav-toggle{
    display:none;
    width:44px;
    height:44px;
    border:none;
    background:var(--navy);
    border-radius:12px;
    cursor:pointer;
    padding:10px;
}

.nav-toggle span{
    display:block;
    width:100%;
    height:3px;
    background:white;
    border-radius:999px;
    margin:5px 0;
    transition:var(--transition);
}

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

.nav-toggle.is-active span:nth-child(2){
    opacity:0;
}

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

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

@media (max-width: 980px){

    .top-trust-bar{
        font-size:.82rem;
    }

    .trust-bar-inner{
        gap:14px;
        padding:7px 0;
    }

    .header-inner{
        min-height:76px;
    }

    .brand-logo{
        width:54px;
    }

    .brand-text strong{
        font-size:1rem;
    }

    .site-nav{
        position:absolute;
        top:100%;
        left:0;
        right:0;
        background:white;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        padding:18px 5%;
        box-shadow:0 18px 35px rgba(0,0,0,.12);
        transform:translateY(-12px);
        opacity:0;
        visibility:hidden;
        transition:var(--transition);
    }

    .site-nav.is-open{
        transform:translateY(0);
        opacity:1;
        visibility:visible;
    }

    .site-nav a{
        width:100%;
        padding:14px 0;
        border-bottom:1px solid rgba(8,42,71,.08);
    }

    .header-actions{
        display:none;
    }

    .nav-toggle{
        display:block;
    }
}

@media (max-width: 560px){

    .top-trust-bar{
        display:none;
    }

    .brand-text strong{
        font-size:.95rem;
    }

    .brand-text small{
        font-size:.78rem;
    }
}

/*==================================================
  HERO
==================================================*/

.hero{
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at 80% 20%, rgba(242,101,34,.22), transparent 34%),
        linear-gradient(135deg, #082A47 0%, #0F5FAF 100%);
    color:white;
    padding:110px 0 95px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    align-items:center;
    gap:60px;
}

.hero-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.22);
    color:white;
    padding:8px 16px;
    border-radius:999px;
    font-weight:800;
    margin-bottom:22px;
}

.hero h1{
    color:white;
}

.hero p{
    color:rgba(255,255,255,.9);
    font-size:1.18rem;
    max-width:680px;
}

.hero-actions{
    display:flex;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
    margin-top:30px;
}

.hero-points{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:28px;
    color:white;
    font-weight:800;
}

.hero-points span{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.18);
    padding:8px 14px;
    border-radius:999px;
}

.hero-visual{
    position:relative;
    display:flex;
    justify-content:center;
}

.hero-mascot-card{
    background:white;
    border-radius:var(--radius-lg);
    padding:28px;
    box-shadow:var(--shadow-lg);
    transform:rotate(2deg);
}

.hero-mascot-card img{
    width:min(360px, 80vw);
    animation:floatMascot 4s ease-in-out infinite;
}

.hero-bubble{
    position:absolute;
    left:0;
    bottom:35px;
    background:var(--orange);
    color:white;
    font-weight:900;
    padding:14px 18px;
    border-radius:18px 18px 18px 4px;
    box-shadow:var(--shadow);
}

/*==================================================
  SECTION HELPERS
==================================================*/

.section-light{
    background:var(--light);
}

.section-header{
    max-width:760px;
    margin:0 auto 46px;
    text-align:center;
}

.section-header p{
    font-size:1.08rem;
}

/*==================================================
  FEATURE CARDS
==================================================*/

.feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.feature-card{
    background:white;
    padding:30px;
    border-radius:var(--radius);
    box-shadow:var(--shadow-sm);
    transition:var(--transition);
}

.feature-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow);
}

.feature-icon{
    width:54px;
    height:54px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(242,101,34,.12);
    color:var(--orange);
    border-radius:16px;
    font-size:1.5rem;
    margin-bottom:18px;
}

.feature-card p{
    margin-bottom:0;
}

/*==================================================
  RESPONSIVE HERO + CARDS
==================================================*/

@media (max-width: 980px){

    .hero{
        padding:80px 0;
    }

    .hero-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero p{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-actions,
    .hero-points{
        justify-content:center;
    }

    .feature-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width: 620px){

    section{
        padding:70px 0;
    }

    .hero{
        padding:70px 0;
    }

    .hero-actions{
        flex-direction:column;
        align-items:stretch;
    }

    .hero-actions .btn{
        width:100%;
    }

    .hero-bubble{
        position:static;
        margin-top:18px;
        border-radius:18px;
    }

    .feature-grid{
        grid-template-columns:1fr;
    }
}

/*==================================================
  ANIMATIONS
==================================================*/

@keyframes floatMascot{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
}

/*==================================================
  FORMS
==================================================*/

.quote-form{
    max-width:900px;
    margin:0 auto;
    background:white;
    padding:36px;
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow);
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.quote-form label{
    display:flex;
    flex-direction:column;
    gap:8px;
    font-weight:800;
    color:var(--navy);
}

.quote-form input,
.quote-form select,
.quote-form textarea{
    width:100%;
    border:1px solid rgba(8,42,71,.16);
    border-radius:14px;
    padding:14px 16px;
    background:var(--light);
    color:var(--text);
    outline:none;
    transition:var(--transition);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus{
    border-color:var(--orange);
    box-shadow:0 0 0 4px rgba(242,101,34,.14);
    background:white;
}

.quote-form .full,
.quote-form button{
    grid-column:1 / -1;
}

.quote-form button{
    border:none;
}

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

.site-footer{
    background:var(--navy);
    color:white;
    padding-top:70px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap:38px;
    padding-bottom:50px;
}

.footer-brand p,
.footer-bottom p{
    color:rgba(255,255,255,.78);
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
}

.footer-logo img{
    width:70px;
}

.footer-logo span{
    display:flex;
    flex-direction:column;
    line-height:1.1;
}

.footer-logo strong{
    font-family:'Poppins',sans-serif;
    color:white;
}

.footer-logo small{
    color:var(--orange);
    font-weight:900;
}

.footer-phone{
    display:inline-block;
    margin-top:8px;
    color:white;
    font-size:1.25rem;
    font-weight:900;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.footer-links h3{
    color:white;
    font-size:1.1rem;
    margin-bottom:8px;
}

.footer-links a{
    color:rgba(255,255,255,.78);
    transition:var(--transition);
}

.footer-links a:hover{
    color:var(--orange);
    transform:translateX(4px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);
    padding:20px 0;
}

.footer-bottom-inner{
    display:flex;
    justify-content:space-between;
    gap:18px;
    flex-wrap:wrap;
}

/*==================================================
  RESPONSIVE FORMS + FOOTER
==================================================*/

@media (max-width: 900px){
    .footer-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media (max-width: 620px){
    .quote-form{
        grid-template-columns:1fr;
        padding:24px;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .footer-bottom-inner{
        flex-direction:column;
    }
}

/*==================================================
  SERVICE CARDS
==================================================*/

.service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.service-card{
    position:relative;
    overflow:hidden;
    background:white;
    border-radius:var(--radius);
    padding:34px 28px;
    box-shadow:var(--shadow-sm);
    transition:var(--transition);
    border:1px solid rgba(8,42,71,.08);
}

.service-card:hover{
    transform:translateY(-7px);
    box-shadow:var(--shadow);
}

.service-accent{
    width:54px;
    height:6px;
    background:var(--orange);
    border-radius:999px;
    margin-bottom:22px;
}

.service-card h3{
    margin-bottom:14px;
}

.service-card p{
    color:var(--gray);
}

.service-card a{
    display:inline-flex;
    margin-top:8px;
    color:var(--orange);
    font-weight:900;
}

.service-card a:hover{
    color:var(--orange-dark);
}

/*==================================================
  RESPONSIVE SERVICE CARDS
==================================================*/

@media (max-width: 980px){
    .service-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width: 620px){
    .service-grid{
        grid-template-columns:1fr;
    }
}

/*==================================================
  OUR PROMISE
==================================================*/

.promise-section{
    background:#ffffff;
}

.promise-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:60px;
    align-items:center;
}

.promise-content p{
    font-size:1.08rem;
    margin-bottom:22px;
}

.promise-card{

    background:linear-gradient(145deg,var(--navy),var(--blue));

    color:white;

    padding:40px;

    border-radius:var(--radius-lg);

    text-align:center;

    box-shadow:var(--shadow-lg);

}

.promise-card img{

    width:220px;

    margin:0 auto 24px;

}

.promise-card h3{

    color:white;

    margin-bottom:16px;

}

.promise-card p{

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

    margin-bottom:28px;

}

.promise-phone{

    display:block;

    margin-top:22px;

    font-size:1.4rem;

    font-weight:800;

    color:white;

}

.promise-phone:hover{

    color:var(--orange);

}

@media (max-width:900px){

    .promise-grid{

        grid-template-columns:1fr;

    }

}

/*==================================================
  AREAS PREVIEW
==================================================*/

.areas-preview{
    background:var(--light);
    text-align:center;
}

.areas-preview .section-header{
    margin:0 auto 42px;
    max-width:820px;
}

.city-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:16px;
    max-width:1050px;
    margin:0 auto;
}

.city-grid a{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:155px;
    min-height:66px;
    background:white;
    color:var(--navy);
    padding:16px 22px;
    border-radius:18px;
    font-weight:900;
    text-align:center;
    box-shadow:var(--shadow-sm);
    border:1px solid rgba(8,42,71,.08);
    transition:var(--transition);
}

.city-grid a:hover{
    background:var(--orange);
    color:white;
    transform:translateY(-5px);
    box-shadow:var(--shadow);
}

@media (max-width:520px){
    .city-grid a{
        width:100%;
    }
}

/*==================================================
  PAGE HERO
==================================================*/

.page-hero{

    background:
        radial-gradient(circle at top right,
        rgba(242,101,34,.18),
        transparent 34%),
        linear-gradient(135deg,var(--navy),var(--blue));

    color:white;

    padding:120px 0 90px;

    text-align:center;

}

.page-kicker{

    display:inline-block;

    color:#ffd4c2;

    text-transform:uppercase;

    letter-spacing:.12em;

    font-weight:800;

    margin-bottom:18px;

}

.page-hero h1{

    color:white;

    margin-bottom:20px;

}

.page-hero p{

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

    max-width:760px;

    margin:auto;

    font-size:1.15rem;

}