:root {

    /* Brand Colors */
    --primary:#0B1F33;
    --secondary:#163A5F;
    --accent:#4A90A4;

    /* Text */
    --dark:#172033;
    --gray:#64748B;

    /* Backgrounds */
    --light:#F3F7FA;
    --white:#FFFFFF;

    /* Layout */
    --container:1280px;

    /* UI */
    --radius:14px;

    --shadow:
    0 15px 40px rgba(11,31,51,0.12);

}* {

    margin:0;
    padding:0;
    box-sizing:border-box;
    
    }
    
    section {
    margin: 0;
    padding: 0;
}
    
    body {
    
    font-family: Arial, sans-serif;
    
    color:var(--dark);
    background:#c7dfef;
    }
    
    
    
    .container {
    
    width:100%;
    max-width:var(--container);
    
    margin:auto;
    
    padding:0 40px;
    
    }
    
 
    
    /* NAVIGATION */
.services-menu {
    position:relative;
}


.services-button {

    background:none;
    border:none;

    font-size:16px;
    font-weight:500;

    color:var(--dark);

    cursor:pointer;
}


.services-dropdown {

    position:absolute;

    top:35px;
    left:0;

    width:200px;

    background:white;

    border-radius:12px;

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

    padding:10px;

    display:none;

}


.services-dropdown a {

    display:block;

    padding:12px;

    color:var(--dark);

    text-decoration:none;

    border-radius:8px;

}


.services-dropdown a:hover {

    background:#c7dfef;

}


/* show menu */

.services-dropdown.show {
    display:block;
}
    
.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 90px;

    display:flex;
    align-items:center;

    background:#c7dfef;

    z-index:9999;

    box-shadow:0 2px 10px rgba(0,0,0,.05);
}
    
    
    .nav-container {
    
    display:flex;
    
    align-items:center;
    
    justify-content:space-between;
    width:100%;
    
    }

    
    
    .logo {
    
    font-size:26px;
    
    font-weight:700;
    
    color:var(--primary);
    
    }
    
    
    
    nav {
    
    display:flex;
    
    gap:35px;
    
    }
    
    
    nav a {
    
    text-decoration:none;
    
    color:var(--dark);
    
    font-weight:500;
    
    }
    
    
    
    .nav-buttons {
    
    display:flex;
    
    gap:15px;
    
    }
    
    
    
    .quote-button,
    .phone-button {
    
    
    padding:15px 25px;
    
    border-radius:var(--radius);
    
    text-decoration:none;
    
    font-weight:600;
    
    cursor:pointer;
    
    }
    
    
    
.quote-button {

    background:var(--primary);
    color:white;
    transition:0.3s;

}


.quote-button:hover {

    background:var(--secondary);

}
    
    
.phone-button {

    border:2px solid var(--accent);
    color:var(--primary);
    transition:0.3s;

}


.phone-button:hover {

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

}
    
    .logo {

    display:flex;
    flex-direction:column;
    line-height:1;

}


.logo span {

    font-size:28px;
    font-weight:800;
    color:var(--primary);

}


.logo small {

    font-size:12px;
    color:var(--gray);
    letter-spacing:2px;

}/* =========================
   HERO SCROLL AREA
========================= */

.hero-section {
    height: 100vh;
    position: relative;
}

.hero {
    position: sticky;
    top: 0;
    padding-top:90px;
    height:200vh !important;
    width: 100%;
    background:#c7dfef;
    overflow: hidden;
}



/* =========================
   CONTENT
========================= */

.hero-container {

    position: relative;
    display:flex;
    height:100%;
    width:100%;

    max-width:1200px;

    margin:auto;

    padding:0 40px;

}


.hero-content {

    position:relative;

    z-index:10;

    max-width:650px;

    color:white;

    padding-top:20vh;

}


.small-title {

    color:var(--primary);

    font-weight:600;

    margin-bottom:20px;

}


h1 {

    font-size:60px;

    line-height:1.1;

    margin-bottom:25px;

}


.hero-text {

    font-size:20px;

    line-height:1.6;

    color:#f2f2f2;

    margin-bottom:35px;

}


.hero-buttons {

    display:flex;

    gap:20px;

    margin-bottom:40px;

}


.trust-list {

    position:absolute;

    right:-450px;
    top:90%;

    transform:translateY(-50%);

    display:flex;
    flex-direction:column;

    gap:10px;

    color:white;
    font-size:16px;
    font-weight:600;

}
.trust-list span {

    background:rgba(0,0,0,.35);

    padding:12px 20px;

    border-radius:30px;

    backdrop-filter:blur(5px);

}


/* =========================
   IMAGES
========================= */


.hero-image {

    position:absolute;

    inset:0;

    z-index:1;

}


.before-after-container {

    position:absolute;

    inset:0;

    overflow:hidden;

}


.after-image,
.before-image {

    width:100%;

    height:100%;
    display:block;
    object-fit:cover;

}


.before-image-wrapper {
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    overflow:hidden;
    z-index:3;
}

.before-image {
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    max-width:none;

    object-fit:cover;
}
.before-after-container::after {

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

    z-index:2;

    pointer-events:none;

}



.slider-line {

    position:absolute;

    top:0;

    bottom:0;

    width:3px;
  background:black;

    z-index:5;

}



#comparisonSlider {

    display:none;

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

.services-container {
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:60px 40px;

    display:flex;
    flex-direction:column;
    gap:30px;
}


.service-box {

    position:relative;

    height:420px;
    width:100%;

    border-radius:20px;
    overflow:hidden;

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

    text-align:center;

    background-size:cover;
    background-position:center;

    color:white;
}


/* dark overlay */
.service-box::before {

    content:"";

    position:absolute;
    inset:0;

    background:rgba(0,0,0,.45);

}


/* keep text above overlay */

.service-box h2,
.service-box p {

    position:relative;
    z-index:2;

    color:white;

}


.service-box h2 {

    font-size:42px;
    margin-bottom:15px;

}


.service-box p {

    max-width:650px;

    font-size:20px;
    line-height:1.6;

}


/* Service images are injected from client.json by the generator. */
.service-box {
    background-size: cover;
    background-position: center;
}

/* Text */


.service-box h2 {

    font-size:42px;

    margin-bottom:20px;

}



.service-box p {

    max-width:650px;

    font-size:20px;

    line-height:1.6;

}



/* Mobile */


@media(max-width:700px){

    .services-container {

        padding:50px 20px;

    }


    .service-box {

        min-height:350px;

        padding:30px;

    }


    .service-box h2 {

        font-size:32px;

    }


    .service-box p {

        font-size:17px;

    }

}

/* WHY US */
.why-video {
    position:relative;
    height:600px;
    overflow:hidden;
    display:flex;
    align-items:center;
    margin-top: 80px;
}


.why-video-bg {

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    z-index:1;
}


.why-video-overlay {

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

    z-index:2;
}


.why-video-content {

    position:relative;

    z-index:3;

    max-width:1100px;

    margin:auto;

    padding:40px;

    color:white;

    text-align:center;
}


.why-video-content h2 {

    font-size:48px;

    margin-bottom:20px;

}


.why-video-content p {

    font-size:20px;

    line-height:1.6;

}


.why-video-points {

    display:flex;

    justify-content:center;

    gap:40px;

    margin-top:40px;

}
.why-video::after {

    content:"";

    position:absolute;

    bottom:0;
    left:0;

    width:100%;
    height:120px;

    background:linear-gradient(
        transparent,
        #c7dfef
    );

    z-index:3;
}

.why-video-points div {

    max-width:280px;

}

.why-us {

    padding:100px 0;
    background:var(--light);

}



.why-container {

    display:flex;
    align-items:center;
    gap:70px;

}



.why-image {

    width:45%;

}



.why-image img {

    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:20px;

}



.why-content {

    width:55%;

}



.why-content h2 {

    font-size:42px;
    color:var(--primary);
    margin-bottom:25px;

}



.why-content > p {

    color:var(--gray);
    font-size:18px;
    line-height:1.7;
    margin-bottom:35px;

}



.features {

    display:flex;
    flex-direction:column;
    gap:20px;

}



.feature h3 {

    color:var(--primary);
    margin-bottom:8px;

}



.feature p {

    color:var(--gray);

}

.contact {

    padding:100px 0;
    background:var(--light);

}


.contact-header {

    text-align:center;
    margin-bottom:50px;

}


.contact-header h2 {

    font-size:42px;
    color:var(--primary);

}



#contact-form {

    max-width:700px;
    margin:auto;

}



.form-group {

    margin-bottom:20px;

}



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

    width:100%;
    padding:16px;

    border:1px solid #d5dde5;

    border-radius:12px;

    font-size:16px;

} 
/* SERVICE AREA BANNER SECTION */
.service-area-banner {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0F2438 0%, #1a3a56 100%); /* Clean matching corporate gradient */
    color: #c7dfef;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Enhancing the headline text appearance */
.service-area-banner h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto 15px auto;
    letter-spacing: -0.5px;
}

/* Subtext element styling if you want a descriptive line underneath */
.service-area-banner p {
    color: #cbd5e1;
    font-size: 1.2rem;
    max-width: 600px;
    line-height: 1.6;
    margin: 0 auto;
}

/* Subtle graphic accent line below the text */
.service-area-banner::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent, #ff9900); /* Uses your custom accent configuration variable */
    margin-top: 25px;
    border-radius: 2px;
}
.faq {

    padding:100px 0;
    background:#c7dfef;

}


.faq-list {

    max-width:800px;
    margin:auto;

}


.faq-item {

    padding:50px;

    margin-bottom:20px;

    background:#a6c9e0;

    border-radius:var(--radius);

}


.faq-item h3 {

    margin-bottom:10px;

    color:var(--primary);

}


.faq-item p {

    color:var(--gray);

    line-height:1.6;

}

html {
    scroll-behavior: smooth;
}

.form-group textarea {

    height:150px;
    resize:none;

}



#form-message {

    margin-top:20px;
    color:var(--primary);
    font-weight:600;

}
.footer {

    background:#0F2438;
    color:white;

    padding-top:70px;

}



.footer-container {

    display:grid;

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

    gap:40px;

}



.footer-logo {

    color:white;

    margin-bottom:20px;

}



.footer-logo small {

    display:block;

    font-size:13px;

    font-weight:400;

}



.footer-column h3 {

    margin-bottom:20px;

    font-size:20px;

}



.footer-column p {

    color:#cbd5e1;

    line-height:1.7;

}



.footer-column a {

    display:block;

    color:#cbd5e1;

    text-decoration:none;

    margin-bottom:12px;

}



.footer-column a:hover {

    color:white;

}



.footer-bottom {

    margin-top:50px;

    padding:20px 0;

    text-align:center;

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

}



.footer-bottom p {

    color:#cbd5e1;

}
.menu-toggle {

    display:none;

    font-size:30px;

    cursor:pointer;

    color:var(--primary);

}
html,
body {

    overflow-x:hidden;

}
.floating-buttons {

    display:none;

}
/* =========================
   REVIEWS
========================= */

.reviews {

    padding:90px 0;

    background:#c7dfef;

}


.reviews .container {

    text-align:center;

}


.reviews h2 {

    font-size:42px;

    color:var(--primary);

    margin-bottom:20px;

}



.reviews-box {

    max-width:600px;

    margin:40px auto 0;

    padding:45px;

    background:rgb(114, 186, 225);

    border-radius:20px;

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

}



.stars {

    font-size:42px;

    letter-spacing:6px;

    color:#0800fb;

    margin-bottom:20px;

}



.reviews-box h3 {

    font-size:28px;

    color:#0F2438;

    margin-bottom:15px;

}



.reviews-box p {

    color:#555;

    font-size:18px;

    line-height:1.7;

    margin-bottom:30px;

}



/* Google style button */

.reviews-box a {

    display:inline-block;

    padding:14px 30px;

    background:#0F2438;

    color:white;

    border-radius:30px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}


.reviews-box a:hover {

    transform:translateY(-3px);

}
/* FAQ ACCORDION */

.faq-list {
    max-width:900px;
    margin:auto;
}


.faq-item {

    border-bottom:1px solid #ddd;
    padding:20px 0;

}


.faq-question {

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

    background:none;
    border:none;

    font-size:18px;
    font-weight:600;

    cursor:pointer;

    color:var(--dark);

}


.faq-question span {

    font-size:25px;

}


.faq-answer {

    display:none;

    padding-top:15px;

    color:var(--gray);

    line-height:1.6;

}


.faq-item.active .faq-answer {

    display:block;

}


.faq-hidden {

    display:none;

    margin-top:20px;

}


#show-faq {

    display:block;

    margin:40px auto 0;

}


@keyframes popupIn{
    from{
        opacity:0;
        transform:translateY(20px) scale(.95);
    }
    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}

.lead-popup-close{
    position:absolute;
    right:15px;
    top:12px;
    border:none;
    background:none;
    font-size:30px;
    cursor:pointer;
}

.lead-popup-form{
    display:flex;
    flex-direction:column;
    gap:15px;
    margin-top:20px;
}

.lead-popup-form input,
.lead-popup-form textarea{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
    box-sizing:border-box;
}

.lead-popup-form textarea{
    min-height:120px;
    resize:vertical;
}

.before-after-container{
    position:relative;
    width:100%;
    height:100%;
    overflow:hidden;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.before-after-container img{
    width:100%;
    height:100%;
    object-fit:cover;
    user-select:none;
    pointer-events:none;
}

.after-image{
    position:absolute;
    inset:0;
}

.before-image-wrapper{
    position:absolute;
    inset:0;
    width:50%;
    overflow:hidden;
}

.before-image,
.after-image{

    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;
    display: block;
}

.before-image-wrapper{
    z-index:2;
}

.slider-line{
    z-index:3;
}

#comparisonSlider{
    z-index:4;
}
.slider-line{
    position:absolute;
    left:50%;
    top:0;
    width:4px;
    height:100%;
    background:white;
    transform:translateX(-50%);
    pointer-events:none;
}

.slider-handle{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:54px;
    height:54px;
    border-radius:50%;
    background:white;
    color:#0F2438;
    font-size:22px;
    font-weight:bold;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 8px 25px rgba(0,0,0,.25);
}

#comparisonSlider{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    opacity:0;
    cursor:ew-resize;
}

.label-before,
.label-after{
    position:absolute;
    top:20px;
    padding:8px 14px;
    background:rgba(0,0,0,.65);
    color:white;
    border-radius:20px;
    font-weight:600;
    font-size:14px;
}

.label-before{
    left:20px;
}

.label-after{
    right:20px;
}
.lead-popup-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 20px;
}

.lead-popup-overlay.show{
    display: flex;
}

.lead-popup-card{
    width: 100%;
    max-width: 480px;
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 25px 60px rgba(0,0,0,.25);
    position: relative;
    animation: popupIn .3s ease;
}



.footer-logo span {

    color:rgb(90, 156, 255);

    font-size:28px;
    font-weight:800;

}


.footer-logo small {

    color:#cbd5e1;

    font-size:12px;

    letter-spacing:2px;

}

.call-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: .25s;
    z-index: 9999;
}

.call-popup.show {
    opacity: 1;
    visibility: visible;
}

