/* -----------------------------------
   1. RESET
----------------------------------- */

*, *:before, *:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
    /* Kills mobile tap-flash highlight completely across all engines */
    -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
    -webkit-tap-highlight-color: transparent !important;
}

html {
    scroll-behavior: smooth;
}

/* -----------------------------------
   2. VARIABLES
----------------------------------- */

:root {
    --green: #0d9f49;
    --green-dark: #097334;
    --yellow: #FBC02D;
    --orange: #B45309;
    --white: #ffffff;

    --text: #1F2937;
    --text-light: #808A98;
    --text-dark: #111827;
    --text-main: #1F2937;
    --text-muted: #4b5563;
    --gray-light: #e5e7eb;  

    --border: #e7e7eb;
    --content-width: 1100px;
    --shadow: 0 10px 28px rgba(0,0,0,0.06);
}

/* -----------------------------------
   3. GLOBALS
----------------------------------- */

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: var(--text);
    line-height: 1.6;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#footer {
    margin-top: auto;
}

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

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

ul {
    padding-left: 22px;
}

li {
    margin-bottom: 10px;
}

/* -----------------------------------
   4. FORM ELEMENTS & INPUTS
----------------------------------- */

form {
    margin: 0;
    padding: 0;
    width: 100%;
    -webkit-user-select: none;
    user-select: none; 
}

input {
    display: block;
    width: 100%;
    height: 48px;
    padding: 0 16px;
    margin: 0;
    
    /* Typography Matrix Stability */
    font-size: 18px; /* Prevents iOS mobile layout viewport zoom shifting */
    line-height: normal;
    color: #333333;
    
    /* Permanent Core Structure */
    background-color: #ffffff !important;
    border: 1px solid #cccccc !important; /* Your exact fixed 1px border */
    border-radius: 4px;
    
    /* Native Interface Stripping */
    outline: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    
    /* Prevent all focus animations, transitions, or layout delays */
    transition: none !important;
    animation: none !important;
}

/* Strict State Intercept Matrix */
input:focus, 
input:active,
input:hover {
    outline: 0 !important;
    outline: none !important;
    box-shadow: none !important;          /* Kills native OS glow effects */
    background-color: #ffffff !important;
}

/* Google Autocomplete Container Adjustments */
.pac-container {
    /* Explicit position is required so the browser actually respects the depth layer */
    position: absolute !important; 
    z-index: 999999 !important;
}

/* Zero-BS Button Engine Reset */
button {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    outline: none !important;
    
    /* Typography inheritance prevents native OS systems overriding text layouts */
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    text-align: center;
    color: inherit;
    cursor: pointer;
    
    /* Native Interface Stripping */
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    
    /* Kills mobile tap-flash highlight completely on click actions */
    -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
    -webkit-tap-highlight-color: transparent !important;
    
    /* Transition Killing: Ensures child classes explicitly declare motion states */
    transition: none !important;
    animation: none !important;
}


/* -----------------------------------
   4. UTILITIES & TYPOGRAPHY
----------------------------------- */

.section-wrap {
    width: 100%;
    /* Standardized uniform vertical space */
}

.section-wrap.is-hub-page {
    /* Takes 100% of screen height and subtracts roughly 180px for header + footer */
    min-height: calc(100vh - 180px); 
    box-sizing: border-box;
}

.section-inner {
    width: min(calc(100% - 40px), 1100px); /* Standardized global maximum desktop layout width */
    margin: auto;
    padding: 80px 0 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-inner-hero{
    background:url('/img/ezmowBG.svg') center center no-repeat;
    background-size:100% auto;
}

.bg-light {
    background-color: #f3f4f6 !important;
}

.bg-gray {
    background-color: #d1d5db !important;
}

.border-top {
     border-top: 1px solid #cbcbcb !important;
}

.border-bottom {
    border-bottom: 1px solid #cbcbcb !important;
}

h1,
h2,
h3{
    color:#111827;
}

h1{
    width:100%;
    max-width:800px;
    font-size:clamp(2.2rem,6vw,3.2rem);
    line-height: 1.2;
    margin-bottom: 15px;
}

h2{
    font-size:clamp(1.8rem,3vw,2.3rem);
    font-weight:600;
    line-height: 1.2;
    margin-bottom: 20px;
}

h3{
    font-size:clamp(1.35rem,2vw,1.40rem);
    font-weight:600;
    line-height: 1.3;
}

.h1p {
    font-size: clamp(1.2rem, 2.5vw, 1.35rem);
    font-weight: 400;
    letter-spacing: 0.04rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.h2p {
    font-size: clamp(1.2rem, 2.25vw, 1.3rem);
    font-weight: 500;
    letter-spacing: 0.03rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.h2p.narrative {
    font-size: clamp(1.2rem, 2.25vw, 1.25rem);
    line-height: 2;
}

.h3p {
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.02rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.stdr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none; /* Removes anchor underline */
    
    /* Hero Dimensions */
    padding: 10px 25px; 
    
    border-radius: 40px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 800;
    
    text-shadow: 0px 1px 2px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
}

.stdr-btn svg,
.stdr-btn i{
    display:flex;
    align-items:center;
    margin-top:1px;
}

.stdr-btn:hover{
    background:#F9A825;
    transform:scale(1.02);
}

.stdr-btn:active{
    transform:translateY(2px);
    box-shadow:none;
}


/* -----------------------------------
   5. HEADER
----------------------------------- */

.site-header{
    position:sticky;
    top:0;
    width:100%;
    height:80px;
    background:#fff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px 2px rgba(0, 0, 0, 0.07);
    z-index:1000;
}

.header-inner{
    width:min(
        calc(100% - 20px),
        1100px
    );
    height:80px;
    margin:auto;

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


/* -----------------------------------
   HEADER LOGO
----------------------------------- */

.header-logo,
.logo-wrap{
    display:flex;
    align-items:center;
}

.header-logo{
    height:100%;
}

.logo{
    width:auto;
    height:42px;
}


/* -----------------------------------
   HEADER NAVIGATION
----------------------------------- */

.main-nav{
    display:flex;
    align-items:center;
    gap:20px;
}

.main-nav a{
    color:#222;
    font-size:0.95rem;
    font-weight:600;
}


/* -----------------------------------
   HEADER CTA
----------------------------------- */

.nav-cta{
    display:inline-block;
    box-sizing:border-box;

    padding:10px 18px;

    background:var(--green);
    color:#fff !important;

    border-radius:50px;

    font-weight:700;

    transition:all 0.2s ease;
}


/* -----------------------------------
   6. HERO
----------------------------------- */

.hero-text {
    width: 100%;
    max-width: 540px;
    margin-bottom: 40px;
}

.hero-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.hero-media {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-image{
    width:25%;
    max-width:160px;
    height:auto;
    aspect-ratio:1 / 1;
    object-fit:cover;
    object-position:center;
    border-radius:24px;
}



/* -----------------------------------
   7. QUOTE TRIGGER
----------------------------------- */


.qteTrggr {
    width: 100%;
    max-width: 580px;
    padding: 36px;
    background: #ffffff;
    border: 1px solid #cbcbcb;
    border-radius: 24px;
    box-shadow:
        0 20px 30px -10px rgba(0, 0, 0, 0.12),
        0 8px 12px -6px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}


/* -----------------------------------
   QUOTE TRIGGER TITLE
----------------------------------- */

.qteTrggrTxt{
    display:block;

    margin-bottom:15px;

    font-size:1.1rem;
    font-weight:800;

    text-transform:uppercase;
    letter-spacing:0.04em;

    color:#2E7D32;
}

/* -----------------------------------
   QUOTE TRIGGER BOX
----------------------------------- */

.qteTrggr-box{
    align-items:center;
    box-sizing:border-box;
    background:#ffffff;
    border:2px solid #FDD835;
    border-radius:50px;
}

.qteTrggr-box:focus-within{
    border-color:#FFC107;
    box-shadow: 0 0 0 4px rgba(255,193,7,0.2);
}

#qteTrggr-form{
    position: relative;
    width:100%;
    display:flex;
}

.qteTrggrField{
    position:relative;
    flex-grow:1;
}

.qteTrggrInput-cont{
    position: relative !important;
    display: block;
    width: 100%;
    height: 54px;
    border-radius: 50px;
    background-color: #ffffff;
}

.qteLoc-ic{
    position: absolute;
    display:block;
    top: 18px;
    left: 15px;
    width:18px;
    height:18px;
    color:#2E7D32;
}

.qteTrggrInput{
    width: 100%;
    height: 100%;
    padding: 0 40px;
    background:transparent;
    border:none !important;
    border-radius: 50px;
}

@media (min-width:769px){
    .pac-container {
        min-width: 320px;
        padding: 0 12px;
    }
}

#qteClear-btn{
    position: absolute;
    display:none;
    top: 18px;
    right: 12px;
    margin:0;
    padding:0;
    border:none;
    background:transparent;
    color:#9CA3AF;
    cursor:pointer;
    flex-shrink:0;
    align-items:center;
    justify-content:center; 
}

#qteClear-btn:hover{
    color:#374151;
}

#qteClear-btn svg{
    display:block;
}

.err-msg {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    width: 100%;
    background: #f0c2c2;
    color: #CC3333;
    font-size: 15px;
    line-height: 18px;
    transition: max-height 0.5s ease-out, opacity 0.4s ease-out, padding 0.5s ease-out, margin 0.5s ease-out;
}

.err-msg.is-visible {
    max-height: 80px; 
    opacity: 1;
    padding: 5px;
    margin: 10px 0;
}


#qteTrggr-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    height:54px;
    padding:0 15px;
    background:#FBC02D;
    color:#FFFFFF;
    border:none;
    border-radius:40px;
    cursor:pointer;
    font-size:1.1rem;
    font-weight:700;
    text-shadow: 0px 1px 2px rgba(0,0,0,0.15);
    transition:all 0.2s ease;
}