.call-popup-content {
    position: relative;
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    width: min(90%, 400px);
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.call-popup h2 {
    margin-bottom: 10px;
}

.popup-phone {
    margin-top: 20px;
    font-size: 30px;
    font-weight: 700;
    color: #d97706; /* your accent color */
    letter-spacing: 1px;
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 14px;
    border: none;
    background: none;
    font-size: 28px;
    cursor: pointer;
}

.why-image .section-media {
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}

.why-image video.section-media {
    background: #000;
}


/* =========================================================
   LAYOUT RESCUE — GENERIC SERVICE BUSINESS TEMPLATE
   Creates visual rhythm between sections and image cards.
   Keep this block at the END of main.css.
========================================================= */

body {
    background: var(--light);
}

/* Give every major content section a deliberate vertical rhythm. */
.services,
.why-us,
.reviews,
.faq,
.contact {
    position: relative;
}

/* SERVICES */
.services {
    padding: 120px 0 130px;
    background: #c7dfef;
}

.services > .container {
    max-width: 1180px;
}

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

.section-header .small-title {
    margin-bottom: 14px;
}

.section-header h2 {
    margin: 0 0 20px;
    font-size: clamp(38px, 4vw, 54px);
    line-height: 1.08;
    color: var(--primary);
    letter-spacing: -0.025em;
}

.section-header > p:not(.small-title) {
    max-width: 660px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 18px;
    line-height: 1.75;
}

.service-grid {
    width: 100%;
}

.services-container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.service-box {
    min-height: 390px;
    height: auto;
    padding: 70px 72px;
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(11, 31, 51, 0.12);
    isolation: isolate;
}

.service-box::before {
    background: linear-gradient(
        180deg,
        rgba(8, 22, 36, 0.28) 0%,
        rgba(8, 22, 36, 0.62) 100%
    );
}

.service-box h2 {
    max-width: 760px;
    margin: 0 auto 18px;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.service-box p {
    max-width: 690px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    line-height: 1.65;
}

/* The Learn More paragraph is separate from the descriptive paragraph.
   Give it room so the CTA never feels glued to the copy. */
.service-box p + p {
    margin-top: 30px;
}

.service-box .quote-button {
    display: inline-flex;
    min-width: 138px;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

/* WHY US */
.why-us {
    padding: 130px 0;
    background: var(--light);
}

.why-container {
    gap: 88px;
    align-items: center;
}

.why-image {
    width: 48%;
}

.why-content {
    width: 52%;
}

.why-image .section-media,
.why-image img {
    height: 520px;
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(11, 31, 51, 0.13);
}

.why-content .small-title {
    margin-bottom: 14px;
}

.why-content h2 {
    margin-bottom: 24px;
    font-size: clamp(36px, 4vw, 48px);
    line-height: 1.12;
}

.why-content > p {
    margin-bottom: 38px;
    font-size: 18px;
    line-height: 1.75;
}

.features {
    gap: 24px;
}

.feature {
    padding-top: 2px;
}

/* FAQ / REVIEWS / CONTACT */
.reviews,
.faq,
.contact {
    padding: 120px 0;
}

.faq .section-header,
.reviews .section-header {
    margin-bottom: 56px;
}

.faq-list {
    max-width: 860px;
}

.faq-item {
    margin-bottom: 18px;
    border-radius: 18px;
}

.service-area-banner {
    padding: 100px 24px;
}

.contact-header {
    max-width: 720px;
    margin: 0 auto 58px;
}

.contact-header .small-title {
    margin-bottom: 14px;
}

.contact-header h2 {
    margin-bottom: 18px;
    font-size: clamp(38px, 4vw, 50px);
    line-height: 1.12;
}

.contact-header > p {
    color: var(--gray);
    font-size: 18px;
    line-height: 1.7;
}

#contact-form {
    max-width: 760px;
    padding: 38px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(11, 31, 51, 0.10);
}

.form-group {
    margin-bottom: 18px;
}

/* Keep footer visually separated from the form rather than attached to it. */
.footer {
    margin-top: 0;
}



/* =========================================================
   SOURCE-AWARE OPTIONAL SECTIONS
========================================================= */

.process-section,
.project-gallery,
.coverage-section {
    padding: 120px 0;
}

.process-section {
    background: #eef6fb;
}

.process-grid {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.process-card {
    min-height: 260px;
    padding: 42px 36px 38px;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 16px 38px rgba(11, 31, 51, 0.08);
}

.process-number {
    display: block;
    margin-bottom: 34px;
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    color: rgba(15, 36, 56, 0.16);
}

.process-card h3 {
    margin-bottom: 14px;
    font-size: 24px;
    color: var(--primary);
}

.process-card p {
    color: var(--gray);
    line-height: 1.7;
}

.project-gallery {
    background: #fff;
}

.project-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-card {
    height: 330px;
    margin: 0;
    overflow: hidden;
    border-radius: 22px;
    background: #10263a;
    box-shadow: 0 16px 36px rgba(11, 31, 51, 0.11);
}

.project-card img,
.project-card video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.coverage-section {
    background: #0f2438;
    color: #fff;
}

.coverage-layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    align-items: center;
    gap: 72px;
}

.coverage-copy .small-title {
    color: #9ec9e5;
}

.coverage-copy h2 {
    margin: 0 0 22px;
    max-width: 620px;
    font-size: clamp(38px, 4vw, 52px);
    line-height: 1.1;
    color: #fff;
}

.coverage-description {
    max-width: 620px;
    margin-bottom: 30px;
    color: #d3e2ec;
    font-size: 18px;
    line-height: 1.75;
}

.area-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.area-chips span {
    padding: 9px 14px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    color: #fff;
    font-size: 14px;
}

.map-card {
    min-height: 510px;
    overflow: hidden;
    border-radius: 24px;
    background: #dce7ee;
    box-shadow: 0 24px 55px rgba(0,0,0,.28);
}

.map-card iframe {
    width: 100%;
    height: 510px;
    display: block;
    border: 0;
}

.footer-rich {
    grid-template-columns: 1.35fr repeat(3, 1fr);
    align-items: start;
}

.footer-brand-column {
    max-width: 330px;
}

.footer-phone {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 700;
    color: #fff !important;
}

.footer-lower {
    margin-top: 54px;
    padding-top: 28px;
    padding-bottom: 28px;
    border-top: 1px solid rgba(255,255,255,.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer-lower p {
    margin: 0;
    color: #aebfcb;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

.footer-legal-links a {
    color: #aebfcb;
    font-size: 14px;
    text-decoration: none;
}

/* =========================================================
   CONVERSION HERO — GENERIC SERVICE BUSINESS TEMPLATE
   Two-column lead-first homepage hero.
   Uses existing brand variables and generated client media.
========================================================= */

.conversion-hero {
    position: relative;
    min-height: 760px;
    height: auto;
    padding-top: 90px;
    overflow: hidden;
    background: var(--primary);
    isolation: isolate;
}

.conversion-hero-bg,
.conversion-hero-overlay {
    position: absolute;
    inset: 0;
}

.conversion-hero-bg {
    z-index: -3;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.conversion-hero-overlay {
    z-index: -2;
    background:
        linear-gradient(
            90deg,
            rgba(7, 25, 39, .94) 0%,
            rgba(9, 34, 50, .87) 42%,
            rgba(11, 31, 51, .63) 67%,
            rgba(11, 31, 51, .43) 100%
        ),
        linear-gradient(
            180deg,
            rgba(11, 31, 51, .08),
            rgba(11, 31, 51, .35)
        );
}

.conversion-hero-container {
    position: relative;
    z-index: 2;
    min-height: 670px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, .78fr);
    align-items: center;
    gap: 76px;
    padding-top: 58px;
    padding-bottom: 72px;
}

.conversion-hero-copy {
    max-width: 720px;
    color: var(--white);
}

.conversion-eyebrow {
    display: inline-flex;
    width: fit-content;
    margin: 0 0 24px;
    padding: 9px 16px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 999px;
    background: rgba(74, 144, 164, .18);
    backdrop-filter: blur(8px);
    color: #e7f5fa;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
}

.conversion-hero-copy h1 {
    max-width: 700px;
    margin: 0 0 24px;
    color: var(--white);
    font-size: clamp(48px, 5.25vw, 72px);
    line-height: 1.03;
    letter-spacing: -.035em;
}

.conversion-hero-text {
    max-width: 660px;
    margin: 0 0 30px;
    color: rgba(255,255,255,.88);
    font-size: 19px;
    line-height: 1.7;
}

.conversion-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 26px;
    max-width: 650px;
    margin-bottom: 34px;
}

.conversion-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.94);
    font-size: 15px;
    line-height: 1.35;
    font-weight: 650;
}

.conversion-check {
    flex: 0 0 auto;
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    font-size: 14px;
    font-weight: 900;
}

.conversion-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.conversion-hero-actions .quote-button,
.conversion-hero-actions .phone-button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.conversion-hero-actions .quote-button {
    background: var(--accent);
}

.conversion-hero-actions .quote-button:hover {
    background: var(--secondary);
}

.conversion-book-button {
    border-color: rgba(255,255,255,.55);
    color: var(--white);
    background: rgba(255,255,255,.08);
}

.conversion-book-button:hover {
    border-color: var(--accent);
}

.hero-lead-card {
    width: 100%;
    max-width: 500px;
    justify-self: end;
    overflow: hidden;
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 28px 70px rgba(0,0,0,.28);
}

.hero-lead-card-header {
    padding: 28px 30px 24px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--white);
}

.hero-form-kicker {
    margin: 0 0 7px;
    color: rgba(255,255,255,.76);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .11em;
}

.hero-lead-card-header h2 {
    margin: 0 0 7px;
    color: var(--white);
    font-size: 30px;
    line-height: 1.12;
}

.hero-lead-card-header p:last-child {
    margin: 0;
    color: rgba(255,255,255,.88);
    font-size: 14px;
    line-height: 1.55;
}

.hero-lead-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 24px 26px 16px;
}

.hero-form-field {
    min-width: 0;
}

.hero-form-field:nth-of-type(4),
.hero-message-field,
.hero-submit-button,
.lead-form-message {
    grid-column: 1 / -1;
}

.hero-form-field label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero-form-field input,
.hero-form-field select,
.hero-form-field textarea {
    width: 100%;
    min-height: 52px;
    padding: 14px 15px;
    border: 1px solid #d5e2e9;
    border-radius: 12px;
    outline: none;
    background: #f7fbfd;
    color: var(--dark);
    font-family: inherit;
    font-size: 15px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.hero-form-field textarea {
    min-height: 92px;
    resize: vertical;
}

.hero-form-field input:focus,
.hero-form-field select:focus,
.hero-form-field textarea:focus {
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(74,144,164,.13);
}

.hero-submit-button {
    width: 100%;
    min-height: 54px;
    border: 0;
    font-family: inherit;
    font-size: 16px;
}

.lead-form-message {
    min-height: 18px;
    margin: -2px 0 0;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.hero-form-callout {
    padding: 0 26px 22px;
    color: var(--gray);
    font-size: 13px;
    text-align: center;
}

.hero-form-callout a {
    margin-left: 5px;
    color: var(--secondary);
    font-weight: 800;
    text-decoration: none;
}

.conversion-proof-bar {
    position: relative;
    z-index: 3;
    border-top: 1px solid rgba(255,255,255,.10);
    background: rgba(199,223,239,.96);
}

.conversion-proof-inner {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 46px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.conversion-proof-inner span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.conversion-proof-inner strong {
    color: var(--accent);
    font-size: 16px;
}

/* Neutralize the old sticky/200vh hero rules on the new homepage hero only. */
.conversion-hero .hero,
.conversion-hero .hero-container,
.conversion-hero .hero-content,
.conversion-hero .hero-image,
.conversion-hero .trust-list {
    position: static;
    height: auto !important;
    inset: auto;
    transform: none;
}


/* =========================================================
   DISTINCT HERO ART DIRECTION
   Keeps the existing brand palette while moving the homepage
   away from the reference site's headline/form treatment.
========================================================= */

.conversion-eyebrow {
    display: inline-block;
    margin: 0 0 22px;
    padding: 0 0 0 14px;
    border: 0;
    border-left: 3px solid var(--accent);
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    color: rgba(255,255,255,.76);
    font-size: 13px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.conversion-hero-copy h1 {
    position: relative;
    max-width: 690px;
    margin: 0 0 34px;
    padding-bottom: 26px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(46px, 4.75vw, 66px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.018em;
    text-wrap: balance;
}

.conversion-hero-copy h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 76px;
    height: 4px;
    border-radius: 999px;
    background: var(--accent);
}

.conversion-hero-text {
    max-width: 620px;
    color: rgba(255,255,255,.82);
}

.conversion-check {
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.10);
    color: #fff;
}

.hero-lead-card {
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 18px;
}

.hero-lead-card-header {
    position: relative;
    padding: 30px 30px 25px;
    background: var(--primary);
}

.hero-lead-card-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--accent);
}

.hero-form-kicker {
    color: var(--accent);
    letter-spacing: .14em;
}

.hero-lead-card-header h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    letter-spacing: -.01em;
}

.hero-lead-form {
    grid-template-columns: 1fr 1fr;
}

/* With the service selector removed, the message and submit action
   intentionally span the full card width. */
.hero-message-field,
.hero-submit-button,
.lead-form-message {
    grid-column: 1 / -1;
}

/* =========================================================
   REVIEW CARDS — VERIFIED / CLIENT-PROVIDED REVIEWS
========================================================= */

.reviews {
    background: #eef6fb;
}

.reviews-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    padding: 30px;
    text-align: left;
    background: var(--white);
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(11,31,51,.08);
    border: 1px solid rgba(11,31,51,.06);
}

.review-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.review-avatar {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
}

.review-card h3 {
    margin: 0 0 4px;
    font-size: 18px;
    color: var(--primary);
}

.review-source {
    color: var(--gray);
    font-size: 13px;
}

.review-stars,
.reviews-summary-stars {
    color: #d99a16;
    letter-spacing: 3px;
}

.review-stars {
    margin-bottom: 16px;
    font-size: 18px;
}

.review-text {
    margin: 0;
    color: var(--gray);
    font-size: 16px;
    line-height: 1.72;
}

.reviews-summary {
    margin: 42px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.reviews-summary strong {
    font-size: 26px;
    color: var(--primary);
}

.reviews-summary .quote-button {
    margin-left: 10px;
}


/* =========================================================
   REFERENCE-INSPIRED BENEFITS SECTION
   Structure may be inspired by a reference site; content stays client-owned.
========================================================= */

.benefits-section {
    padding: 120px 0;
    background: #ffffff;
}

.benefits-grid {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.benefit-card {
    position: relative;
    min-height: 250px;
    padding: 38px 32px;
    border: 1px solid rgba(15, 36, 56, .08);
    border-radius: 22px;
    background: #f7fbfe;
    box-shadow: 0 14px 34px rgba(11,31,51,.07);
}

.benefit-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 26px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--primary);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
}

.benefit-card h3 {
    margin: 0 0 13px;
    color: var(--primary);
    font-size: 23px;
}

.benefit-card p {
    margin: 0;
    color: var(--gray);
    line-height: 1.7;
}


/* =========================================================
   REVIEW CARDS / GOOGLE REVIEW CTA
========================================================= */

.reviews-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    padding: 30px;
    text-align: left;
    background: var(--white);
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(11,31,51,.08);
    border: 1px solid rgba(11,31,51,.06);
}

.review-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.review-avatar {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
}

.review-card h3 {
    margin: 0 0 4px;
    font-size: 18px;
    color: var(--primary);
}

.review-source {
    color: var(--gray);
    font-size: 13px;
}

.review-stars,
.reviews-summary-stars {
    color: #d99a16;
    letter-spacing: 3px;
}

.review-stars {
    margin-bottom: 16px;
    font-size: 18px;
}

.review-text {
    margin: 0;
    color: var(--gray);
    font-size: 16px;
    line-height: 1.72;
}

.reviews-summary {
    margin: 42px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}