#qteTrggr-btn svg,
#qteTrggr-btn i{
    display:flex;
    align-items:center;
    margin-top:1px;
}

#qteTrggr-btn:hover{
    background:#F9A825;
    transform:scale(1.02);
}

#qteTrggr-btn:active{
    transform:translateY(2px);
    box-shadow:none;
}



/* =========================================================================
    8. HOW IT WORKS SECTION
========================================================================= */

.hiw-header {
    text-align: center;
    margin-bottom: 64px;
}

.hiw-header h2 {
    margin-bottom: 16px;
}

.hiw-header p {
    max-width: 540px;
    margin: auto;
}

/* --- THE STEP GRID --- */
.hiw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.hiw-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
}

/* --- BOX CONTAINING THE NUMBER --- */
.hiw-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #0d9f49;
    color: #fff;                   
    font-size: 1.4rem;                 
    font-weight: 500;
    border-radius: 24px;
    margin-bottom: 20px;               
}

.hiw-card h3 {
    margin-bottom: 12px;
}

.hiw-card p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.6;
    font-weight: 500;
}


/* -----------------------------------
   11. NARRATIVE
----------------------------------- */

#section-about p {

    line-height: 2;

}

/* -----------------------------------
   SPECIAL DEAL BOX STYLES
----------------------------------- */

/* The main container wrapping your code snippet */
.offerBox-deal{
    position:relative;
    margin-top:0;
    padding:52px 60px 46px;
    text-align:center;

    border:1px solid #ced4da;
    border-radius:16px;

    box-shadow:
        0 8px 24px rgba(0,0,0,.06), 
        0 2px 6px rgba(0,0,0,.04);
}

/* Special Deal Ribbon */
.offerRibbon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 4px 12px;
    margin-bottom: 20px;
    border-bottom: 2px solid #0d9f49; /* Bold brand green */
    background-color: var(--green); /* White font */
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -0.075rem;
    text-transform: uppercase;
}

.offerBox-deal h3 {
    margin: 0 0 14px 0;
    font-size: clamp(1.5rem, 5vw, 2rem);
    color: var(--green);
    font-weight: 500;
}

.offerBox-deal p {
    color: var(--text-light);
}    



/* -----------------------------------
   11. WHY
----------------------------------- */


.whyGrid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:2rem;
}

.whyCard{
    text-align:center;
}

.whyIcon{
    width:8rem;
    height:8rem;

    margin:0 auto 1rem;

    background:#28a745;

    clip-path:polygon(
        5% 25%,
        50% 1%,
        95% 25%,
        95% 75%,
        50% 99%,
        5% 75%
    );

    border-radius: 50%;

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

.whyIcon-inner{
    width:calc(100% - 4px);
    height:calc(100% - 4px);

    background:#fff;

    clip-path:inherit;

    border-radius: inherit;

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

    color:#28a745;
}

.whyIcon-inner svg{
    width: 3rem;
    height: 3rem;
}

.whyCard h3{
    margin:0 0 .75rem;
}

.whyCard p{
    margin:0;
}

@media (max-width:900px){

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

}


/* -----------------------------------
   11. LOCATION LINKS
----------------------------------- */

.locationGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px 32px;
    margin-top: 20px;
    width: 100%;
}

.locationGrid a {
    display: block;
    width: 100%;
    text-align: left;
    color: #6b7280;
    text-decoration: none;
    transition: color .2s ease;
}

.locationGrid a:hover {
    color: var(--green);
}

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

#section-locs .section-inner {
    text-align: left;
}

/* -----------------------------------
   11. STATE HUB
----------------------------------- */


/* Container layout — Default 4 Columns for Desktop */
.city-directory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
    width: 100%; /* Spreads the entire grid wrapper to fill the container edge-to-edge */
}

/* Individual interactive card styling (Made Bigger) */
.city-grid-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 64px; /* Added vertical weight so cards look solid and balanced */
    padding: 18px 24px; /* Expanded padding for a larger, premium touch target */
    background-color: #ffffff;
    border: 1px solid #ced4da;
    border-radius: 8px;
    text-decoration: none;
    color: #212529;
    font-weight: 600;
    font-size: 1.05rem; /* Slightly larger text to match the larger card footprint */
    transition: all 0.2s ease-in-out;
}

/* Keeps text pushed left and arrow pushed right even in wider containers */
.city-grid-name {
    flex-grow: 1;
    transition: color 0.2s ease;
}

.city-grid-item:hover {
    border-color: #28a745;
    background-color: #f1fdf4;
    transform: translateY(-1px);
}

.city-grid-item:hover .city-grid-name {
    color: #28a745;
}

.city-grid-arrow {
    color: #6c757d;
    font-weight: bold;
    font-size: 1.2rem;
    margin-left: 12px;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.city-grid-item:hover .city-grid-arrow {
    color: #28a745;
    transform: translateX(3px);
}


/* RESPONSIVE BREAKPOINT
   Snaps immediately from a 4-column display to a 2-column display on mobile
*/
@media (max-width: 768px) {
    .city-directory-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .city-grid-item {
        min-height: 58px; /* Slightly adjusted scale for mobile screens */
        padding: 14px 18px;
        font-size: 0.95rem; 
    }
}


/* -----------------------------------
   11. FOOTER
----------------------------------- */

#footer-cta{
    background-color: var(--yellow);
    color: #fff;
}

#footer{
    display:flex;
    align-items:center;
    background-color: var(--green);
    color: #fff;
}


#footer-inner{
    padding: 30px 0 50px 0;
    font-size: 18px !important;
}