/* REVIEWS V2 — centered testimonial carousel */
.reviews-showcase {
    padding: 112px 0 104px;
    background: linear-gradient(180deg, #eef9fd 0%, #e7f6fb 100%);
}
.reviews-showcase-container { text-align: center; }
.reviews-showcase-header { margin-bottom: 34px; }
.reviews-rating-line {
    display:flex; justify-content:center; align-items:center; gap:9px;
    margin-top:16px; color:var(--primary); font-size:15px;
}
.review-carousel {
    position:relative; width:min(820px, calc(100% - 80px));
    margin:0 auto; padding:0 58px 38px;
}
.review-carousel-window {
    position:relative; min-height:340px; overflow:hidden;
    border-radius:26px; background:#fff;
    box-shadow:0 20px 55px rgba(11,31,51,.10);
}
.review-slide {
    display:none; min-height:340px; padding:54px 62px 42px; text-align:center;
}
.review-slide.active {
    display:flex; flex-direction:column; align-items:center; justify-content:center;
}
.review-quote-mark {
    position:absolute; top:2px; left:26px; color:#e4f5fa;
    font-family:Georgia,serif; font-size:92px; line-height:1;
}
.review-stars {
    margin:0 0 24px; color:#f5aa00; font-size:20px; letter-spacing:5px;
}
.review-text {
    max-width:590px; margin:0 auto 28px; color:#41566b;
    font-size:18px; line-height:1.75;
}
.review-person { display:flex; align-items:center; gap:13px; text-align:left; }
.review-person .review-avatar {
    width:48px; height:48px; display:grid; place-items:center;
    border-radius:50%; background:#22c7c7; color:#fff; font-weight:800;
}
.review-person-name { margin:0 0 3px; font-size:16px; color:var(--primary); font-weight:700; }
.review-source { color:#6c7f91; font-size:13px; }
.google-g { margin-right:4px; font-weight:900; }
.review-arrow {
    position:absolute; top:148px; z-index:5; width:46px; height:46px;
    border:1px solid #d5e8ef; border-radius:50%; background:#fff;
    color:#149bb7; box-shadow:0 8px 24px rgba(11,31,51,.08);
    cursor:pointer; font-size:32px; line-height:1;
}
.review-arrow-prev { left:0; }
.review-arrow-next { right:0; }
.review-dots {
    position:absolute; left:50%; bottom:6px; display:flex; gap:8px;
    transform:translateX(-50%);
}
.review-dot {
    width:9px; height:9px; padding:0; border:0; border-radius:99px;
    background:#c9eaf2; cursor:pointer;
}
.review-dot.active { width:22px; background:#18a8c5; }
.reviews-actions {
    display:flex; justify-content:center; gap:14px; margin-top:22px;
}
.review-empty-card .review-slide { display:flex; }

/* Extra breathing room between sections with similar card geometry. */
.benefits-section { margin-bottom: 34px; }
.process-section { margin-top: 34px; margin-bottom: 34px; }
.project-gallery { margin-top: 34px; margin-bottom: 34px; }


/* Reviews are intentionally the first content section after the hero. */
.conversion-hero + .reviews-showcase,
.hero-section + .reviews-showcase {
    margin-top: 0;
}

.reviews-showcase {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(15, 36, 56, .06);
    border-bottom: 1px solid rgba(15, 36, 56, .06);
}

/* =========================================================
   SERVICE PAGE FIXED NAV OFFSET
========================================================= */

.service-page-intro {
    padding-top: 150px;
    padding-bottom: 80px;
}

.service-page-intro + section {
    scroll-margin-top: 110px;
}

body.service-page main {
    scroll-margin-top: 110px;
}

body.service-page section[id] {
    scroll-margin-top: 110px;
}


/* ===== SHARED QUOTE CARD + RICH SERVICE PAGES ===== */
.quote-card{max-width:620px;margin:0 auto;overflow:hidden;border:1px solid rgba(15,36,56,.10);border-radius:20px;background:#fff;box-shadow:0 24px 60px rgba(15,36,56,.16)}
.quote-card-header{position:relative;padding:28px 30px 24px;background:var(--primary);color:#fff}
.quote-card-header:before{content:"";position:absolute;inset:0 0 auto;height:5px;background:var(--accent)}
.quote-card-header h2{margin:4px 0 8px;color:#fff;font-family:Georgia,"Times New Roman",serif;font-size:30px;line-height:1.12}
.quote-card-title{margin:4px 0 8px;color:#fff;font-family:Georgia,"Times New Roman",serif;font-size:30px;line-height:1.12;font-weight:700}
.quote-card-header p:last-child{margin:0;color:rgba(255,255,255,.84);line-height:1.55}
.quote-card-form{display:grid;grid-template-columns:1fr 1fr;gap:14px;padding:26px}
.quote-card-form .form-group{margin:0}
.quote-card-form .form-group:nth-of-type(5),.quote-card-form button,.quote-card-form .lead-form-message{grid-column:1/-1}
.quote-card-form input,.quote-card-form textarea,.lead-popup-form input,.lead-popup-form textarea{width:100%;min-height:52px;padding:14px 15px;border:1px solid #d5e2e9;border-radius:12px;outline:0;background:#f7fbfd;color:var(--dark);font:inherit}
.quote-card-form textarea,.lead-popup-form textarea{min-height:100px;resize:vertical}
.quote-card-form input:focus,.quote-card-form textarea:focus,.lead-popup-form input:focus,.lead-popup-form textarea:focus{border-color:var(--accent);background:#fff;box-shadow:0 0 0 3px rgba(74,144,164,.13)}
.quote-card-form .quote-button,.lead-popup-form .quote-button{grid-column:1/-1;width:100%;border:0;min-height:54px;font:inherit;font-weight:700}
.contact-quote-card,.service-quote-card{margin-top:36px}
.lead-popup-card.quote-card{padding:0;max-width:560px}
.lead-popup-card.quote-card>.lead-popup-close{z-index:3;color:#fff}
.lead-popup-card .quote-card-header{text-align:left}
.lead-popup-card .quote-card-form{padding:24px 26px 26px}
.service-detail-section{padding:90px 0;background:#fff}
.service-detail-layout{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:64px;align-items:center}
.service-detail-media{overflow:hidden;border-radius:22px;box-shadow:0 20px 50px rgba(15,36,56,.16)}
.service-detail-media .section-media{display:block;width:100%;height:500px;object-fit:cover}
.service-detail-copy h2{margin-bottom:20px;font-size:clamp(34px,4vw,50px);color:var(--primary)}
.service-detail-copy>p:last-of-type{font-size:18px;line-height:1.75;color:var(--gray)}
.service-check-list{display:grid;gap:12px;margin-top:28px}
.service-check-list div{display:flex;gap:12px;align-items:flex-start;padding:15px 17px;border-radius:12px;background:#eef6fb;font-weight:700;color:var(--primary)}
.service-check-list span{color:var(--accent)}
.service-education{padding:90px 0;background:#eef6fb}
.service-info-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px}
.service-info-card{padding:30px;border-radius:18px;background:#fff;box-shadow:0 12px 35px rgba(15,36,56,.08)}
.service-info-card h3{margin-bottom:12px;color:var(--primary);font-size:23px}
.service-info-card p{color:var(--gray);line-height:1.7}
.service-info-card ul{margin:18px 0 0 20px;color:var(--dark);line-height:1.75}
.service-reference-media{padding:90px 0;background:#fff}
.reference-media-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.reference-media-card{position:relative;overflow:hidden;border-radius:18px;background:#fff;box-shadow:0 12px 36px rgba(15,36,56,.13)}
.reference-media-card img{display:block;width:100%;height:280px;object-fit:cover;background:#dce7ee}
.reference-badge{position:absolute;top:14px;left:14px;z-index:2;padding:7px 10px;border-radius:999px;background:#fff;color:#9a3f2d;font-size:11px;font-weight:900;letter-spacing:.06em}
.reference-media-card figcaption{display:flex;flex-direction:column;gap:7px;padding:20px}
.reference-media-card figcaption strong{color:var(--primary);font-size:18px}
.reference-media-card figcaption span{color:var(--gray);font-size:14px;line-height:1.5}
.reference-media-card figcaption a{width:max-content;color:var(--secondary);font-weight:800;text-decoration:none}


/* Rich client-owned sections inspired by reference-site content depth. */
.reference-insights{padding:88px 0;background:#f8fbfd}.reference-insights-stack{display:grid;gap:56px}.reference-insight{display:grid;grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);align-items:center;gap:56px}.reference-insight-reverse .reference-insight-media{order:2}.reference-insight-reverse .reference-insight-copy{order:1}.reference-insight-media img{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:18px;box-shadow:0 18px 45px rgba(7,31,49,.12)}.reference-insight-copy h2{margin:8px 0 14px;font-size:clamp(30px,3vw,46px);line-height:1.05}.reference-insight-copy>p:not(.small-title){line-height:1.75}.reference-insight-copy ul{margin:20px 0 0;padding:0;display:grid;gap:10px;list-style:none}.reference-insight-copy li{font-weight:600}


/* ===== Forge upgrade: nested services, locations, sourced work, reveal motion ===== */
.service-nav-group { position: relative; }
.service-nav-parent { font-weight: 700; }
.service-nav-children { padding: 4px 0 9px 16px; display: grid; gap: 2px; border-left: 1px solid rgba(255,255,255,.12); margin-left: 12px; }
.service-nav-children a { font-size: .84rem; opacity: .82; padding: 6px 10px !important; }
.service-topic-grid, .location-card-grid, .google-posts-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.service-topics, .google-posts-section { padding:80px 0; }
.service-topic-card, .location-card, .google-post-card { border:1px solid rgba(15,36,56,.12); border-radius:18px; background:#fff; padding:22px; box-shadow:0 14px 35px rgba(15,36,56,.07); }
.service-topic-card { display:flex; align-items:center; gap:12px; }
.service-topic-card h3 { margin:0; font-size:1rem; }
.service-topic-card span { font-weight:800; }
.location-card { display:flex; flex-direction:column; gap:5px; text-decoration:none; color:inherit; }
.location-card span { opacity:.68; font-size:.82rem; }
.google-post-card { overflow:hidden; padding:0; }
.google-post-card img { width:100%; aspect-ratio:16/10; object-fit:cover; display:block; }
.google-post-card p { padding:18px 20px 22px; margin:0; line-height:1.65; }
.google-project-card figcaption { padding:8px 12px; font-size:.78rem; opacity:.68; }
.editorial-placeholder { min-height:260px; border:2px dashed rgba(15,36,56,.25); display:grid; place-items:center; text-align:center; padding:24px; background:repeating-linear-gradient(135deg,rgba(15,36,56,.025),rgba(15,36,56,.025) 12px,transparent 12px,transparent 24px); }
.editorial-placeholder div { display:grid; gap:7px; }
.editorial-placeholder span { font-size:.85rem; opacity:.65; }
.editorial-placeholder.compact { min-height:180px; }
.reveal-on-scroll { opacity:0; transform:translateY(22px); transition:opacity .65s ease, transform .65s ease; }
.reveal-on-scroll.is-visible { opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce) { .reveal-on-scroll { opacity:1; transform:none; transition:none; } }
@media (max-width: 900px) { .service-topic-grid,.location-card-grid,.google-posts-grid { grid-template-columns:1fr; } }

/* ===== Forge competitor-motion profile ===== */
.forge-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity var(--inspired-motion-duration, 650ms) cubic-bezier(.2,.7,.2,1),
        transform var(--inspired-motion-duration, 650ms) cubic-bezier(.2,.7,.2,1);
    transition-delay: var(--forge-delay, 0ms);
    will-change: opacity, transform;
}
body[data-motion="slide"] .forge-reveal { transform: translateX(-34px); }
body[data-motion="slide"] .forge-reveal:nth-child(even) { transform: translateX(34px); }
body[data-motion="zoom"] .forge-reveal { transform: scale(.94); }
body[data-motion="fade-up"] .forge-reveal { transform: translateY(28px); }
.forge-reveal.is-visible { opacity:1; transform:none !important; }

.service-card,
.project-card,
.location-card,
.advantage-card,
.process-step,
.faq-item,
.service-topic-card {
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.service-card:hover,
.project-card:hover,
.location-card:hover,
.advantage-card:hover,
.process-step:hover,
.service-topic-card:hover {
    transform: translateY(-5px);
}

@media (prefers-reduced-motion: reduce) {
    .forge-reveal { opacity:1; transform:none; transition:none; }
    .service-card:hover, .project-card:hover, .location-card:hover,
    .advantage-card:hover, .process-step:hover, .service-topic-card:hover { transform:none; }
}

/* =========================================================
   FORGE V3 — THEME ENGINE / LAYOUT RESET
   This block intentionally comes last. It neutralizes legacy fixed-height
   sections that created huge blank bands and lets the three generated themes
   share one stable responsive layout system.
========================================================= */

:root {
    --theme-primary:#143d59;
    --theme-secondary:#0c293d;
    --theme-accent:#00a98f;
    --theme-background:#f4f8fb;
    --theme-surface:#fff;
    --theme-text:#13212c;
    --theme-muted:#65727c;
    --theme-radius:16px;
}

html { scroll-behavior:smooth; }
body.forge-theme {
    background:var(--theme-background) !important;
    color:var(--theme-text) !important;
    overflow-x:hidden;
    line-height:1.55;
}
body.forge-theme .container { max-width:1180px; padding-inline:28px; }
body.forge-theme main > section:not(.conversion-hero) {
    height:auto !important;
    min-height:0 !important;
    padding:88px 0 !important;
    position:relative;
    overflow:clip;
}
body.forge-theme main > section:nth-child(even):not(.conversion-hero) { background:var(--theme-surface); }
body.forge-theme h1,
body.forge-theme h2,
body.forge-theme h3 { color:var(--theme-text); letter-spacing:-.035em; }
body.forge-theme h2 { font-size:clamp(32px,4.2vw,54px); line-height:1.02; }
body.forge-theme .small-title,
body.forge-theme .conversion-eyebrow { color:var(--theme-accent) !important; text-transform:uppercase; letter-spacing:.13em; font-size:12px; font-weight:800; }
body.forge-theme .section-header { max-width:760px; margin:0 auto 42px; text-align:center; }

/* Navigation */
body.forge-theme .navbar {
    min-height:74px;
    height:auto !important;
    background:rgba(255,255,255,.94) !important;
    border-bottom:1px solid rgba(15,40,60,.09);
    backdrop-filter:blur(14px);
    box-shadow:0 8px 30px rgba(11,35,53,.06);
}
body.forge-theme .nav-container { min-height:74px; }
body.forge-theme .logo span { color:var(--theme-primary); }
body.forge-theme .logo small { color:var(--theme-muted); }
body.forge-theme nav > a,
body.forge-theme .services-button { color:var(--theme-text); font-size:14px; font-weight:700; }
body.forge-theme .services-dropdown { width:min(540px,90vw); border:1px solid rgba(16,40,60,.09); border-radius:var(--theme-radius); padding:14px; box-shadow:0 25px 65px rgba(10,31,47,.17); }
body.forge-theme .service-nav-group { padding:6px; border-radius:12px; }
body.forge-theme .service-nav-parent { font-weight:800; }
body.forge-theme .service-nav-children { display:flex; flex-wrap:wrap; gap:4px 10px; padding:0 10px 9px; }
body.forge-theme .service-nav-children a { padding:3px 0; color:var(--theme-muted); font-size:12px; }
body.forge-theme .quote-button { background:var(--theme-accent) !important; color:#fff !important; border:none !important; box-shadow:none; }
body.forge-theme .quote-button:hover { filter:brightness(.92); transform:translateY(-2px); }
body.forge-theme .phone-button { color:var(--theme-primary) !important; border-color:color-mix(in srgb,var(--theme-primary) 30%,transparent) !important; background:transparent; }

/* Hero — no 100/200vh legacy spacer. */
body.forge-theme .hero-section,
body.forge-theme .conversion-hero {
    height:auto !important;
    min-height:690px !important;
    padding:112px 0 0 !important;
    background:var(--theme-secondary) !important;
    position:relative;
    isolation:isolate;
    overflow:hidden;
}
body.forge-theme .conversion-hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; z-index:-3; transform:scale(1.02); }
body.forge-theme .conversion-hero-overlay { position:absolute; inset:0; z-index:-2; background:linear-gradient(90deg,rgba(6,24,38,.94) 0%,rgba(6,24,38,.83) 48%,rgba(6,24,38,.48) 100%); }
body.forge-theme .conversion-hero-container { display:grid; grid-template-columns:minmax(0,1.18fr) minmax(330px,.72fr); align-items:center; gap:58px; padding-bottom:78px; }
body.forge-theme .conversion-hero-copy { max-width:700px; }
body.forge-theme .conversion-hero h1 { color:#fff !important; font-size:clamp(48px,6.2vw,82px); line-height:.94; letter-spacing:-.055em; margin:12px 0 24px; }
body.forge-theme .conversion-hero-text { color:rgba(255,255,255,.79); font-size:18px; max-width:650px; margin-bottom:28px; }
body.forge-theme .conversion-trust-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px 20px; margin:24px 0 30px; color:#fff; }
body.forge-theme .conversion-trust-item { display:flex; gap:9px; align-items:flex-start; font-size:14px; }
body.forge-theme .conversion-check { color:var(--theme-accent); font-weight:900; }
body.forge-theme .conversion-hero-actions { display:flex; gap:12px; flex-wrap:wrap; }
body.forge-theme .hero-lead-card {
    background:rgba(255,255,255,.97);
    border-radius:calc(var(--theme-radius) + 4px);
    padding:28px;
    box-shadow:0 30px 90px rgba(0,0,0,.28);
    border:1px solid rgba(255,255,255,.35);
}
body.forge-theme .hero-lead-card h2 { font-size:30px; margin:2px 0 8px; }
body.forge-theme .hero-lead-card p { color:var(--theme-muted); }
body.forge-theme .hero-form-field { margin-top:11px; }
body.forge-theme .hero-form-field label { display:none; }
body.forge-theme .hero-form-field input,
body.forge-theme .hero-form-field textarea,
body.forge-theme .contact input,
body.forge-theme .contact textarea {
    width:100%; border:1px solid #dbe3e8; background:#f8fafb; color:var(--theme-text);
    border-radius:10px; padding:13px 14px; min-height:48px; outline:none;
}
body.forge-theme .hero-form-field textarea { min-height:90px; resize:vertical; }
body.forge-theme .hero-submit-button { width:100%; margin-top:12px; }
body.forge-theme .conversion-proof-bar { position:relative; background:rgba(255,255,255,.96); border-top:1px solid rgba(255,255,255,.2); }
body.forge-theme .conversion-proof-inner { min-height:52px; display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; font-size:12px; color:var(--theme-text); }
body.forge-theme .conversion-proof-inner strong { color:var(--theme-accent); }

/* Content cards */
body.forge-theme .service-grid,
body.forge-theme .benefits-grid,
body.forge-theme .process-grid,
body.forge-theme .project-grid,
body.forge-theme .google-posts-grid,
body.forge-theme .location-card-grid {
    display:grid !important;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
}
body.forge-theme .service-box,
body.forge-theme .benefit-card,
body.forge-theme .process-card,
body.forge-theme .project-card,
body.forge-theme .google-post-card,
body.forge-theme .location-card,
body.forge-theme .reference-insight,
body.forge-theme .review-slide,
body.forge-theme .faq-item {
    background:var(--theme-surface) !important;
    border:1px solid color-mix(in srgb,var(--theme-primary) 11%,transparent) !important;
    border-radius:var(--theme-radius) !important;
    box-shadow:0 15px 45px rgba(20,48,68,.07);
}
body.forge-theme .service-box { overflow:hidden; padding:0 !important; }
body.forge-theme .service-box img,
body.forge-theme .project-card img,
body.forge-theme .section-media img { width:100%; aspect-ratio:16/10; object-fit:cover; display:block; }
body.forge-theme .service-box > :not(img) { margin-inline:24px; }
body.forge-theme .service-box h3 { margin-top:24px; font-size:24px; }
body.forge-theme .service-box p { color:var(--theme-muted); }
body.forge-theme .service-box a { display:inline-flex; margin:18px 24px 24px; color:var(--theme-primary); font-weight:800; text-decoration:none; }
body.forge-theme .benefit-card,
body.forge-theme .process-card,
body.forge-theme .location-card,
body.forge-theme .google-post-card { padding:28px; }
body.forge-theme .benefit-icon,
body.forge-theme .process-number { color:var(--theme-accent); }

/* About/reference sections */
body.forge-theme .why-container,
body.forge-theme .reference-insight,
body.forge-theme .coverage-layout { display:grid !important; grid-template-columns:1fr 1fr; gap:58px; align-items:center; }
body.forge-theme .why-image img,
body.forge-theme .why-image video,
body.forge-theme .reference-insight-media img { width:100%; border-radius:var(--theme-radius); aspect-ratio:4/3; object-fit:cover; box-shadow:0 24px 70px rgba(15,39,56,.14); }
body.forge-theme .feature { margin-top:18px; }
body.forge-theme .feature p,
body.forge-theme .coverage-description { color:var(--theme-muted); }
body.forge-theme .reference-insights-stack { display:grid; gap:28px; }
body.forge-theme .reference-insight { padding:30px; }
body.forge-theme .reference-insight-reverse .reference-insight-media { order:2; }

/* Reviews */
body.forge-theme .reviews-showcase { background:var(--theme-secondary) !important; color:#fff; }
body.forge-theme .reviews-showcase h2 { color:#fff; }
body.forge-theme .reviews-rating-line { display:flex; justify-content:center; gap:10px; align-items:center; color:rgba(255,255,255,.78); }
body.forge-theme .reviews-summary-stars,
body.forge-theme .review-stars { color:#f6bc43; letter-spacing:.12em; }
body.forge-theme .review-carousel-window { overflow:hidden; max-width:860px; margin:0 auto; }
body.forge-theme .review-slide { display:none; padding:40px; color:var(--theme-text); min-height:250px; }
body.forge-theme .review-slide.active { display:block; }
body.forge-theme .review-text { font-size:clamp(18px,2.2vw,25px); line-height:1.55; }
body.forge-theme .review-arrow { background:#fff; border:0; width:46px; height:46px; border-radius:50%; cursor:pointer; }
body.forge-theme .reviews-actions { display:flex; justify-content:center; margin-top:28px; }

/* FAQ/contact/footer */
body.forge-theme .faq-list { max-width:850px; margin:0 auto; display:grid; gap:12px; }
body.forge-theme .faq-item { overflow:hidden; }
body.forge-theme .faq-question { width:100%; padding:20px 22px; border:0; background:transparent; display:flex; justify-content:space-between; text-align:left; font:inherit; font-weight:800; color:var(--theme-text); cursor:pointer; }
body.forge-theme .faq-answer { padding:0 22px 22px; color:var(--theme-muted); }
body.forge-theme .contact { background:var(--theme-primary) !important; color:#fff; }
body.forge-theme .contact h2,
body.forge-theme .contact h3 { color:#fff; }
body.forge-theme .contact-header { max-width:720px; margin:0 auto 28px; text-align:center; }
body.forge-theme .contact-quote-card { max-width:800px; margin:auto; background:#fff; color:var(--theme-text); border-radius:var(--theme-radius); padding:28px; }
body.forge-theme .footer { background:var(--theme-secondary) !important; color:#fff; padding:60px 0 25px !important; }

/* Card-style variants */
body.forge-theme.cards-bordered .service-box,
body.forge-theme.cards-bordered .benefit-card,
body.forge-theme.cards-outlined .service-box { box-shadow:none; border-width:2px !important; }
body.forge-theme.cards-elevated .service-box,
body.forge-theme.cards-elevated .project-card { box-shadow:0 24px 70px rgba(11,31,46,.14); }
body.forge-theme.theme-dark-premium .services,
body.forge-theme.theme-dark-premium .benefits-section { background:#0c2132 !important; color:#fff; }
body.forge-theme.theme-dark-premium .services h2,
body.forge-theme.theme-dark-premium .benefits-section h2 { color:#fff; }
body.forge-theme.theme-dark-premium .service-box,
body.forge-theme.theme-dark-premium .benefit-card { background:#132d40 !important; color:#fff; border-color:rgba(255,255,255,.08) !important; }
body.forge-theme.theme-dark-premium .service-box h3,
body.forge-theme.theme-dark-premium .benefit-card h3 { color:#fff; }
body.forge-theme.theme-dark-premium .service-box p,
body.forge-theme.theme-dark-premium .benefit-card p { color:#b8c6cf; }
body.forge-theme.hero-split .conversion-hero-overlay { background:linear-gradient(90deg,rgba(5,26,40,.96) 0 58%,rgba(5,26,40,.18) 58% 100%); }
body.forge-theme.hero-bold .conversion-hero h1 { text-transform:uppercase; font-size:clamp(44px,6.6vw,88px); letter-spacing:-.035em; }
body.forge-theme.hero-immersive .conversion-hero { min-height:780px !important; }
body.forge-theme.hero-editorial .hero-lead-card { border-radius:2px; }
body.forge-theme.hero-editorial .conversion-hero h1 { font-weight:700; }

/* Competitor-derived motion characters, implemented locally. */
.forge-reveal { opacity:0; will-change:transform,opacity; transition:opacity var(--inspired-motion-duration) ease var(--forge-delay,0ms),transform var(--inspired-motion-duration) cubic-bezier(.23,1,.32,1) var(--forge-delay,0ms); }
body[data-motion="fade-up"] .forge-reveal { transform:translateY(34px); }
body[data-motion="slide"] .forge-reveal { transform:translateX(-44px); }
body[data-motion="zoom"] .forge-reveal { transform:scale(.92); }
body[data-motion="soft-pop"] .forge-reveal { transform:translateY(20px) scale(.96); }
.forge-reveal.is-visible { opacity:1 !important; transform:none !important; }
body.forge-theme .service-box,
body.forge-theme .project-card,
body.forge-theme .benefit-card { transition:transform .32s cubic-bezier(.23,1,.32,1),box-shadow .32s ease,border-color .32s ease; }
body.forge-theme .service-box:hover,
body.forge-theme .project-card:hover,
body.forge-theme .benefit-card:hover { transform:translateY(-7px); box-shadow:0 25px 60px rgba(12,37,55,.14); border-color:color-mix(in srgb,var(--theme-accent) 45%,transparent) !important; }

@media (max-width:900px) {
    body.forge-theme main > section:not(.conversion-hero) { padding:68px 0 !important; }
    body.forge-theme .conversion-hero-container,
    body.forge-theme .why-container,
    body.forge-theme .reference-insight,
    body.forge-theme .coverage-layout { grid-template-columns:1fr !important; }
    body.forge-theme .conversion-hero { min-height:0 !important; padding-top:96px !important; }
    body.forge-theme .conversion-hero-container { gap:32px; padding-bottom:42px; }
    body.forge-theme .conversion-hero h1 { font-size:clamp(42px,12vw,67px); }
    body.forge-theme .service-grid,
    body.forge-theme .benefits-grid,
    body.forge-theme .process-grid,
    body.forge-theme .project-grid,
    body.forge-theme .google-posts-grid,
    body.forge-theme .location-card-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
    body.forge-theme .reference-insight-reverse .reference-insight-media { order:initial; }
}

@media (max-width:620px) {
    body.forge-theme .container { padding-inline:18px; }
    body.forge-theme main > section:not(.conversion-hero) { padding:54px 0 !important; }
    body.forge-theme .conversion-hero h1 { font-size:43px; }
    body.forge-theme .conversion-hero-text { font-size:16px; }
    body.forge-theme .conversion-trust-grid,
    body.forge-theme .service-grid,
    body.forge-theme .benefits-grid,
    body.forge-theme .process-grid,
    body.forge-theme .project-grid,
    body.forge-theme .google-posts-grid,
    body.forge-theme .location-card-grid { grid-template-columns:1fr; }
    body.forge-theme .conversion-hero-actions > * { width:100%; text-align:center; }
    body.forge-theme .hero-lead-card { padding:20px; }
    body.forge-theme .conversion-proof-inner { display:grid; grid-template-columns:1fr 1fr; padding-block:14px; }
    body.forge-theme .review-slide { padding:26px 22px; }
}

@media (prefers-reduced-motion: reduce) {
    .forge-reveal { opacity:1 !important; transform:none !important; transition:none !important; }
}
/* =========================================================
   CLEARVENT PROCESS — 3 STEP CUSTOMER JOURNEY
========================================================= */

.process-section {
    position: relative;
    padding: 110px 0 120px;
    background: #eaf5fb;
    overflow: hidden;
}

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

.process-section .section-header .small-title {
    margin-bottom: 12px;
    color: #3399b5;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

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

.process-section .section-header > p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 18px;
    line-height: 1.7;
}


/* ----- STEPS ----- */

.process-grid {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}


/* connecting line */

.process-grid::before {
    content: "";
    position: absolute;
    top: 39px;
    left: 16%;
    right: 16%;
    height: 3px;
    background: linear-gradient(
        90deg,
        #66bdd1,
        #3399b5,
        #66bdd1
    );
    opacity: 0.45;
    z-index: 0;
}


.process-card {
    position: relative;
    z-index: 1;

    min-height: 300px;
    padding: 0 30px 34px;

    background: #ffffff;
    border: 1px solid rgba(51, 153, 181, 0.15);
    border-radius: 22px;

    text-align: center;

    box-shadow:
        0 16px 38px rgba(11, 31, 51, 0.07);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.process-card:hover {
    transform: translateY(-6px);

    border-color: rgba(51, 153, 181, 0.35);

    box-shadow:
        0 22px 48px rgba(11, 31, 51, 0.12);
}


/* ----- NUMBER CIRCLES ----- */

.process-number {
    position: relative;

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

    width: 78px;
    height: 78px;

    margin: 0 auto 26px;
    transform: translateY(-1px);

    border-radius: 50%;

    background: #ffffff;
    border: 3px solid #55aec5;

    color: #238aa6;

    font-size: 24px;
    line-height: 1;
    font-weight: 800;

    box-shadow:
        0 8px 20px rgba(29, 125, 151, 0.15);
}


.process-card h3 {
    margin: 0 0 15px;

    color: var(--primary);

    font-size: 24px;
    line-height: 1.25;
}


.process-card p {
    margin: 0;

    color: var(--gray);

    font-size: 16px;
    line-height: 1.75;
}


/* Highlight the final decision / estimate step */

.process-card:last-child {
    border-color: rgba(51, 153, 181, 0.32);

    box-shadow:
        0 18px 44px rgba(30, 125, 151, 0.12);
}


.process-card:last-child .process-number {
    background: #3fa4bd;
    border-color: #3fa4bd;
    color: #ffffff;

    box-shadow:
        0 10px 24px rgba(35, 138, 166, 0.28);
}


/* =========================================================
   PROCESS — TABLET
========================================================= */

@media (max-width: 900px) {

    .process-section {
        padding: 88px 0 96px;
    }

    .process-section .section-header {
        margin-bottom: 52px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
        gap: 26px;
    }

    .process-grid::before {
        display: none;
    }

    .process-card {
        min-height: 0;
        padding: 30px 30px 32px;
        text-align: left;

        display: grid;
        grid-template-columns: 68px 1fr;
        column-gap: 22px;
        align-items: start;
    }

    .process-number {
        width: 62px;
        height: 62px;
        margin: 0;
        grid-row: 1 / span 2;

        font-size: 20px;
    }

    .process-card h3 {
        margin-top: 3px;
        margin-bottom: 9px;
    }
}


/* =========================================================
   PROCESS — MOBILE
========================================================= */

@media (max-width: 560px) {

    .process-section {
        padding: 72px 0 78px;
    }

    .process-section .section-header {
        margin-bottom: 42px;
    }

    .process-section .section-header > p {
        font-size: 16px;
    }

    .process-card {
        grid-template-columns: 54px 1fr;
        column-gap: 16px;

        padding: 24px 20px 26px;

        border-radius: 18px;
    }

    .process-number {
        width: 50px;
        height: 50px;

        border-width: 2px;

        font-size: 17px;
    }

    .process-card h3 {
        font-size: 20px;
    }

    .process-card p {
        font-size: 15px;
        line-height: 1.65;
    }
}
/* =========================================================
   CLEARVENT NAVIGATION — FINAL OVERRIDE
========================================================= */

/* ---------- DESKTOP NAV ---------- */

.navbar,
body.forge-theme .navbar {
    background: #c7e3f2 !important;
    border-bottom: 1px solid rgba(15, 40, 60, 0.10);
    box-shadow: 0 4px 18px rgba(11, 35, 53, 0.07);
}

.nav-container,
body.forge-theme .nav-container {
    min-height: 78px;
}

#nav-menu {
    align-items: center;
}

#nav-menu > a,
.services-button,
body.forge-theme nav > a,
body.forge-theme .services-button {
    position: relative;
    color: #102b3d !important;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 4px;
}


/* teal underline */

#nav-menu > a::after,
.services-button::after {
    content: "";
    position: absolute;

    left: 4px;
    right: 4px;
    bottom: 4px;

    height: 2px;

    background: #319bb7;

    transform: scaleX(0);
    transform-origin: center;

    transition: transform .2s ease;
}

#nav-menu > a:hover::after,
.services-button:hover::after {
    transform: scaleX(1);
}


/* ---------- SERVICES TRIANGLE ---------- */

.services-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

/* hide the old text arrow */
.services-button {
    font-size: 0 !important;
}

.services-button::before {
    content: "Services";
    font-size: 15px;
}

.services-button::after {
    /* underline is handled differently because this element
       already needs the dropdown indicator */
    display: none;
}

.services-button::before {
    color: inherit;
}

/* triangle */

.services-menu .services-button {
    position: relative;
}

.services-menu .services-button::marker {
    display: none;
}

.services-menu .services-button {
    padding-right: 20px;
}

.services-menu .services-button > * {
    pointer-events: none;
}

.services-menu .services-button::after {
    content: "";
    display: block;

    position: absolute;
    right: 2px;
    top: 50%;

    width: 0;
    height: 0;

    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #319bb7;

    transform: translateY(-35%);

    background: none;
    transition: transform .2s ease;
}

.services-menu:has(.services-dropdown.show) .services-button::after {
    transform: translateY(-35%) rotate(180deg);
}


/* ---------- SERVICES DROPDOWN ---------- */

.services-dropdown,
body.forge-theme .services-dropdown {
    top: calc(100% + 10px);

    width: 420px;

    padding: 12px;

    background: #ffffff;

    border: 1px solid rgba(49, 155, 183, .18);
    border-radius: 16px;

    box-shadow:
        0 22px 55px rgba(11, 35, 53, .16);
}

.service-nav-group {
    border-bottom: 1px solid #e5f0f5;
}

.service-nav-group:last-child {
    border-bottom: 0;
}

.service-nav-parent {
    color: #102b3d !important;
    font-weight: 750 !important;
}

.service-nav-parent:hover {
    color: #238ba8 !important;
}

.service-nav-children a {
    color: #627988 !important;
}


/* =========================================================
   SOLID NAV CTA BUTTONS
========================================================= */

.nav-buttons .phone-button,
body.forge-theme .nav-buttons .phone-button {
    background: #3ba3bd !important;
    border: 2px solid #3ba3bd !important;
    color: #ffffff !important;

    box-shadow: 0 7px 18px rgba(40, 143, 170, .18);
}

.nav-buttons .phone-button:hover,
body.forge-theme .nav-buttons .phone-button:hover {
    background: #278ca7 !important;
    border-color: #278ca7 !important;
    color: #ffffff !important;

    transform: translateY(-2px);
}


.nav-buttons .quote-button,
body.forge-theme .nav-buttons .quote-button {
    background: #0d2b43 !important;
    border: 2px solid #0d2b43 !important;
    color: #ffffff !important;

    box-shadow: 0 7px 18px rgba(13, 43, 67, .15);
}

.nav-buttons .quote-button:hover,
body.forge-theme .nav-buttons .quote-button:hover {
    background: #17425e !important;
    border-color: #17425e !important;

    transform: translateY(-2px);
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media (max-width: 900px) {

    .navbar,
    body.forge-theme .navbar {
        height: 72px !important;
        min-height: 72px !important;

        background: #c7e3f2 !important;
    }

    .nav-container,
    body.forge-theme .nav-container {
        min-height: 72px;
        padding-left: 22px;
        padding-right: 22px;
    }


    /* hamburger */

    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;

        width: 44px;
        height: 44px;

        color: #258da8;

        font-size: 0;

        cursor: pointer;

        border-radius: 10px;
    }

    .menu-toggle::before {
        content: "☰";

        color: #258da8;

        font-size: 27px;
        line-height: 1;
        font-weight: 700;
    }


    /* dropdown panel */

    #nav-menu {
        position: absolute;

        top: 72px;
        left: 0;
        right: 0;

        width: 100%;

        padding: 10px 22px 24px;

        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;

        background: #ffffff;

        border-top: 1px solid #d8e9f0;
        border-bottom: 1px solid #d8e9f0;

        box-shadow:
            0 18px 35px rgba(11, 35, 53, .14);

        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }

    #nav-menu.active {
        display: flex;
    }


    /* menu rows */

    #nav-menu > a,
    #nav-menu > .services-menu {
        width: 100%;
        border-bottom: 1px solid #e5eef3;
    }

    #nav-menu > a {
        display: block;

        padding: 16px 4px;

        color: #102b3d !important;

        font-size: 16px;
        font-weight: 650;

        text-decoration: none;
    }

    #nav-menu > a::after {
        left: 4px;
        right: auto;
        bottom: 10px;

        width: 34px;

        transform: scaleX(1);

        background: #49abc2;
    }


    /* services mobile row */

    .services-button,
    body.forge-theme .services-button {
        width: 100%;

        display: flex;
        align-items: center;

        padding: 16px 28px 16px 4px;

        text-align: left;

        color: #102b3d !important;

        font-size: 0 !important;
        font-weight: 650;

        border-radius: 0;
    }

    .services-button::before {
        content: "Services";
        font-size: 16px;
    }

    .services-menu .services-button::after {
        right: 7px;

        border-left-width: 5px;
        border-right-width: 5px;
        border-top-width: 6px;
    }


    /* mobile services dropdown */

    .services-dropdown,
    body.forge-theme .services-dropdown {
        position: static;

        width: 100%;

        margin: 0;
        padding: 0 0 10px 14px;

        background: #f2f9fc;

        border: 0;
        border-radius: 0;

        box-shadow: none;
    }

    .services-dropdown.show {
        display: block;
    }

    .service-nav-group {
        padding: 0 !important;
        border-bottom: 1px solid #dbeaf0;
    }

    .service-nav-group:last-child {
        border-bottom: 0;
    }

    .service-nav-parent {
        display: block !important;

        padding: 13px 10px !important;

        color: #167f9b !important;

        font-size: 15px !important;
        font-weight: 750 !important;
    }

    .service-nav-children {
        display: none !important;
    }


    /* desktop buttons remain out of mobile menu */

    .nav-buttons {
        display: none;
    }
}


/* =========================================================
   MOBILE FLOATING BUTTONS
========================================================= */

@media (max-width: 900px) {

    .floating-buttons .phone-button,
    body.forge-theme .floating-buttons .phone-button {
        background: #3ba3bd !important;
        border: 2px solid #3ba3bd !important;
        color: #ffffff !important;
    }

    .floating-estimate,
    body.forge-theme .floating-estimate {
        background: #0d2b43 !important;
        color: #ffffff !important;
        border: 2px solid #0d2b43 !important;
    }
}
/* =========================================================
   CLEARVENT NESTED SERVICES NAV
========================================================= */

/* Main Services arrow - always at far right of its row */
.services-menu > .services-button {
    position: relative;
    padding-right: 30px !important;
}

.services-menu > .services-button::after {
    right: 10px !important;
    left: auto !important;
    top: 50% !important;

    transform: translateY(-50%);
}

.services-menu:has(.services-dropdown.show)
> .services-button::after {
    transform: translateY(-50%) rotate(180deg);
}


/* ---------------------------------------------------------
   EACH SERVICE ROW
--------------------------------------------------------- */

.service-nav-group {
    position: relative;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 38px;

    align-items: center;
}

.service-nav-parent {
    grid-column: 1;

    min-width: 0;

    padding-right: 8px !important;
}


/* dedicated arrow button */
.service-nav-toggle {
    grid-column: 2;

    width: 34px;
    height: 34px;

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

    margin-right: 3px;

    padding: 0;

    background: transparent;
    border: 0;
    border-radius: 8px;

    cursor: pointer;
}

.service-nav-toggle:hover {
    background: #e8f5f9;
}


/* triangle */
.service-nav-toggle::before {
    content: "";

    width: 0;
    height: 0;

    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #258da8;

    transition: transform .2s ease;
}


/* rotate when opened */
.service-nav-group.open
.service-nav-toggle::before {
    transform: rotate(180deg);
}


/* ---------------------------------------------------------
   CHILDREN
--------------------------------------------------------- */

.service-nav-children {
    grid-column: 1 / -1;

    display: none !important;

    padding:
        3px
        12px
        12px
        18px !important;

    margin: 0 6px 6px;

    border-left: 2px solid #64b6ca;

    background: #f5fbfd;

    border-radius: 0 0 10px 10px;
}

.service-nav-group.open
.service-nav-children {
    display: flex !important;

    flex-direction: column;
    align-items: stretch;

    gap: 2px;
}

.service-nav-children a {
    display: block !important;

    padding: 8px 10px !important;

    border-radius: 7px;

    color: #55717f !important;

    font-size: 13px !important;
}

.service-nav-children a:hover {
    background: #e2f2f7 !important;

    color: #147d98 !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    /*
       Services is a full-width mobile row, so put its
       triangle at the very end instead of beside the text.
    */
    .services-menu > .services-button {
        padding-right: 48px !important;
    }

    .services-menu > .services-button::after {
        right: 17px !important;
    }


    .service-nav-group {
        grid-template-columns:
            minmax(0, 1fr)
            48px;

        width: 100%;
    }

    .service-nav-parent {
        padding:
            14px
            8px
            14px
            10px !important;
    }

    .service-nav-toggle {
        width: 44px;
        height: 44px;

        margin-right: 2px;
    }

    .service-nav-toggle::before {
        border-left-width: 5px;
        border-right-width: 5px;
        border-top-width: 6px;
    }


    .service-nav-children {
        margin:
            0
            8px
            8px
            15px;

        padding:
            4px
            8px
            8px
            13px !important;
    }

    .service-nav-group.open
    .service-nav-children {
        display: flex !important;
    }

}
/* =========================================================
   CLEARVENT SERVICE AREA
========================================================= */

.coverage-section {
    padding: 110px 0;
    background: #ffffff;
}

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

.coverage-header h2 {
    margin-bottom: 15px;
}

.coverage-header > p:last-child {
    max-width: 650px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 18px;
    line-height: 1.7;
}

.coverage-layout,
body.forge-theme .coverage-layout {
    display: grid !important;
    grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr) !important;

    gap: 54px;

    align-items: center;
}

.coverage-copy h3 {
    margin-bottom: 22px;

    color: var(--primary);

    font-size: 25px;
}

.area-chips {
    display: flex;
    flex-wrap: wrap;

    gap: 11px;

    margin-bottom: 30px;
}

.area-chip {
    appearance: none;

    padding: 11px 17px;

    background: #edf7fb;

    border: 1px solid #cbe6ef;
    border-radius: 999px;

    color: #24485a;

    font-family: inherit;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background .18s ease,
        color .18s ease,
        border-color .18s ease,
        transform .18s ease;
}

.area-chip:hover {
    transform: translateY(-2px);

    background: #dff2f7;
    border-color: #72bbcc;
}

.area-chip.active {
    background: #3ba3bd;
    border-color: #3ba3bd;

    color: #ffffff;
}

.map-button {
    display: inline-flex;
}

.map-card {
    overflow: hidden;

    min-height: 520px;

    border-radius: 24px;

    background: #eaf5fb;

    box-shadow:
        0 20px 48px rgba(11,31,51,.12);
}

.map-card iframe {
    display: block;

    width: 100%;
    height: 520px;

    border: 0;
}

@media (max-width: 900px) {

    .coverage-layout,
    body.forge-theme .coverage-layout {
        grid-template-columns: 1fr !important;

        gap: 35px;
    }

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

    .area-chips {
        justify-content: center;
    }

    .map-card,
    .map-card iframe {
        min-height: 430px;
        height: 430px;
    }

}

@media (max-width: 560px) {

    .coverage-section {
        padding: 72px 0;
    }

    .coverage-header {
        margin-bottom: 38px;
    }

    .area-chips {
        gap: 8px;
    }

    .area-chip {
        padding: 10px 13px;

        font-size: 13px;
    }

    .map-card,
    .map-card iframe {
        min-height: 340px;
        height: 340px;

        border-radius: 18px;
    }

}
/* =========================================================
   CLEARVENT REAL LOGO
========================================================= */

.site-logo {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-decoration: none;
}

.site-logo img {
    display: block;
    width: 58px;
    height: 58px;
    object-fit: contain;
}

/* Navbar */
.navbar .site-logo {
    width: 62px;
    height: 62px;
}

/* Footer */
.footer .footer-logo.site-logo {
    width: auto;
    height: auto;
    margin-bottom: 20px;
}

.footer .footer-logo.site-logo img {
    width: 82px;
    height: 82px;
}

@media (max-width: 768px) {

    .navbar .site-logo {
        width: 52px;
        height: 52px;
    }

    .navbar .site-logo img {
        width: 50px;
        height: 50px;
    }

    .footer .footer-logo.site-logo img {
        width: 72px;
        height: 72px;
    }
}
/* =========================================================
   CLEARVENT LOGO — FINAL STYLING
========================================================= */

/* Remove old text-logo sizing assumptions */
.logo.site-logo,
.footer-logo.site-logo {
    padding: 0 !important;
    background: transparent !important;
}

/* ---------- NAVBAR LOGO ---------- */

.navbar .site-logo {
    width: 76px !important;
    height: 64px !important;

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

    overflow: hidden;
}

.navbar .site-logo img {
    width: 64px !important;
    height: 64px !important;

    display: block;
    object-fit: contain;

    border-radius: 8px;
}


/* ---------- FOOTER LOGO ---------- */

.footer .footer-logo.site-logo {
    width: 96px !important;
    height: 96px !important;

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

    margin-bottom: 22px !important;

    overflow: hidden;
    border-radius: 12px;
}

.footer .footer-logo.site-logo img {
    width: 96px !important;
    height: 96px !important;

    display: block;
    object-fit: cover;
}


/* ---------- FOOTER BRAND COLUMN ---------- */

.footer-brand-column {
    max-width: 280px;
}

.footer-brand-column > p {
    margin: 0 0 20px;

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

    color: rgba(255,255,255,.76);
}

.footer-phone {
    display: inline-block;

    margin-bottom: 12px;

    font-size: 19px;
    font-weight: 800;
    text-decoration: none;
}


/* ---------- MOBILE ---------- */

@media (max-width: 768px) {

    .navbar .site-logo {
        width: 62px !important;
        height: 56px !important;
    }

    .navbar .site-logo img {
        width: 54px !important;
        height: 54px !important;
    }

    .footer .footer-logo.site-logo {
        width: 88px !important;
        height: 88px !important;
    }

    .footer .footer-logo.site-logo img {
        width: 88px !important;
        height: 88px !important;
    }
}
/* =========================================================
   CLEARVENT LOGO — NAVBAR BLEND
========================================================= */

.navbar .site-logo {
    width: 70px !important;
    height: 58px !important;

    padding: 5px !important;

    background: rgba(255,255,255,.38) !important;

    border: 1px solid rgba(255,255,255,.42);
    border-radius: 13px;

    box-shadow:
        0 4px 12px rgba(16,43,61,.06);

    overflow: hidden;
}

.navbar .site-logo img {
    width: 52px !important;
    height: 52px !important;

    object-fit: contain;

    border-radius: 9px;

    mix-blend-mode: multiply;
}

/* Footer can keep the stronger white badge */
.footer .footer-logo.site-logo {
    background: #fff !important;

    border-radius: 12px;

    overflow: hidden;
}

.footer .footer-logo.site-logo img {
    mix-blend-mode: normal;
}

@media (max-width: 768px) {

    .navbar .site-logo {
        width: 60px !important;
        height: 54px !important;
        padding: 4px !important;
    }

    .navbar .site-logo img {
        width: 48px !important;
        height: 48px !important;
    }
}


/* =========================================================
   CLEARVENT — UNIFIED CONTACT + FOOTER
   Homepage and service pages intentionally share one design.
========================================================= */


/* ---------- CONTACT SECTION ---------- */

.contact,
body.forge-theme .contact {
    background: #eef7fb !important;
    color: var(--dark) !important;
    padding: 110px 0 !important;
}

.contact-header,
body.forge-theme .contact-header {
    max-width: 720px !important;
    margin: 0 auto 42px !important;
    text-align: center !important;
}

.contact-header .small-title,
body.forge-theme .contact-header .small-title {
    color: var(--accent) !important;
}

.contact-header h2,
.contact-header h3,
body.forge-theme .contact h2,
body.forge-theme .contact h3 {
    color: var(--primary) !important;
}

.contact-header h2,
body.forge-theme .contact-header h2 {
    margin-bottom: 14px !important;
}

.contact-header > p,
body.forge-theme .contact-header > p {
    color: var(--gray) !important;
}


/* ---------- QUOTE CARD ---------- */

.contact-quote-card,
.service-quote-card,
body.forge-theme .contact-quote-card,
body.forge-theme .service-quote-card {
    width: 100% !important;
    max-width: 620px !important;
    margin: 0 auto !important;
    padding: 0 !important;

    overflow: hidden !important;

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

    border: 1px solid rgba(15, 36, 56, .10) !important;
    border-radius: 20px !important;

    box-shadow:
        0 24px 60px rgba(15, 36, 56, .14) !important;
}


/* Header stays navy */

.contact .quote-card-header,
body.forge-theme .contact .quote-card-header {
    position: relative !important;

    padding: 28px 30px 24px !important;

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

.contact .quote-card-header::before,
body.forge-theme .contact .quote-card-header::before {
    content: "";
    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 5px;

    background: var(--accent);
}

.contact .quote-card-header h2,
body.forge-theme .contact .quote-card-header h2 {
    margin: 4px 0 8px !important;

    color: #fff !important;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px !important;
    line-height: 1.12;
}

.contact .quote-card-header p,
body.forge-theme .contact .quote-card-header p {
    color: rgba(255,255,255,.84) !important;
}


/* ---------- FORM ---------- */

.contact .quote-card-form,
body.forge-theme .contact .quote-card-form {
    display: grid !important;

    grid-template-columns:
        repeat(2, minmax(0, 1fr)) !important;

    gap: 14px !important;

    padding: 26px !important;

    background: #fff !important;
}

.contact .quote-card-form .form-group,
body.forge-theme .contact .quote-card-form .form-group {
    margin: 0 !important;
}

.contact .quote-card-form input,
.contact .quote-card-form textarea,
body.forge-theme .contact .quote-card-form input,
body.forge-theme .contact .quote-card-form textarea {
    width: 100% !important;

    min-height: 52px !important;

    padding: 14px 15px !important;

    border: 1px solid #d5e2e9 !important;
    border-radius: 12px !important;

    background: #f7fbfd !important;
    color: var(--dark) !important;

    font: inherit !important;

    outline: none !important;
}

.contact .quote-card-form textarea,
body.forge-theme .contact .quote-card-form textarea {
    min-height: 110px !important;
    resize: vertical;
}


/* Message = full width */

.contact .quote-card-form .form-group:nth-of-type(5),
body.forge-theme .contact .quote-card-form .form-group:nth-of-type(5) {
    grid-column: 1 / -1 !important;
}


/* Submit + status = full width */

.contact .quote-card-form button,
.contact .quote-card-form .lead-form-message,
body.forge-theme .contact .quote-card-form button,
body.forge-theme .contact .quote-card-form .lead-form-message {
    grid-column: 1 / -1 !important;
}


/* ---------- HOMEPAGE HERO FORM ---------- */

.hero-lead-form {
    display: grid !important;

    grid-template-columns:
        repeat(2, minmax(0, 1fr)) !important;

    gap: 12px !important;
}

.hero-lead-form .hero-form-field {
    margin: 0 !important;
}

.hero-lead-form .hero-message-field,
.hero-lead-form .hero-submit-button,
.hero-lead-form .lead-form-message {
    grid-column: 1 / -1 !important;
}

.hero-lead-form input,
.hero-lead-form textarea {
    width: 100%;
}

.hero-lead-form textarea {
    min-height: 90px;
}


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

.footer,
body.forge-theme .footer {
    background: #0e2940 !important;
    color: #fff !important;

    padding: 72px 0 28px !important;

    margin: 0 !important;
}

.footer-rich,
body.forge-theme .footer-rich {
    display: grid !important;

    grid-template-columns:
        1.35fr 1fr 1fr 1fr !important;

    gap: 55px !important;

    align-items: start !important;
}

.footer-column h3,
body.forge-theme .footer-column h3 {
    color: #fff !important;
    margin-bottom: 18px !important;
}

.footer-column p,
body.forge-theme .footer-column p {
    color: rgba(255,255,255,.78) !important;
    line-height: 1.65 !important;
}

.footer-column a,
body.forge-theme .footer-column a {
    color: rgba(255,255,255,.92) !important;
}

.footer-column a:hover,
body.forge-theme .footer-column a:hover {
    color: #fff !important;
}


/* bottom legal bar */

.footer-lower,
body.forge-theme .footer-lower {
    margin-top: 54px !important;
    padding-top: 24px !important;

    border-top:
        1px solid rgba(255,255,255,.14) !important;
}

.footer-lower p,
body.forge-theme .footer-lower p {
    color: rgba(255,255,255,.70) !important;
}

.footer-legal-links a,
body.forge-theme .footer-legal-links a {
    color: rgba(255,255,255,.78) !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .contact,
    body.forge-theme .contact {
        padding: 72px 0 !important;
    }

    .contact-header,
    body.forge-theme .contact-header {
        margin-bottom: 30px !important;
    }

    .contact .quote-card-form,
    body.forge-theme .contact .quote-card-form {
        grid-template-columns: 1fr !important;
        padding: 20px !important;
    }

    .contact .quote-card-form .form-group,
    body.forge-theme .contact .quote-card-form .form-group {
        grid-column: 1 / -1 !important;
    }

    .hero-lead-form {
        grid-template-columns: 1fr !important;
    }

    .hero-lead-form .hero-form-field {
        grid-column: 1 / -1 !important;
    }

    .footer,
    body.forge-theme .footer {
        padding: 55px 0 24px !important;
    }

    .footer-rich,
    body.forge-theme .footer-rich {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
    }

    .footer-lower,
    body.forge-theme .footer-lower {
        margin-top: 38px !important;
    }
}



/* =========================================================
   CLEARVENT SHARED SITE COMPONENTS — FINAL
   Navbar / Quote Form / Footer must match across all pages.
========================================================= */


/* ---------- NAVBAR ---------- */

body.forge-theme .navbar {
    min-height: 90px !important;
    height: 90px !important;
    background: #c7e5f4 !important;
    border-bottom: 1px solid rgba(8, 38, 61, 0.08) !important;
    box-shadow: 0 4px 14px rgba(11, 31, 51, 0.05) !important;
    backdrop-filter: none !important;
}

body.forge-theme .nav-container {
    max-width: 1180px !important;
    min-height: 90px !important;
    height: 90px !important;
    padding: 0 28px !important;
}

body.forge-theme nav > a,
body.forge-theme .services-button {
    color: #10283d !important;
    font-size: 15px !important;
    font-weight: 600 !important;
}

body.forge-theme .navbar .quote-button {
    background: #0b2940 !important;
    color: #fff !important;
    min-height: 48px !important;
    padding: 0 26px !important;
    border-radius: 12px !important;
}

body.forge-theme .navbar .phone-button {
    background: #3aa9c5 !important;
    color: #fff !important;
    border: 0 !important;
    min-height: 48px !important;
    padding: 0 25px !important;
    border-radius: 12px !important;
}


/* ---------- CONTACT SECTION ---------- */

body.forge-theme .contact {
    background: #eef8fd !important;
    padding: 110px 0 120px !important;
}

body.forge-theme .contact .container {
    max-width: 1180px !important;
}

body.forge-theme .contact-header {
    max-width: 720px !important;
    margin: 0 auto 48px !important;
    text-align: center !important;
}

body.forge-theme .contact-header .small-title {
    color: #319dbb !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: .12em !important;
}

body.forge-theme .contact-header h2 {
    color: #10283d !important;
    font-size: clamp(38px, 4vw, 50px) !important;
    line-height: 1.12 !important;
    margin: 12px 0 16px !important;
}

body.forge-theme .contact-header > p {
    color: #66798a !important;
    font-size: 17px !important;
}


/* ---------- QUOTE CARD ---------- */

body.forge-theme .service-quote-card,
body.forge-theme .contact-quote-card {
    width: 100% !important;
    max-width: 760px !important;
    margin: 0 auto !important;
    background: #fff !important;
    border-radius: 22px !important;
    overflow: hidden !important;
    border: 1px solid rgba(16, 40, 61, .08) !important;
    box-shadow: 0 22px 55px rgba(11, 31, 51, .12) !important;
}

body.forge-theme .service-quote-card .quote-card-header,
body.forge-theme .contact-quote-card .quote-card-header {
    background: #0b2940 !important;
    padding: 30px 34px 27px !important;
}

body.forge-theme .quote-card-header .hero-form-kicker {
    color: #49b3cc !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: .13em !important;
    text-transform: uppercase !important;
    margin-bottom: 6px !important;
}

body.forge-theme .quote-card-header h2 {
    color: #fff !important;
    font-size: 30px !important;
    line-height: 1.1 !important;
    margin: 0 0 7px !important;
}

body.forge-theme .quote-card-header p {
    color: rgba(255,255,255,.82) !important;
}


/* ---------- FORM ---------- */

body.forge-theme .quote-card-form {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;

    max-width: none !important;
    width: 100% !important;

    margin: 0 !important;
    padding: 32px 34px 36px !important;

    background: #fff !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

body.forge-theme .quote-card-form .form-group {
    margin: 0 !important;
}

body.forge-theme .quote-card-form .form-group:nth-of-type(5) {
    grid-column: 1 / -1 !important;
}

body.forge-theme .contact input,
body.forge-theme .contact textarea {
    width: 100% !important;
    border: 1px solid #cfdee7 !important;
    background: #f8fbfd !important;
    color: #10283d !important;
    border-radius: 11px !important;
    padding: 15px 16px !important;
    font-size: 15px !important;
    font-family: inherit !important;
}

body.forge-theme .contact input {
    min-height: 52px !important;
}

body.forge-theme .contact textarea {
    min-height: 125px !important;
    resize: vertical !important;
}

body.forge-theme .quote-card-form .quote-button {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    min-height: 54px !important;

    margin: 0 !important;

    background: #0b2940 !important;
    color: #fff !important;

    border: 0 !important;
    border-radius: 11px !important;

    font-size: 15px !important;
    font-weight: 700 !important;
}


/* ---------- FOOTER ---------- */

body.forge-theme .footer {
    background: #0b2940 !important;
    color: #fff !important;
    padding: 72px 0 28px !important;
}

body.forge-theme .footer .container {
    max-width: 1180px !important;
    padding-inline: 28px !important;
}

body.forge-theme .footer-rich {
    grid-template-columns: 1.35fr 1fr 1fr 1fr !important;
    gap: 58px !important;
}

body.forge-theme .footer h3 {
    color: #fff !important;
    font-size: 18px !important;
    letter-spacing: 0 !important;
}

body.forge-theme .footer p,
body.forge-theme .footer a {
    font-size: 15px !important;
    line-height: 1.65 !important;
}

body.forge-theme .footer p {
    color: rgba(255,255,255,.78) !important;
}

body.forge-theme .footer a {
    color: #fff !important;
}

body.forge-theme .footer-phone {
    font-size: 18px !important;
    font-weight: 800 !important;
}

body.forge-theme .footer-lower {
    margin-top: 58px !important;
    padding-top: 24px !important;
    border-top: 1px solid rgba(255,255,255,.14) !important;
}


/* ---------- MOBILE ---------- */

@media (max-width: 900px) {

    body.forge-theme .navbar,
    body.forge-theme .nav-container {
        height: auto !important;
        min-height: 74px !important;
    }

    body.forge-theme .contact {
        padding: 76px 0 82px !important;
    }

    body.forge-theme .quote-card-form {
        grid-template-columns: 1fr !important;
    }

    body.forge-theme .quote-card-form .form-group,
    body.forge-theme .quote-card-form .form-group:nth-of-type(5),
    body.forge-theme .quote-card-form .quote-button {
        grid-column: 1 / -1 !important;
    }

    body.forge-theme .footer-rich {
        grid-template-columns: 1fr 1fr !important;
        gap: 42px !important;
    }
}


@media (max-width: 600px) {

    body.forge-theme .contact {
        padding: 64px 0 70px !important;
    }

    body.forge-theme .contact-header {
        margin-bottom: 32px !important;
    }

    body.forge-theme .contact-header h2 {
        font-size: 36px !important;
    }

    body.forge-theme .service-quote-card .quote-card-header,
    body.forge-theme .contact-quote-card .quote-card-header {
        padding: 26px 22px 23px !important;
    }

    body.forge-theme .quote-card-form {
        padding: 22px !important;
        gap: 13px !important;
    }

    body.forge-theme .footer-rich {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
    }

    body.forge-theme .footer {
        padding: 55px 0 24px !important;
    }
}
/* =========================================================
   CONTACT SECTION CONTRAST
========================================================= */

.contact,
body.forge-theme .contact {
    background: #dff1f8 !important;
}

.contact-quote-card,
.service-quote-card,
body.forge-theme .contact-quote-card,
body.forge-theme .service-quote-card {
    background: #ffffff !important;

    box-shadow:
        0 22px 55px rgba(11, 31, 51, 0.14),
        0 0 0 1px rgba(31, 108, 137, 0.04) !important;
}
/* =========================================================
   DALLAS LOCATION LANDING PAGE
========================================================= */

.dallas-hero {
    padding: 135px 0 110px;
}

.dallas-hero .area-hero-inner {
    max-width: 900px;
}

.dallas-trust-strip {
    position: relative;
    z-index: 5;
    background: #fff;
    border-bottom: 1px solid #dce9ed;
    box-shadow: 0 12px 30px rgba(11, 42, 51, .06);
}

.dallas-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.dallas-trust-grid > div {
    padding: 28px 22px;
    text-align: center;
    border-right: 1px solid #e0ecef;
}

.dallas-trust-grid > div:last-child {
    border-right: 0;
}

.dallas-trust-grid strong,
.dallas-trust-grid span {
    display: block;
}

.dallas-trust-grid strong {
    margin-bottom: 5px;
    color: #0b6f88;
    font-size: 21px;
}

.dallas-trust-grid span {
    color: #647c83;
    font-size: 14px;
}


/* INTRO */

.dallas-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.dallas-kicker {
    display: block;
    margin-bottom: 12px;
    color: #0e8fae;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.dallas-intro-copy h2,
.dallas-location-grid h2 {
    margin: 0 0 22px;
    color: #0e2a33;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.12;
}

.dallas-intro-copy p,
.dallas-location-grid p {
    color: #607880;
    font-size: 17px;
    line-height: 1.8;
}

.dallas-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    margin-top: 30px;
}

.dallas-checks span {
    color: #153c47;
    font-weight: 700;
}

.dallas-intro-media {
    position: relative;
}

.dallas-intro-media img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(8, 39, 48, .16);
}

.dallas-media-label {
    position: absolute;
    right: 25px;
    bottom: 25px;
    left: 25px;
    padding: 20px 23px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 18px;
    background: rgba(7,34,43,.88);
    backdrop-filter: blur(12px);
}

.dallas-media-label strong,
.dallas-media-label span {
    display: block;
}

.dallas-media-label strong {
    color: #fff;
    font-size: 18px;
}

.dallas-media-label span {
    margin-top: 5px;
    color: #b9e9e6;
    font-size: 13px;
}


/* PROCESS */

.dallas-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

.dallas-process-card {
    position: relative;
    min-height: 270px;
    padding: 38px 32px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dbeaed;
    border-radius: 22px;
    box-shadow: 0 15px 35px rgba(10, 49, 60, .07);
}

.dallas-process-number {
    display: block;
    margin-bottom: 32px;
    color: #2fd6c0;
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
}

.dallas-process-card h3 {
    margin-bottom: 13px;
    color: #0e2a33;
    font-size: 23px;
}

.dallas-process-card p {
    color: #647b82;
    line-height: 1.7;
}


/* WORK */

.dallas-work-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr .85fr;
    gap: 20px;
}

.dallas-work-grid figure {
    height: 360px;
    margin: 0;
    overflow: hidden;
    border-radius: 22px;
    background: #e7f0f2;
}

.dallas-work-grid figure:first-child {
    height: 440px;
}

.dallas-work-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.dallas-work-grid figure:hover img {
    transform: scale(1.035);
}


/* LOCATION */

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

.dallas-nearby {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 27px 0 32px;
}

.dallas-nearby span {
    padding: 9px 15px;
    background: #fff;
    border: 1px solid #d7e7ea;
    border-radius: 999px;
    color: #355c66;
    font-size: 14px;
    font-weight: 700;
}

.dallas-map {
    overflow: hidden;
    height: 470px;
    border-radius: 26px;
    box-shadow: 0 22px 55px rgba(7, 40, 50, .13);
}

.dallas-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* MOBILE */

@media (max-width: 900px) {

    .dallas-trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dallas-trust-grid > div:nth-child(2) {
        border-right: 0;
    }

    .dallas-intro-grid,
    .dallas-location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dallas-process-grid {
        grid-template-columns: 1fr;
    }

    .dallas-work-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dallas-work-grid figure:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {

    .dallas-hero {
        padding: 90px 0 75px;
    }

    .dallas-trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dallas-trust-grid > div {
        padding: 20px 10px;
    }

    .dallas-trust-grid strong {
        font-size: 17px;
    }

    .dallas-intro-media img {
        height: 350px;
    }

    .dallas-checks {
        grid-template-columns: 1fr;
    }

    .dallas-work-grid {
        grid-template-columns: 1fr;
    }

    .dallas-work-grid figure,
    .dallas-work-grid figure:first-child {
        grid-column: auto;
        height: 300px;
    }

    .dallas-map {
        height: 360px;
    }
}


/* =========================================================
   DALLAS LOCATION HERO V2
========================================================= */

.dallas-local-hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    color: #fff;
    background: #0b2639;
}

.dallas-local-hero-bg {
    position: absolute;
    inset: 0;

    background-image:
        url('/media/img_0002-PHOTO-2025-11-08-22-35-39-5ac6d6ed60.jpg');

    background-size: cover;
    background-position: center;
}

.dallas-local-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 28, 44, .96) 0%,
            rgba(5, 28, 44, .88) 43%,
            rgba(5, 28, 44, .63) 72%,
            rgba(5, 28, 44, .48) 100%
        );
}

.dallas-local-hero-layout {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(400px, .92fr);

    gap: 80px;

    align-items: center;

    min-height: 720px;

    padding-top: 78px;
    padding-bottom: 78px;
}


/* LEFT SIDE */

.dallas-local-hero-copy {
    max-width: 650px;
}

.dallas-local-kicker {
    display: flex;
    align-items: center;
    gap: 12px;

    margin: 0 0 22px;

    color: #8edcee;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: .14em;
    text-transform: uppercase;
}

.dallas-local-kicker::before {
    content: "";

    display: block;

    width: 4px;
    height: 24px;

    border-radius: 5px;

    background: #3dafca;
}

.dallas-local-hero h1 {
    max-width: 680px;

    margin: 0;

    color: #fff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(48px, 5vw, 72px);
    line-height: 1.02;

    letter-spacing: -.025em;
}

.dallas-local-hero h1 span {
    display: block;

    margin-top: 7px;

    color: #fff;
}

.dallas-local-lead {
    max-width: 600px;

    margin: 28px 0 0;

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

    font-size: 18px;
    line-height: 1.75;
}


/* BENEFITS */

.dallas-local-points {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 15px 28px;

    margin-top: 30px;
}

.dallas-local-points span {
    color: rgba(255,255,255,.94);

    font-size: 15px;
    font-weight: 700;
}


/* ACTIONS */

.dallas-local-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 34px;
}

.dallas-local-actions .phone-button,
.dallas-local-actions .quote-button {
    min-height: 54px;

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

    padding: 0 24px;

    border-radius: 12px;

    font-weight: 800;
}

.dallas-local-actions .phone-button {
    border: 0;

    background: #3ba9c4;
    color: #fff;
}

.dallas-local-actions .quote-button {
    border: 1px solid rgba(255,255,255,.48);

    background: rgba(10,38,58,.64);
    color: #fff;

    backdrop-filter: blur(8px);
}


/* =========================================================
   HERO QUOTE CARD
========================================================= */

.dallas-hero-quote {
    width: 100%;
    max-width: 500px;

    justify-self: end;

    overflow: hidden;

    padding: 0;

    border: 1px solid rgba(255,255,255,.35);
    border-radius: 22px;

    background: #fff;

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

.dallas-hero-quote .quote-card-header {
    position: relative;

    padding: 28px 30px 25px;

    background: #0b2940;
}

.dallas-hero-quote .quote-card-header::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 5px;

    background: #3ba9c4;
}

.dallas-hero-quote .hero-form-kicker {
    margin: 0 0 5px;

    color: #61bed4;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .13em;
    text-transform: uppercase;
}

.dallas-hero-quote .quote-card-header h2 {
    margin: 0 0 7px;

    color: #fff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 30px;
    line-height: 1.1;
}

.dallas-hero-quote .quote-card-header > p:last-child {
    margin: 0;

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

    font-size: 14px;
}


/* FORM */

.dallas-hero-quote .quote-card-form {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 13px;

    width: 100%;

    margin: 0;

    padding: 28px;

    background: #fff;
}

.dallas-hero-quote .form-group {
    margin: 0;
}

.dallas-hero-quote .form-group:nth-of-type(5) {
    grid-column: 1 / -1;
}

.dallas-hero-quote input,
.dallas-hero-quote textarea {
    width: 100%;

    border: 1px solid #d2e0e7;
    border-radius: 11px;

    background: #f7fbfd;
    color: #10283d;

    padding: 14px 15px;

    font: inherit;
}

.dallas-hero-quote input {
    min-height: 52px;
}

.dallas-hero-quote textarea {
    min-height: 105px;

    resize: vertical;
}

.dallas-hero-quote .quote-button {
    grid-column: 1 / -1;

    width: 100%;
    min-height: 54px;

    border: 0;
    border-radius: 11px;

    background: #0b2940;
    color: #fff;

    font-weight: 800;
}

.dallas-hero-quote .lead-form-message {
    grid-column: 1 / -1;
}


/* =========================================================
   LOCATION PAGE NAVBAR SAFETY
========================================================= */

.area-page ~ *,
body:has(.dallas-local-hero) .navbar {
    font-size: initial;
}

body:has(.dallas-local-hero) .nav-container {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    padding-left: 28px;
    padding-right: 28px;
}

body:has(.dallas-local-hero) #nav-menu {
    gap: 6px;
}

body:has(.dallas-local-hero) #nav-menu > a,
body:has(.dallas-local-hero) .services-button {
    padding-left: 13px;
    padding-right: 13px;

    white-space: nowrap;
}


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

@media (max-width: 1000px) {

    .dallas-local-hero-layout {
        grid-template-columns: 1fr;

        gap: 45px;

        padding-top: 70px;
        padding-bottom: 70px;
    }

    .dallas-local-hero-copy {
        max-width: 720px;
    }

    .dallas-hero-quote {
        max-width: 650px;

        justify-self: start;
    }
}


@media (max-width: 700px) {

    .dallas-local-hero {
        min-height: 0;
    }

    .dallas-local-hero-layout {
        min-height: 0;

        padding-top: 55px;
        padding-bottom: 55px;
    }

    .dallas-local-hero h1 {
        font-size: 43px;
    }

    .dallas-local-lead {
        font-size: 16px;
    }

    .dallas-local-points {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .dallas-local-actions {
        flex-direction: column;
    }

    .dallas-local-actions .phone-button,
    .dallas-local-actions .quote-button {
        width: 100%;
    }

    .dallas-hero-quote {
        max-width: none;
    }

    .dallas-hero-quote .quote-card-form {
        grid-template-columns: 1fr;

        padding: 20px;
    }

    .dallas-hero-quote .form-group {
        grid-column: 1 / -1;
    }
}

/* Dallas hero top clearance */
.dallas-local-hero-layout {
    padding-top: 110px !important;
}

@media (max-width: 700px) {
    .dallas-local-hero-layout {
        padding-top: 80px !important;
    }
}


/* =========================================================
   CLEARVENT LOCATIONS DIRECTORY V2
========================================================= */

.locations-main-hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: #0b2639;
    color: #fff;
}

.locations-main-bg {
    position: absolute;
    inset: 0;

    background-image:
        url('/media/img_0002-PHOTO-2025-11-08-22-35-39-5ac6d6ed60.jpg');

    background-size: cover;
    background-position: center;
}

.locations-main-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5,28,44,.97) 0%,
            rgba(5,28,44,.90) 43%,
            rgba(5,28,44,.67) 73%,
            rgba(5,28,44,.52) 100%
        );
}

.locations-main-layout {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 75px;

    align-items: center;

    min-height: 650px;

    padding-top: 95px;
    padding-bottom: 80px;
}


/* LEFT */

.locations-main-copy {
    max-width: 670px;
}

.locations-main-kicker {
    margin: 0 0 18px;

    color: #49b3cc;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: .14em;
    text-transform: uppercase;
}

.locations-main-copy h1 {
    margin: 0;

    color: #fff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(48px, 5vw, 70px);
    line-height: 1.02;

    letter-spacing: -.025em;
}

.locations-main-copy h1 span {
    display: block;

    margin-top: 7px;

    color: #fff;
}

.locations-main-lead {
    max-width: 620px;

    margin: 27px 0 0;

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

    font-size: 18px;
    line-height: 1.7;
}

.locations-main-points {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 14px 25px;

    margin-top: 28px;
}

.locations-main-points span {
    color: rgba(255,255,255,.94);
    font-size: 15px;
    font-weight: 700;
}

.locations-main-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 34px;
}

.locations-main-actions .phone-button,
.locations-main-actions .quote-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;

    padding: 0 24px;

    border-radius: 12px;

    font-weight: 800;
}

.locations-main-actions .phone-button {
    border: 0;

    background: #3ba9c4;
    color: #fff;
}

.locations-main-actions .quote-button {
    border: 1px solid rgba(255,255,255,.45);

    background: rgba(8,38,58,.68);
    color: #fff;
}


/* SEARCH CARD */

.locations-search-card {
    width: 100%;
    max-width: 480px;

    justify-self: end;

    padding: 38px;

    border: 1px solid rgba(255,255,255,.3);
    border-radius: 22px;

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

    box-shadow: 0 30px 70px rgba(0,0,0,.25);

    color: #10283d;
}

.locations-search-kicker {
    margin: 0 0 7px;

    color: #319fbb;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .14em;
    text-transform: uppercase;
}

.locations-search-card h2 {
    margin: 0 0 12px;

    color: #10283d;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 32px;
    line-height: 1.12;
}

.locations-search-card > p {
    color: #647986;

    line-height: 1.65;
}

.locations-search-box {
    margin-top: 25px;
}

.locations-search-box .city-search {
    width: 100%;

    min-height: 56px;

    padding: 0 17px;

    border: 1px solid #cddde5;
    border-radius: 12px;

    background: #f6fafc;

    color: #10283d;

    font-size: 16px;
}

.locations-featured-links {
    display: flex;
    flex-wrap: wrap;

    gap: 9px;

    margin-top: 18px;
}

.locations-featured-links a,
.locations-featured-links span {
    padding: 8px 12px;

    border: 1px solid #d5e5eb;
    border-radius: 999px;

    background: #eef7fa;

    color: #315866;

    font-size: 13px;
    font-weight: 700;
}

.locations-featured-links a {
    color: #087f9d;
}


/* =========================================================
   DIRECTORY
========================================================= */

.location-directory-section {
    padding: 105px 0;

    background: #f5fbfd;
}

.location-directory-heading {
    max-width: 760px;

    margin: 0 auto 48px;

    text-align: center;
}

.location-directory-heading h2 {
    margin: 8px 0 15px;

    color: #10283d;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(36px, 4vw, 50px);
}

.location-directory-heading > p:last-child {
    color: #647986;

    font-size: 17px;
    line-height: 1.65;
}

.location-directory-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 15px;
}

.location-directory-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 130px;

    padding: 22px;

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

    background: #fff;

    color: #10283d;

    box-shadow:
        0 8px 22px rgba(15,65,80,.045);

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

a.location-directory-card:hover {
    transform: translateY(-3px);

    border-color: #72c8db;

    box-shadow:
        0 14px 30px rgba(15,65,80,.10);
}

.location-card-city {
    display: block;

    color: #10283d;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 19px;
    font-weight: 700;
}

.location-card-copy {
    margin-top: 8px;

    color: #71858e;

    font-size: 13px;
}

.location-card-arrow {
    position: absolute;

    right: 18px;
    bottom: 17px;

    color: #159ab9;

    font-size: 21px;
}

.location-page-live {
    border-color: #a9dce7;

    background:
        linear-gradient(
            145deg,
            #fff,
            #eef9fc
        );
}

.location-page-live::before {
    content: "LOCAL PAGE";

    position: absolute;

    top: 15px;
    right: 15px;

    color: #159ab9;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: .08em;
}


/* CTA */

.location-directory-banner {
    padding: 60px 0;

    background: #dff1f8;
}

.location-directory-banner-inner {
    display: flex;

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

    gap: 35px;
}

.location-directory-banner h2 {
    margin: 4px 0 8px;

    color: #10283d;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 34px;
}

.location-directory-banner p {
    color: #5e7580;
}

.location-directory-banner .phone-button {
    flex-shrink: 0;

    border: 0;

    background: #3ba9c4;
    color: #fff;
}


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

@media (max-width: 1000px) {

    .locations-main-layout {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .locations-search-card {
        justify-self: start;

        max-width: 650px;
    }

    .location-directory-grid {
        grid-template-columns:
            repeat(3, minmax(0,1fr));
    }
}


@media (max-width: 760px) {

    .locations-main-layout {
        min-height: 0;

        padding-top: 72px;
        padding-bottom: 65px;
    }

    .locations-main-copy h1 {
        font-size: 43px;
    }

    .locations-main-points {
        grid-template-columns: 1fr;
    }

    .locations-main-actions {
        flex-direction: column;
    }

    .locations-main-actions .phone-button,
    .locations-main-actions .quote-button {
        width: 100%;
    }

    .locations-search-card {
        padding: 26px;
    }

    .location-directory-section {
        padding: 75px 0;
    }

    .location-directory-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

    .location-directory-banner-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}


@media (max-width: 480px) {

    .location-directory-grid {
        grid-template-columns: 1fr;
    }

}



/* =========================================================
   LOCATION PAGE — UNIQUE LOCAL CONTENT
========================================================= */

.city-local-content {
    padding: 105px 0;
    background: #ffffff;
}

.city-local-layout {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 70px;
    align-items: start;
}

.city-local-copy {
    max-width: 720px;
}

.city-local-copy h2 {
    margin: 8px 0 24px;

    color: #10283d;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(36px, 4vw, 49px);
    line-height: 1.12;
}

.city-local-copy p {
    margin: 0 0 19px;

    color: #607781;

    font-size: 17px;
    line-height: 1.8;
}

.city-local-panel {
    position: sticky;
    top: 115px;

    padding: 32px;

    border: 1px solid #d4e6eb;
    border-radius: 22px;

    background: #eff8fb;

    box-shadow:
        0 16px 40px rgba(12, 58, 72, .08);
}

.city-local-panel h3 {
    margin: 5px 0 21px;

    color: #10283d;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 26px;
}

.city-local-links {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin-bottom: 26px;
}

.city-local-links a,
.city-local-links span {
    display: block;

    padding: 10px 12px;

    border: 1px solid #d2e4e9;
    border-radius: 10px;

    background: #fff;

    color: #315b67;

    font-size: 13px;
    font-weight: 700;
}

.city-local-links a:hover {
    border-color: #67bfd3;
    color: #0e8fae;
}

.city-local-panel > .quote-button {
    width: 100%;

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


/* Existing nearby city chips can now be links */

.dallas-nearby a {
    padding: 9px 15px;

    background: #fff;

    border: 1px solid #d7e7ea;
    border-radius: 999px;

    color: #355c66;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}

.dallas-nearby a:hover {
    color: #0e8fae;
    border-color: #71c5d8;
}


/* City FAQ */

.city-location-faq {
    background: #eef8fb !important;
}


@media (max-width: 900px) {

    .city-local-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .city-local-panel {
        position: static;
    }
}


@media (max-width: 560px) {

    .city-local-content {
        padding: 72px 0;
    }

    .city-local-links {
        grid-template-columns: 1fr;
    }

    .city-local-panel {
        padding: 24px;
    }
}



/* =========================================================
   CLEARVENT LOCATIONS MEGA MENU
========================================================= */

.locations-menu {
    position: relative;
}


/* Parent + triangle */

.locations-nav-head {
    display: flex;
    align-items: center;

    position: relative;
}

.locations-parent-link {
    display: inline-flex;
    align-items: center;

    padding: 10px 6px 10px 13px;

    color: #10283d;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;
    white-space: nowrap;
}

.locations-toggle {
    position: relative;

    width: 30px;
    height: 38px;

    padding: 0;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.locations-toggle::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 7px;
    height: 7px;

    border-right: 2px solid #1498b6;
    border-bottom: 2px solid #1498b6;

    transform:
        translate(-50%, -65%)
        rotate(45deg);

    transition: transform .2s ease;
}

.locations-menu.open
.locations-toggle::after {
    transform:
        translate(-50%, -30%)
        rotate(225deg);
}


/* =========================================================
   DESKTOP DROPDOWN
========================================================= */

.locations-dropdown {
    position: absolute;

    top: calc(100% + 14px);
    left: 50%;

    width: min(940px, 92vw);

    padding: 24px;

    border: 1px solid #d3e4ea;
    border-radius: 20px;

    background: #fff;

    box-shadow:
        0 26px 65px rgba(7, 37, 52, .18);

    opacity: 0;
    visibility: hidden;

    transform:
        translateX(-50%)
        translateY(10px);

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

    z-index: 300;
}


/* Keep dropdown open on hover */

@media (min-width: 901px) {

    .locations-menu:hover .locations-dropdown,
    .locations-menu:focus-within .locations-dropdown,
    .locations-menu.open .locations-dropdown {
        opacity: 1;
        visibility: visible;

        transform:
            translateX(-50%)
            translateY(0);
    }

}


/* HEADER */

.locations-dropdown-header {
    display: flex;

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

    gap: 30px;

    margin-bottom: 20px;
    padding: 4px 5px 18px;

    border-bottom: 1px solid #deebef;
}

.locations-dropdown-header > div {
    display: flex;
    flex-direction: column;
}

.locations-dropdown-kicker {
    margin-bottom: 4px;

    color: #1498b6;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .12em;
    text-transform: uppercase;
}

.locations-dropdown-header strong {
    color: #10283d;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 22px;
}

.locations-view-all {
    color: #087f9d !important;

    font-size: 14px !important;
    font-weight: 800 !important;

    white-space: nowrap;
}


/* =========================================================
   REGIONS
========================================================= */

.locations-region-grid {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(0,1fr));

    gap: 10px;
}

.location-nav-region {
    min-width: 0;

    padding: 13px;

    border-radius: 14px;
}

.location-nav-region:hover {
    background: #f2f9fb;
}

.location-nav-region-head {
    display: flex;

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

    margin-bottom: 9px;
}

.location-nav-region-title {
    color: #10283d !important;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 15px !important;
    font-weight: 700 !important;

    line-height: 1.25;
}

.location-region-toggle {
    display: none;
}

.location-nav-region-links {
    display: flex;
    flex-direction: column;

    gap: 2px;
}

.location-nav-region-links a {
    display: block;

    padding: 6px 7px !important;

    border-radius: 7px;

    color: #5b727c !important;

    font-size: 12.5px !important;
    font-weight: 600 !important;

    line-height: 1.2;

    text-decoration: none;
}

.location-nav-region-links a:hover {
    background: #e5f4f8;

    color: #087f9d !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .locations-menu {
        width: 100%;

        border-bottom:
            1px solid rgba(12,70,90,.14);
    }

    .locations-nav-head {
        width: 100%;

        justify-content: space-between;
    }

    .locations-parent-link {
        flex: 1;

        padding: 15px 8px 15px 0 !important;

        color: #0b839f !important;

        font-size: 16px !important;
        font-weight: 800 !important;

        border-bottom: 0 !important;
    }

    .locations-toggle {
        width: 52px;
        height: 52px;

        flex-shrink: 0;
    }


    /* Dropdown becomes normal mobile content */

    .locations-dropdown {
        position: static;

        width: 100%;

        max-height: 0;

        padding: 0;

        overflow: hidden;

        border: 0;
        border-radius: 0;

        background: #f4fbfd;

        box-shadow: none;

        opacity: 1;
        visibility: visible;

        transform: none;

        transition:
            max-height .35s ease,
            padding .25s ease;
    }

    .locations-menu.open .locations-dropdown {
        max-height: 2600px;

        padding: 16px 12px 20px;
    }


    .locations-dropdown-header {
        align-items: flex-start;

        margin-bottom: 10px;
        padding: 4px 4px 14px;
    }

    .locations-dropdown-header strong {
        font-size: 19px;
    }

    .locations-view-all {
        font-size: 12px !important;
    }


    /* Each geographic region collapses */

    .locations-region-grid {
        display: block;
    }

    .location-nav-region {
        padding: 0;

        border-bottom:
            1px solid #d9e9ee;

        border-radius: 0;
    }

    .location-nav-region:hover {
        background: transparent;
    }

    .location-nav-region-head {
        margin: 0;
    }

    .location-nav-region-title {
        flex: 1;

        padding: 14px 6px !important;

        color: #16475a !important;

        font-size: 15px !important;
    }

    .location-region-toggle {
        position: relative;

        display: block;

        width: 48px;
        height: 48px;

        flex-shrink: 0;

        border: 0;

        background: transparent;

        cursor: pointer;
    }

    .location-region-toggle::after {
        content: "";

        position: absolute;

        top: 50%;
        left: 50%;

        width: 7px;
        height: 7px;

        border-right: 2px solid #1498b6;
        border-bottom: 2px solid #1498b6;

        transform:
            translate(-50%, -65%)
            rotate(45deg);

        transition:
            transform .2s ease;
    }

    .location-nav-region.open
    .location-region-toggle::after {
        transform:
            translate(-50%, -30%)
            rotate(225deg);
    }

    .location-nav-region-links {
        display: grid;

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

        gap: 5px;

        max-height: 0;

        overflow: hidden;

        padding: 0 4px;

        transition:
            max-height .3s ease,
            padding .25s ease;
    }

    .location-nav-region.open
    .location-nav-region-links {
        max-height: 600px;

        padding: 0 4px 14px;
    }

    .location-nav-region-links a {
        padding: 9px 10px !important;

        background: #fff;

        border: 1px solid #dcebef;
        border-radius: 8px;

        color: #42616c !important;

        font-size: 12px !important;
    }

}


@media (max-width: 480px) {

    .location-nav-region-links {
        grid-template-columns: 1fr;
    }

}



/* =========================================================
   CLEARVENT SOCIAL SECTION
========================================================= */

.social-section {
    padding: 90px 0;
    background: #eef8fb;
}

.social-section-inner {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.social-section-copy {
    max-width: 520px;
}

.social-section-copy h2 {
    margin: 8px 0 18px;

    color: #10283d;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(36px, 4vw, 48px);
    line-height: 1.12;
}

.social-section-copy > p:last-child {
    color: #617985;

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

.social-links-large {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
}

.social-card {
    display: flex;
    align-items: center;

    gap: 15px;

    min-height: 110px;

    padding: 22px;

    border: 1px solid #d4e6eb;
    border-radius: 18px;

    background: #fff;

    color: #10283d;

    text-decoration: none;

    box-shadow:
        0 10px 28px rgba(12, 65, 80, .06);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.social-card:hover {
    transform: translateY(-3px);

    border-color: #73c8da;

    box-shadow:
        0 16px 35px rgba(12, 65, 80, .11);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    flex-shrink: 0;

    border-radius: 13px;

    background: #0b2940;
    color: #fff;
}

.social-icon svg {
    width: 22px;
    height: 22px;
}

.social-card strong,
.social-card small {
    display: block;
}

.social-card strong {
    color: #10283d;

    font-size: 16px;
}

.social-card small {
    margin-top: 3px;

    color: #738891;

    font-size: 12px;
}


/* =========================================================
   FOOTER SOCIAL ICONS
========================================================= */

.footer-social-links {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-top: 18px;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    padding: 0 !important;

    border: 1px solid rgba(255,255,255,.20);
    border-radius: 11px;

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

    color: #fff !important;

    transition:
        background .18s ease,
        border-color .18s ease,
        transform .18s ease;
}

.footer-social-links a:hover {
    transform: translateY(-2px);

    background: #3ba9c4;

    border-color: #3ba9c4;
}

.footer-social-links svg {
    width: 19px;
    height: 19px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .social-section-inner {
        grid-template-columns: 1fr;

        gap: 38px;
    }

    .social-links-large {
        grid-template-columns: repeat(3,1fr);
    }
}


@media (max-width: 650px) {

    .social-section {
        padding: 70px 0;
    }

    .social-links-large {
        grid-template-columns: 1fr;
    }

    .social-card {
        min-height: 88px;
    }
}


/* =========================================================
   CLEARVENT UNIFIED SECTION PALETTE — FINAL
========================================================= */

:root {
    --cv-teal: #d9eef0;
    --cv-blue: #c8dde8;
    --cv-text: #10283d;
    --cv-muted: #607985;
}


/* =========================================================
   TEAL SECTIONS
========================================================= */

.services,
.benefits-section,
.process-section,
.faq,
.coverage-section,
.social-section,
.service-detail-section,
.service-reference-media,
.dallas-intro,
.dallas-location-section,
.city-local-content,
.location-directory-section {

    background-color: var(--cv-teal) !important;
}


/* =========================================================
   BLUE SECTIONS
========================================================= */

.why-us,
.reviews,
.project-gallery,
.contact,
.service-education,
.reference-insights,
.dallas-work,
.area-section.alt,
.location-directory-banner {

    background-color: var(--cv-blue) !important;
}


/* =========================================================
   SOFT INTERNAL BLENDING
   Does NOT touch cards/images.
========================================================= */

.services,
.benefits-section,
.process-section,
.faq,
.coverage-section,
.social-section,
.service-detail-section,
.service-reference-media,
.dallas-intro,
.dallas-location-section,
.city-local-content,
.location-directory-section {

    background-image:
        linear-gradient(
            to bottom,
            var(--cv-teal) 0%,
            var(--cv-teal) 82%,
            var(--cv-blue) 100%
        ) !important;
}


.why-us,
.reviews,
.project-gallery,
.contact,
.service-education,
.reference-insights,
.dallas-work,
.area-section.alt,
.location-directory-banner {

    background-image:
        linear-gradient(
            to bottom,
            var(--cv-blue) 0%,
            var(--cv-blue) 82%,
            var(--cv-teal) 100%
        ) !important;
}


/* =========================================================
   TEXT
========================================================= */

.services h2,
.benefits-section h2,
.process-section h2,
.faq h2,
.coverage-section h2,
.social-section h2,
.why-us h2,
.reviews h2,
.project-gallery h2,
.contact h2 {

    color: var(--cv-text);
}


/* =========================================================
   HEROES KEEP THEIR PHOTOGRAPHIC DESIGN
========================================================= */

.hero,
.conversion-hero,
.dallas-local-hero,
.locations-main-hero {

    background-image: initial;
}


/* =========================================================
   FOOTER REMAINS BLUE
========================================================= */

.footer {
    background: #12364b !important;
}



/* =========================================================
   CLEARVENT SERVICES V3
========================================================= */

.services-v3 {
    padding: 105px 0 115px !important;
}

.services-v3-header {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.services-v3-header h2 {
    margin: 8px 0 13px;

    color: #10283d;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(38px, 4vw, 51px);
    line-height: 1.12;
}

.services-v3-header > p:last-child {
    color: #607985;

    font-size: 17px;
    line-height: 1.65;
}


.services-v3-grid {
    display: grid;

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

    gap: 24px;

    max-width: 1200px;

    margin: 0 auto;
}


/* CARD */

.service-v3-card {
    display: grid;

    grid-template-columns:
        minmax(145px, .9fr)
        minmax(0, 1.35fr);

    min-height: 265px;

    overflow: hidden;

    border: 1px solid
        rgba(65, 111, 126, .18);

    border-radius: 19px;

    background: #fff;

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

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.service-v3-card:hover {
    transform: translateY(-4px);

    border-color:
        rgba(35, 163, 191, .48);

    box-shadow:
        0 20px 42px rgba(15, 58, 73, .14);
}


/* IMAGE */

.service-v3-image {
    display: block;

    min-width: 0;

    overflow: hidden;

    background: #c9dce3;
}

.service-v3-image img {
    display: block;

    width: 100%;
    height: 100%;

    min-height: 265px;

    object-fit: cover;

    transition: transform .35s ease;
}

.service-v3-card:hover
.service-v3-image img {
    transform: scale(1.035);
}


/* CONTENT */

.service-v3-content {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    padding: 25px 24px 22px;
}

.service-v3-heading {
    display: flex;
    align-items: center;

    gap: 11px;

    width: 100%;

    margin-bottom: 14px;
}

.service-v3-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 39px;
    height: 39px;

    flex: 0 0 39px;

    border-radius: 50%;

    background: #e3f5f7;

    color: #179bb8;

    font-size: 20px;
    font-weight: 800;
}

.service-v3-heading h3 {
    margin: 0;

    color: #10283d !important;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 20px;
    line-height: 1.2;
}

.service-v3-content > p {
    flex: 1;

    margin: 0 0 19px;

    color: #586f7b !important;

    font-size: 14px;
    line-height: 1.65;
}


/* BUTTON */

.service-v3-button {
    display: inline-flex;

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

    gap: 8px;

    min-height: 42px;

    padding: 0 17px;

    border-radius: 9px;

    background: #22a5c0;

    color: #fff !important;

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;

    box-shadow:
        0 7px 16px rgba(34, 165, 192, .20);

    transition:
        background .18s ease,
        transform .18s ease;
}

.service-v3-button:hover {
    background: #168da8;

    transform: translateY(-1px);
}


/* =========================================================
   SERVICE CARD RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .services-v3-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

}


@media (max-width: 700px) {

    .services-v3 {
        padding: 75px 0 80px !important;
    }

    .services-v3-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .service-v3-card {
        grid-template-columns: 1fr;

        min-height: 0;
    }

    .service-v3-image img {
        height: 220px;
        min-height: 220px;
    }

    .service-v3-content {
        padding: 23px;
    }

}



/* =========================================================
   FOOTER BUSINESS HOURS
========================================================= */

.footer-hours-column {
    min-width: 190px;
}

.footer-hours {
    display: flex;
    flex-direction: column;

    gap: 7px;
}

.footer-hours > div {
    display: flex;

    justify-content: space-between;

    gap: 16px;

    padding-bottom: 6px;

    border-bottom:
        1px solid rgba(255,255,255,.09);

    color:
        rgba(255,255,255,.78);
}

.footer-hours span {
    font-size: 12px;
}

.footer-hours strong {
    color: #fff;

    font-size: 12px;
    font-weight: 700;

    white-space: nowrap;
}


/*
   Five-column desktop footer:
   Brand / Services / Areas / Hours / Company
*/

.footer-rich {
    grid-template-columns:
        1.25fr
        1fr
        .95fr
        1.05fr
        .8fr !important;

    gap: 44px !important;
}


@media (max-width: 1100px) {

    .footer-rich {
        grid-template-columns:
            repeat(3, minmax(0,1fr))
            !important;
    }

}


@media (max-width: 760px) {

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

    .footer-hours {
        max-width: 330px;
    }

}



/* =========================================================
   FIVE-SERVICE CARD LAYOUT
========================================================= */

.services-v3-grid {
    grid-template-columns:
        repeat(6, minmax(0, 1fr)) !important;

    max-width: 1320px !important;

    gap: 26px !important;
}


/* First row: three cards */
.service-v3-card {
    grid-column: span 2;
}


/* Bottom row: two centered, wider cards */
.service-v3-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.service-v3-card:nth-child(5) {
    grid-column: 4 / span 2;
}


@media (max-width: 1100px) {

    .services-v3-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr)) !important;
    }

    .service-v3-card,
    .service-v3-card:nth-child(4),
    .service-v3-card:nth-child(5) {
        grid-column: auto;
    }

}


@media (max-width: 700px) {

    .services-v3-grid {
        grid-template-columns: 1fr !important;
    }

}



/* =========================================================
   CLEARVENT GLOBAL NAV FINAL FIX
========================================================= */

/* Never generate a second Services label */
.services-menu::before,
.services-menu::after,
.services-button::before,
.services-button::after {
    content: none !important;
}


/* Normal Services button */
.services-button,
body.forge-theme .services-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 7px !important;

    height: 46px !important;

    padding: 0 8px !important;

    line-height: 1 !important;

    vertical-align: middle !important;

    color: #10283d !important;

    background: transparent !important;
}


/* We will draw the triangle ourselves */
.services-button {
    font-size: 0 !important;
}

.services-button::before {
    content: "Services" !important;

    font-size: 15px !important;
    font-weight: 700 !important;

    color: #10283d !important;
}

.services-button::after {
    content: "" !important;

    width: 6px !important;
    height: 6px !important;

    margin-left: 6px !important;

    border-right: 2px solid #179bb8 !important;
    border-bottom: 2px solid #179bb8 !important;

    transform: rotate(45deg) translateY(-2px);

    transition: transform .2s ease;
}


/* Navbar CTA buttons */
.nav-buttons,
body.forge-theme .nav-buttons {
    display: flex !important;
    align-items: center !important;

    gap: 12px !important;
}


.nav-buttons .phone-button,
.nav-buttons .quote-button,
body.forge-theme .nav-buttons .phone-button,
body.forge-theme .nav-buttons .quote-button {
    display: inline-flex !important;

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

    height: 48px !important;
    min-height: 48px !important;

    padding: 0 24px !important;

    line-height: 1 !important;

    margin: 0 !important;
}



/* =========================================================
   CLEARVENT FOOTER — SAME ON EVERY PAGE
========================================================= */

.footer,
body.forge-theme .footer {
    background: #12364b !important;

    padding: 72px 0 28px !important;
}


.footer-rich,
body.forge-theme .footer-rich,
.footer-container.footer-rich,
body.forge-theme .footer-container.footer-rich {
    display: grid !important;

    grid-template-columns:
        1.35fr
        1fr
        .95fr
        1.1fr
        .8fr !important;

    align-items: start !important;

    gap: 45px !important;

    max-width: 1260px !important;
}


/* Prevent old themed footer layout */
body.forge-theme .footer-column,
.footer-column {
    width: auto !important;

    margin: 0 !important;

    grid-column: auto !important;
    grid-row: auto !important;
}


.footer-brand-column {
    max-width: 260px;
}


.footer-column h3,
body.forge-theme .footer-column h3 {
    margin: 0 0 18px !important;

    color: #fff !important;

    font-size: 16px !important;
    font-weight: 800 !important;
}


.footer-column > a,
body.forge-theme .footer-column > a {
    display: block;

    margin: 0 0 10px !important;

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

    font-size: 13px !important;
    line-height: 1.45 !important;
}


.footer-brand-column p {
    margin: 17px 0 !important;

    color: rgba(255,255,255,.76) !important;

    font-size: 13px !important;
    line-height: 1.65 !important;
}


.footer-phone {
    margin-bottom: 15px !important;

    color: #fff !important;

    font-size: 16px !important;
    font-weight: 800 !important;
}


/* HOURS */

.footer-hours {
    width: 100% !important;
}

.footer-hours > div {
    display: flex !important;

    justify-content: space-between !important;

    gap: 14px !important;

    padding: 7px 0 !important;

    border-bottom:
        1px solid rgba(255,255,255,.10) !important;
}

.footer-hours span,
.footer-hours strong {
    font-size: 11px !important;
}


/* Bottom copyright/legal row */

.footer-lower,
body.forge-theme .footer-lower {
    display: flex !important;

    align-items: center !important;
    justify-content: space-between !important;

    gap: 25px !important;

    max-width: 1260px !important;

    margin-top: 50px !important;
    padding-top: 22px !important;

    border-top:
        1px solid rgba(255,255,255,.13) !important;
}


/* TABLET */

@media (max-width: 1100px) {

    .footer-rich,
    body.forge-theme .footer-rich {
        grid-template-columns:
            repeat(3, minmax(0,1fr)) !important;

        gap: 40px !important;
    }

}


/* MOBILE */

@media (max-width: 700px) {

    .footer-rich,
    body.forge-theme .footer-rich {
        grid-template-columns: 1fr !important;

        gap: 34px !important;
    }

    .footer-lower,
    body.forge-theme .footer-lower {
        flex-direction: column !important;

        align-items: flex-start !important;
    }

}



/* =========================================================
   CLEARVENT NAV — CLEAN FINAL OVERRIDE
========================================================= */


/* ---------------------------------------------------------
   SERVICES
   Use the REAL text from HTML.
   Do not generate a second word with CSS.
--------------------------------------------------------- */

.services-button,
body.forge-theme .services-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 9px !important;

    height: 46px !important;

    padding: 0 8px !important;

    margin: 0 !important;

    background: transparent !important;
    border: 0 !important;

    color: #10283d !important;

    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1 !important;

    cursor: pointer;
}


/* Completely kill the fake duplicate label */
.services-button::before,
body.forge-theme .services-button::before {
    content: none !important;
    display: none !important;
}


/* Real CSS triangle — not the little rotated rectangle */
.services-button::after,
body.forge-theme .services-button::after {
    content: "" !important;

    display: block !important;

    width: 0 !important;
    height: 0 !important;

    margin-left: 2px !important;

    border-left: 4px solid transparent !important;
    border-right: 4px solid transparent !important;
    border-top: 6px solid #159bb8 !important;
    border-bottom: 0 !important;

    transform: none !important;

    transition: transform .18s ease !important;
}


/* Triangle flips when opened */
.services-menu.open .services-button::after,
.services-dropdown.show ~ .services-button::after {
    transform: rotate(180deg) !important;
}


/* ---------------------------------------------------------
   LOCATIONS
   CLICK ONLY — NO DESKTOP HOVER OPENING
--------------------------------------------------------- */

.locations-dropdown {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    transform:
        translateX(-50%)
        translateY(10px) !important;
}


/*
   This specifically defeats the old:
   .locations-menu:hover .locations-dropdown
   and :focus-within rules.
*/
.locations-menu:not(.open) .locations-dropdown,
.locations-menu:not(.open):hover .locations-dropdown,
.locations-menu:not(.open):focus-within .locations-dropdown {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    transform:
        translateX(-50%)
        translateY(10px) !important;
}


/* ONLY .open is allowed to display it */
.locations-menu.open .locations-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;

    transform:
        translateX(-50%)
        translateY(0) !important;
}


/* Locations triangle */
.locations-toggle::after {
    content: "" !important;

    position: absolute !important;

    top: 50% !important;
    left: 50% !important;

    width: 0 !important;
    height: 0 !important;

    border-left: 4px solid transparent !important;
    border-right: 4px solid transparent !important;
    border-top: 6px solid #159bb8 !important;
    border-bottom: 0 !important;

    transform:
        translate(-50%, -35%) !important;
}


.locations-menu.open .locations-toggle::after {
    transform:
        translate(-50%, -35%)
        rotate(180deg) !important;
}


/* ---------------------------------------------------------
   NAV CTA VERTICAL CENTERING
--------------------------------------------------------- */

.nav-buttons,
body.forge-theme .nav-buttons {
    display: flex !important;
    align-items: center !important;

    gap: 12px !important;
}


.nav-buttons .phone-button,
.nav-buttons .quote-button,
body.forge-theme .nav-buttons .phone-button,
body.forge-theme .nav-buttons .quote-button {
    display: inline-flex !important;

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

    height: 48px !important;
    min-height: 48px !important;

    padding: 0 24px !important;

    margin: 0 !important;

    line-height: 1 !important;
}


/* ---------------------------------------------------------
   MOBILE LOCATIONS
   Preserve accordion behavior
--------------------------------------------------------- */

@media (max-width: 900px) {

    .locations-dropdown {
        position: static !important;

        width: 100% !important;

        max-height: 0 !important;

        padding: 0 !important;

        overflow: hidden !important;

        opacity: 1 !important;
        visibility: visible !important;

        pointer-events: none !important;

        transform: none !important;
    }


    .locations-menu.open .locations-dropdown {
        max-height: 2600px !important;

        padding: 16px 12px 20px !important;

        pointer-events: auto !important;

        transform: none !important;
    }

}



/* =========================================================
   SERVICES TRIANGLE — FINAL FIX
========================================================= */

.services-button,
body.forge-theme .services-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;

    gap: 8px !important;

    width: auto !important;
}


/* Put triangle AFTER the word, never over it */
.services-button::after,
body.forge-theme .services-button::after {
    content: "" !important;

    position: static !important;

    display: inline-block !important;

    width: 0 !important;
    height: 0 !important;

    flex: 0 0 auto !important;

    margin: 1px 0 0 2px !important;

    border-left: 4px solid transparent !important;
    border-right: 4px solid transparent !important;
    border-top: 6px solid #159bb8 !important;
    border-bottom: 0 !important;

    transform: rotate(0deg) !important;
    transform-origin: 50% 45% !important;

    transition:
        transform .22s ease !important;
}


/* Rotate when the REAL dropdown is open */
.services-menu:has(.services-dropdown.show)
.services-button::after {
    transform: rotate(180deg) !important;
}


/* Keep fake generated text completely disabled */
.services-button::before,
body.forge-theme .services-button::before {
    content: none !important;
    display: none !important;
}

@media(max-width:900px){


/* =====================
   GENERAL
===================== */

.container {

    padding:0 20px;

}


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

.hero {

    padding:50px 0;

}

@media(max-width:900px){
.hero-container {

    flex-direction:column;
    gap:40px;
    min-height:0;
}


.hero-content {
  
    width:100%;
    padding-bottom:30px;
}


.hero-image {

    width:100%;
    height:300px;
    

  

}


.before-after-container {

    width:100%;
    height:100%;
    position:relative;
    overflow:hidden;

}


.after-image,
.before-image {

    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

}


.before-image-wrapper {

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    overflow:hidden;

}



h1 {

    font-size:40px;

}


.hero-text {

    font-size:18px;

}


.hero-buttons {

    flex-direction:column;

}


.hero-buttons a {

    width:fit-content;
    text-align:center;

}


.trust-list {

    flex-direction:column;
    gap:15px;

}

}

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


.service-grid {

    grid-template-columns:1fr;

}


.section-header h2 {

    font-size:32px;

}



/* =====================
   WHY US
===================== */


.why-container {

    flex-direction:column;

}


.why-image,
.why-content {

    width:100%;

}


.why-image img {

    width:100%;
    height:350px;
    object-fit:cover;

}



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


#contact-form {

    width:100%;

}



/* =====================
   NAVIGATION
===================== */


.menu-toggle {

    display:block;

}


#nav-menu {

    position:absolute;

    top:90px;
    left:0;

    width:100%;

    background:white;

    display:none;

    flex-direction:column;

}


#nav-menu.active {

    display:flex;

}



.nav-buttons {

    display:none;

}



.quote-button,
.phone-button {

    width:auto;

    padding:12px 20px;

    font-size:16px;

    display:inline-flex;

    justify-content:center;

    align-items:center;

}



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


.floating-buttons {

    position:fixed;

    bottom:20px;
    right:20px;

    display:flex;

    flex-direction:column;

    gap:15px;

    z-index:9999;

}



.floating-buttons a {

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    width:160px;

    padding:15px 20px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    box-shadow:0 5px 20px rgba(0,0,0,0.2);

}



.floating-call {

    background:var(--primary);

    color:white;

}



.floating-estimate {

    background:var(--accent);

    color:black;

}



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


.footer-container {

    grid-template-columns:1fr;

    width:100%;

}


.footer {

    width:100%;

    overflow:hidden;

}



/* =====================
   REVIEWS
===================== */


.reviews-box {

    padding:30px 20px;

}


.stars {

    font-size:32px;

}


}

@media(max-width:900px){

    .hero-image {
        height:350px !important;
        width:100%;
    }


    .before-after-container {
        height:350px !important;
        width:100%;
        position:relative;
        overflow:hidden;
    }


    .after-image,
    .before-image {
        position:absolute;
        top:0;
        left:0;

        width:100%;
        height:350px !important;

        object-fit:cover;
    }


    .before-image-wrapper {

        position:absolute;

        top:0;
        left:0;

        width:100%;
        height:350px !important;

        overflow:hidden;

        z-index:2;

    }


    .slider-line {

        z-index:3;

    }

}

@media(max-width:900px){

    .hero {
        position:relative;
        overflow:hidden;
    }

    .hero-container {
        display:flex;
        flex-direction:column;
    }

    .hero-image {
        position:relative;
        inset:auto;
        width:100%;
        height:350px;
        order:2;
    }

    .hero-content {
        order:1;
        width:100%;
    }

    .before-after-container {
        position:relative;
        width:100%;
        height:100%;
    }

    .after-image,
    .before-image {
        width:100%;
        height:100%;
        object-fit:cover;
    }

    .before-image {
        width:100%;
        height:100%;
    }

}

@media (max-width: 900px) {
    .why-image .section-media {
        width: 100%;
        height: 360px;
        object-fit: cover;
    }
}

@media (max-width: 600px) {
    .why-image .section-media {
        height: 300px;
    }
}


/* =========================================================
   LAYOUT RESCUE — RESPONSIVE RHYTHM
   Keep this block at the END of responsive.css.
========================================================= */

@media (max-width: 900px) {

    .services {
        padding: 84px 0 92px;
    }

    .section-header {
        margin-bottom: 46px;
        padding: 0;
    }

    .section-header h2 {
        font-size: clamp(32px, 8vw, 42px);
    }

    .section-header > p:not(.small-title) {
        font-size: 17px;
        line-height: 1.65;
    }

    .services-container {
        max-width: 760px;
        padding: 0 20px;
        gap: 38px;
    }

    .service-box {
        min-height: 330px;
        padding: 48px 34px;
        border-radius: 20px;
    }

    .service-box h2 {
        font-size: clamp(29px, 7vw, 38px);
        margin-bottom: 16px;
    }

    .service-box p {
        font-size: 17px;
        line-height: 1.6;
    }

    .service-box p + p {
        margin-top: 26px;
    }

    .why-us {
        padding: 92px 0;
    }

    .why-container {
        gap: 46px;
    }

    .why-image,
    .why-content {
        width: 100%;
    }

    .why-image .section-media,
    .why-image img {
        height: 400px;
        border-radius: 20px;
    }

    .why-content h2 {
        font-size: clamp(32px, 8vw, 42px);
    }

    .reviews,
    .faq,
    .contact {
        padding: 88px 0;
    }

    .service-area-banner {
        padding: 78px 22px;
    }

    .contact-header {
        margin-bottom: 42px;
    }

    #contact-form {
        max-width: 100%;
        padding: 30px 24px;
    }
}


@media (max-width: 600px) {

    .services {
        padding: 70px 0 76px;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .services-container {
        padding: 0 16px;
        gap: 28px;
    }

    .service-box {
        min-height: 300px;
        padding: 40px 24px;
        border-radius: 18px;
    }

    .service-box h2 {
        font-size: 29px;
    }

    .service-box p {
        font-size: 16px;
    }

    .service-box p + p {
        margin-top: 22px;
    }

    .why-us {
        padding: 72px 0;
    }

    .why-container {
        gap: 34px;
    }

    .why-image .section-media,
    .why-image img {
        height: 300px;
        border-radius: 18px;
    }

    .why-content > p {
        font-size: 17px;
        line-height: 1.65;
        margin-bottom: 30px;
    }

    .reviews,
    .faq,
    .contact {
        padding: 72px 0;
    }

    .service-area-banner {
        padding: 66px 20px;
    }

    #contact-form {
        padding: 24px 18px;
        border-radius: 18px;
    }
}



/* =========================================================
   SOURCE-AWARE OPTIONAL SECTIONS — RESPONSIVE
========================================================= */

@media (max-width: 1000px) {
    .process-grid {
        grid-template-columns: 1fr;
        max-width: 720px;
    }

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

    .coverage-layout {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .map-card,
    .map-card iframe {
        height: 430px;
        min-height: 430px;
    }

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

@media (max-width: 650px) {
    .process-section,
    .project-gallery,
    .coverage-section {
        padding: 76px 0;
    }

    .process-card {
        padding: 32px 26px;
    }

    .project-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .project-card {
        height: 290px;
    }

    .coverage-copy h2 {
        font-size: 34px;
    }

    .map-card,
    .map-card iframe {
        height: 350px;
        min-height: 350px;
        border-radius: 18px;
    }

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

    .footer-brand-column {
        max-width: none;
    }

    .footer-lower {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-legal-links {
        justify-content: flex-start;
    }
}

/* =========================================================
   CONVERSION HERO — RESPONSIVE
========================================================= */

@media (max-width: 1050px) {
    .conversion-hero {
        min-height: 0;
    }

    .conversion-hero-container {
        min-height: 0;
        grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr);
        gap: 42px;
        padding-top: 48px;
        padding-bottom: 58px;
    }

    .conversion-hero-copy h1 {
        font-size: clamp(44px, 6vw, 60px);
    }
}

@media (max-width: 900px) {
    .conversion-hero {
        padding-top: 90px;
    }

    .conversion-hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(7,25,39,.90) 0%,
            rgba(8,31,47,.82) 52%,
            rgba(11,31,51,.68) 100%
        );
    }

    .conversion-hero-container {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 38px;
        padding-top: 52px;
        padding-bottom: 54px;
    }

    .conversion-hero-copy {
        max-width: 760px;
    }

    .conversion-hero-copy h1 {
        font-size: clamp(42px, 9vw, 60px);
    }

    .conversion-hero-text {
        font-size: 18px;
    }

    .hero-lead-card {
        max-width: 720px;
        justify-self: auto;
        align-self: center;
    }

    .conversion-proof-inner {
        padding-top: 16px;
        padding-bottom: 16px;
        gap: 13px 28px;
    }
}

@media (max-width: 600px) {
    .conversion-hero-container {
        padding-top: 38px;
        padding-bottom: 42px;
    }

    .conversion-eyebrow {
        margin-bottom: 18px;
        font-size: 13px;
    }

    .conversion-hero-copy h1 {
        margin-bottom: 19px;
        font-size: clamp(36px, 11vw, 48px);
        line-height: 1.06;
    }

    .conversion-hero-text {
        margin-bottom: 25px;
        font-size: 16px;
        line-height: 1.65;
    }

    .conversion-trust-grid {
        grid-template-columns: 1fr;
        gap: 11px;
        margin-bottom: 28px;
    }

    .conversion-hero-actions {
        flex-direction: column;
    }

    .conversion-hero-actions .quote-button,
    .conversion-hero-actions .phone-button {
        width: 100%;
    }

    .hero-lead-card {
        border-radius: 19px;
    }

    .hero-lead-card-header {
        padding: 24px 21px 21px;
    }

    .hero-lead-card-header h2 {
        font-size: 26px;
    }

    .hero-lead-form {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px 18px 14px;
    }

    .hero-form-field:nth-of-type(4),
    .hero-message-field,
    .hero-submit-button,
    .lead-form-message {
        grid-column: auto;
    }

    .hero-form-callout {
        padding: 0 18px 20px;
    }

    .conversion-proof-inner {
        justify-content: flex-start;
        gap: 11px 18px;
        font-size: 13px;
    }
}


/* Distinct hero headline responsive tuning */
@media (max-width: 900px) {
    .conversion-hero-copy h1 {
        font-size: clamp(42px, 8.2vw, 58px);
    }
}

@media (max-width: 600px) {
    .conversion-eyebrow {
        margin-bottom: 16px;
    }

    .conversion-hero-copy h1 {
        margin-bottom: 26px;
        padding-bottom: 20px;
        font-size: clamp(37px, 10.5vw, 48px);
        line-height: 1.08;
    }

    .conversion-hero-copy h1::after {
        width: 58px;
        height: 3px;
    }
}

/* Review cards */
@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .review-card {
        padding: 24px;
    }

    .reviews-summary {
        align-items: flex-start;
        flex-direction: column;
    }

    .reviews-summary .quote-button {
        margin-left: 0;
    }
}


/* Reference-inspired benefits + reviews */
@media (max-width: 900px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 720px;
    }

    .benefit-card {
        min-height: 0;
    }

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

@media (max-width: 600px) {
    .benefits-section {
        padding: 76px 0;
    }

    .benefit-card {
        padding: 30px 24px;
    }

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

    .reviews-summary {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width:700px) {
    .review-carousel { width:100%; padding:0 0 40px; }
    .review-carousel-window,.review-slide { min-height:390px; }
    .review-slide { padding:48px 26px 34px; }
    .review-text { font-size:16px; }
    .review-arrow { top:auto; bottom:-4px; width:40px; height:40px; }
    .review-arrow-prev { left:20px; }
    .review-arrow-next { right:20px; }
    .reviews-actions {
        flex-direction:column; align-items:stretch; max-width:330px;
        margin-left:auto; margin-right:auto;
    }
}


@media(max-width:900px){.service-detail-layout{grid-template-columns:1fr;gap:38px}.service-detail-media .section-media{height:390px}.service-info-grid{grid-template-columns:1fr}.reference-media-grid{grid-template-columns:1fr 1fr}.quote-card-form{grid-template-columns:1fr}.quote-card-form .form-group,.quote-card-form .form-group:nth-of-type(5){grid-column:1/-1}}
@media(max-width:600px){.service-detail-section,.service-education,.service-reference-media{padding:68px 0}.service-detail-media .section-media{height:300px}.reference-media-grid{grid-template-columns:1fr}.quote-card-header{padding:25px 22px 21px}.quote-card-form,.lead-popup-card .quote-card-form{padding:20px}.reference-media-card img{height:250px}}

@media (max-width:800px){.reference-insights{padding:58px 0}.reference-insights-stack{gap:44px}.reference-insight{grid-template-columns:1fr;gap:24px}.reference-insight-reverse .reference-insight-media,.reference-insight-reverse .reference-insight-copy{order:initial}}