.notFoundWrap{
    min-height:50vh;

    display:flex;
    flex-direction:column;

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

    text-align:center;

    width:100%;
    max-width:600px;

    margin:40px auto;

    padding:48px 40px;

    background:#fff;

    border:1px solid #e5e7eb;
    border-radius:24px;

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

.notFoundWrap h1{
    margin:16px 0;
    font-size:clamp(1.5rem, 1.2rem + 1vw, 2rem);
    font-weight:700;
    line-height:1.2;
    text-align: center;;
}

.notFoundWrap p{
    margin:0 0 25px 0;

    font-size:17px;
    line-height:1.7;

    color:#6b7280;
}

.notFoundBtn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:160px;
    max-width:180px;
    height:52px;

    padding:0 24px;

    border-radius:8px;

    background:#28a745;
    color:#fff;

    text-decoration:none;
    font-weight:600;

    transition:.2s;
}

.notFoundBtn:hover{
    transform:translateY(-1px);
}

.notFoundBtn-alt{
    background:#f3f4f6;
    color:#111827;
}




/* -----------------------------------
   12. RESPONSIVE
----------------------------------- */

@media (max-width:768px){


    .section-inner {
        padding: 60px 0;
    }    

    .section-inner-hero{
        background-size:140% auto;
    }    

    /* HEADER */

    .site-header{
        height:60px;
    }

    .header-inner{
        width:min(
            calc(100% - 24px),
            1100px
        );

        height:60px;
    }

    .logo{
        height:34px;
    }

    .main-nav{
        gap:12px;
    }

    .main-nav a{
        font-size:0.9rem;
    }

    .nav-cta{
        padding:8px 12px;
    }

    .hero-image{
        width:34%;
    }

    .hero-main {
        gap: 28px;
    }

    /* TYPOGRAPHY */

    h1{
        max-width:520px;

        line-height:1.15;
        letter-spacing:-0.02em;
    }

    h2{
        font-size:1.6rem;
    }

    /* BUTTONS */

    .btn{
        display:block;
        width:100%;
    }

    /* CARDS */

    .card{
        padding:24px;
    }

    /* QUOTE TRIGGER */

    .qteTrggr {
        max-width: 480px;
        padding: 24px 20px;
        border-radius: 20px;
    }


    .qteTrggr-box{
        min-height:auto;
        padding-left:0;
        background:transparent;
        border:none;
        box-shadow:none;
        overflow:visible;
    }

    .qteTrggr-box:focus-within{
        border-color: transparent;
        box-shadow: none;
    }

    #qteTrggr-form{
        flex-direction:column;
        gap:12px;
    }

    .qteTrggrField{
        width:100%;
    } 

    .qteTrggrInput-cont{
        border:2px solid #FDD835;
        border-radius:50px;
    }

    .qteTrggrInput-cont:focus-within{
        border-color:#FFC107;
        box-shadow: 0 0 0 4px rgba(255,193,7,0.2);
    }  
    
    .qteLoc-ic, #qteClear-btn {
        top: 16px;
    }

    #qteTrggr-btn{
        width:100%;
        padding:0;
        border-radius:50px;
        transform:none !important;
    }



    .hiw-header {
        margin-bottom: 44px;
        text-align: center; /* Ensures text stays perfectly centered on mobile screens */
    }

    .hiw-header p {
        max-width: 540px;
        margin: 0 auto; /* Explicitly keeps block components perfectly aligned in the center */
    }

    .hiw-grid {
        grid-template-columns: 1fr; /* Automatically stacks step cards vertically */
        gap: 40px;
    }

    .hiw-card {
        align-items: flex-start;
    }
    
    .hiw-icon-box {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
        border-radius: 20px;
        margin-bottom: 16px;
    }

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

    .offerBox-deal{
        padding:42px 40px 36px;
    }


    #footer-inner{
        padding: 20px 0 30px 0;
        font-size: 16px !important;
    }

    
    .notFoundWrap{
        min-height:70vh;
        max-width:none;
        margin: auto;
        padding:20px;
        border:none;
        border-radius:0;
        box-shadow:none;
        background:transparent;
    }

    .notFoundWrap h1{
        font-size:28px;
    }

    .notFoundWrap p{
        font-size:16px;
    }

}

