/* =====================================================
   AIR DUCT CLEANING SACHSE TX
   HIGH TECH INSPIRED HERO
===================================================== */

:root {
    --adc-primary: #26d48c;
    --adc-primary-dark: #11b974;
    --adc-primary-soft: #e8fff6;

    --adc-dark: #1842b6;
    --adc-dark-deep: #102d84;
    --adc-navy: #061d4c;

    --adc-white: #ffffff;
    --adc-light: #f2f7ff;
    --adc-text: #6c757d;
    --adc-heading: #161c2d;

    --adc-border: rgba(255, 255, 255, 0.18);

    --adc-shadow:
        0 18px 45px rgba(2, 20, 64, 0.18);

    --adc-transition: all 0.3s ease;
}


/* =====================================================
   GENERAL
===================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--adc-text);
    background-color: var(--adc-white);
}

a {
    text-decoration: none;
    transition: var(--adc-transition);
}


/* =====================================================
   TOP BAR
===================================================== */

.adc-topbar {
    position: relative;
    z-index: 1040;
    padding: 11px 0;
    color: var(--adc-white);
    background-color: var(--adc-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.adc-topbar-info {
    display: flex;
    align-items: center;
    gap: 28px;
}

.adc-topbar-info a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 500;
}

.adc-topbar-info a:hover {
    color: var(--adc-primary);
}

.adc-topbar-info i {
    color: var(--adc-primary);
}

.adc-topbar-note {
    display: flex;
    justify-content: flex-end;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.adc-topbar-note i {
    margin-right: 7px;
    color: var(--adc-primary);
}


/* =====================================================
   NAVBAR
===================================================== */

.adc-navbar {
    position: relative;
    z-index: 1030;
    min-height: 92px;
    padding: 0;
    background-color: var(--adc-white);
    box-shadow: 0 8px 30px rgba(2, 21, 66, 0.08);
}

.adc-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.adc-logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    color: var(--adc-white);
    background: linear-gradient(
        135deg,
        var(--adc-primary),
        var(--adc-primary-dark)
    );
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(38, 212, 140, 0.3);
}

.adc-logo-icon i {
    font-size: 25px;
}

.adc-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.adc-logo-text strong {
    color: var(--adc-dark);
    font-size: 21px;
    font-weight: 800;
}

.adc-logo-text small {
    margin-top: 5px;
    color: var(--adc-primary-dark);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.adc-navbar .navbar-nav {
    align-items: center;
}

.adc-navbar .nav-link {
    position: relative;
    padding: 35px 15px !important;
    color: var(--adc-heading);
    font-size: 15px;
    font-weight: 700;
}

.adc-navbar .nav-link::after {
    position: absolute;
    right: 15px;
    bottom: 25px;
    left: 15px;
    height: 3px;
    content: "";
    background-color: var(--adc-primary);
    border-radius: 10px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.adc-navbar .nav-link:hover,
.adc-navbar .nav-link.active {
    color: var(--adc-dark);
}

.adc-navbar .nav-link:hover::after,
.adc-navbar .nav-link.active::after {
    transform: scaleX(1);
}

.adc-navbar .dropdown-toggle::after {
    position: static;
    display: inline-block;
    width: auto;
    height: auto;
    margin-left: 6px;
    vertical-align: middle;
    content: "";
    background: transparent;
    border-top: 5px solid;
    border-right: 4px solid transparent;
    border-bottom: 0;
    border-left: 4px solid transparent;
    border-radius: 0;
    transform: none;
}

.adc-dropdown-menu {
    min-width: 235px;
    padding: 12px;
    border: 0;
    border-top: 4px solid var(--adc-primary);
    border-radius: 0 0 14px 14px;
    box-shadow: var(--adc-shadow);
}

.adc-dropdown-menu .dropdown-item {
    padding: 11px 14px;
    color: var(--adc-heading);
    font-size: 14px;
    font-weight: 600;
    border-radius: 7px;
}

.adc-dropdown-menu .dropdown-item:hover {
    color: var(--adc-dark);
    background-color: var(--adc-primary-soft);
    padding-left: 19px;
}


/* Navbar phone */

.adc-navbar-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 23px;
    border-left: 1px solid rgba(24, 66, 182, 0.15);
}

.adc-phone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--adc-white);
    background-color: var(--adc-primary);
    border-radius: 50%;
    animation: adcPhonePulse 2.4s infinite;
}

.adc-phone-icon i {
    font-size: 20px;
}

.adc-navbar-phone div {
    display: flex;
    flex-direction: column;
}

.adc-navbar-phone small {
    margin-bottom: 3px;
    color: var(--adc-text);
    font-size: 12px;
    font-weight: 600;
}

.adc-navbar-phone a {
    color: var(--adc-dark);
    font-size: 18px;
    font-weight: 800;
}

.adc-navbar-phone a:hover {
    color: var(--adc-primary-dark);
}

.adc-navbar-toggler {
    padding: 9px 11px;
    border: 2px solid var(--adc-dark);
    box-shadow: none !important;
}


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

.adc-hero {
    position: relative;
    overflow: hidden;
    background-color: var(--adc-navy);
}

.adc-hero-slide {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.adc-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(4, 23, 73, 0.95) 0%,
            rgba(9, 42, 111, 0.87) 44%,
            rgba(9, 42, 111, 0.4) 75%,
            rgba(9, 42, 111, 0.25) 100%
        );
}

.min-vh-75 {
    min-height: 680px;
}

.adc-hero .container {
    z-index: 4;
}

.adc-hero-content {
    position: relative;
    z-index: 5;
    max-width: 825px;
    padding: 80px 0 110px;
    animation: adcHeroContent 0.9s ease both;
}

.adc-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 19px;
    color: var(--adc-primary);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.adc-eyebrow-line {
    display: inline-block;
    width: 42px;
    height: 3px;
    background-color: var(--adc-primary);
    border-radius: 10px;
}

.adc-hero-content h1,
.adc-hero-content h2 {
    max-width: 820px;
    margin: 0 0 23px;
    color: var(--adc-white);
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -2px;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
}

.adc-hero-content h1 span,
.adc-hero-content h2 span {
    display: block;
    color: var(--adc-primary);
}

.adc-hero-content p {
    max-width: 710px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.75;
}


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

.adc-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.adc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 55px;
    padding: 14px 27px;
    font-size: 23px;
    font-weight: 800;
    border: 2px solid transparent;
    border-radius: 50px;
    transition: var(--adc-transition);
}

.adc-btn-primary {
    color: var(--adc-dark);
    background-color: var(--adc-primary);
    border-color: var(--adc-primary);
    box-shadow: 0 13px 30px rgba(38, 212, 140, 0.3);
}

.adc-btn-primary:hover {
    color: var(--adc-white);
    background-color: var(--adc-primary-dark);
    border-color: var(--adc-primary-dark);
    transform: translateY(-4px);
}

.adc-btn-light {
    color: var(--adc-dark);
    background-color: var(--adc-white);
    border-color: var(--adc-white);
}

.adc-btn-light:hover {
    color: var(--adc-white);
    background-color: transparent;
    border-color: var(--adc-white);
    transform: translateY(-4px);
}


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

.adc-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 48px;
}

.adc-hero-feature {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 185px;
    padding-right: 27px;
    margin-right: 27px;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.adc-hero-feature:last-child {
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
}

.adc-hero-feature i {
    color: var(--adc-primary);
    font-size: 30px;
}

.adc-hero-feature span {
    color: var(--adc-white);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}


/* =====================================================
   DECORATIVE HERO SHAPES
===================================================== */

.adc-hero-shape {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
}

.adc-hero-shape-one {
    top: -180px;
    right: 8%;
    width: 500px;
    height: 500px;
}

.adc-hero-shape-two {
    right: -160px;
    bottom: -220px;
    width: 560px;
    height: 560px;
    border: 70px solid rgba(38, 212, 140, 0.08);
}


/* =====================================================
   CAROUSEL CONTROLS
===================================================== */

.adc-carousel-control {
    top: 50%;
    bottom: auto;
    width: auto;
    opacity: 1;
    transform: translateY(-50%);
}

.adc-carousel-prev {
    left: 28px;
}

.adc-carousel-next {
    right: 28px;
}

.adc-control-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    color: var(--adc-white);
    background-color: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    backdrop-filter: blur(7px);
    transition: var(--adc-transition);
}

.adc-control-icon:hover {
    color: var(--adc-dark);
    background-color: var(--adc-primary);
    border-color: var(--adc-primary);
    transform: scale(1.08);
}

.adc-carousel-indicators {
    z-index: 8;
    bottom: 28px;
    gap: 8px;
    margin-bottom: 0;
}

.adc-carousel-indicators [data-bs-target] {
    width: 11px;
    height: 11px;
    margin: 0;
    background-color: var(--adc-white);
    border: 0;
    border-radius: 50%;
    opacity: 0.6;
}

.adc-carousel-indicators .active {
    width: 36px;
    background-color: var(--adc-primary);
    border-radius: 20px;
    opacity: 1;
}


/* =====================================================
   CAROUSEL ANIMATION
===================================================== */

.carousel-item.active .adc-hero-content {
    animation: adcHeroContent 0.95s ease both;
}

@keyframes adcHeroContent {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes adcPhonePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(38, 212, 140, 0.4);
    }

    70% {
        box-shadow: 0 0 0 13px rgba(38, 212, 140, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(38, 212, 140, 0);
    }
}


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

@media (min-width: 992px) {

    .adc-navbar .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }

}


@media (max-width: 1199.98px) {

    .adc-navbar-phone {
        display: none;
    }

    .adc-navbar .nav-link {
        padding-right: 12px !important;
        padding-left: 12px !important;
    }

    .adc-hero-content h1,
    .adc-hero-content h2 {
        font-size: 65px;
    }

}


@media (max-width: 991.98px) {

    .adc-navbar {
        min-height: 78px;
        padding: 8px 0;
    }

    .adc-logo-icon {
        width: 47px;
        height: 47px;
    }

    .adc-logo-text strong {
        font-size: 18px;
    }

    .adc-logo-text small {
        font-size: 11px;
    }

    .adc-navbar .navbar-collapse {
        padding: 15px;
        margin-top: 9px;
        background-color: var(--adc-white);
        border-top: 1px solid rgba(24, 66, 182, 0.1);
        border-radius: 0 0 15px 15px;
        box-shadow: 0 15px 30px rgba(0, 19, 70, 0.12);
    }

    .adc-navbar .navbar-nav {
        align-items: stretch;
    }

    .adc-navbar .nav-link {
        padding: 12px 8px !important;
        border-bottom: 1px solid rgba(24, 66, 182, 0.08);
    }

    .adc-navbar .nav-link::after {
        display: none;
    }

    .adc-dropdown-menu {
        padding: 6px;
        border-top-width: 2px;
        box-shadow: none;
    }

    .adc-hero-slide,
    .min-vh-75 {
        min-height: 660px;
    }

    .adc-hero-content {
        padding: 75px 0 105px;
    }

    .adc-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(4, 23, 73, 0.96),
                rgba(7, 37, 98, 0.78)
            );
    }

    .adc-hero-content h1,
    .adc-hero-content h2 {
        font-size: 57px;
    }

    .adc-carousel-prev {
        left: 12px;
    }

    .adc-carousel-next {
        right: 12px;
    }

    .adc-control-icon {
        width: 44px;
        height: 44px;
    }

}


@media (max-width: 767.98px) {

    .adc-hero-slide,
    .min-vh-75 {
        min-height: 650px;
    }

    .adc-hero-slide {
        background-position: 62% center;
    }

    .adc-hero-content {
        padding: 65px 0 100px;
        text-align: center;
    }

    .adc-hero-eyebrow {
        justify-content: center;
        font-size: 12px;
    }

    .adc-hero-content h1,
    .adc-hero-content h2 {
        font-size: 43px;
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .adc-hero-content p {
        margin-right: auto;
        margin-left: auto;
        font-size: 16px;
        line-height: 1.65;
    }

    .adc-hero-buttons {
        justify-content: center;
    }

    .adc-btn {
        min-width: 210px;
    }

    .adc-hero-features {
        justify-content: center;
        gap: 18px;
        margin-top: 38px;
    }

    .adc-hero-feature {
        justify-content: center;
        min-width: auto;
        padding: 0 15px;
        margin: 0;
        border-right: 0;
    }

    .adc-hero-feature i {
        font-size: 25px;
    }

    .adc-hero-feature span {
        text-align: left;
    }

    .adc-carousel-control {
        display: none;
    }

}


@media (max-width: 575.98px) {

    .adc-navbar .container,
    .adc-hero .container {
        padding-right: 18px;
        padding-left: 18px;
    }

    .adc-logo {
        gap: 8px;
    }

    .adc-logo-icon {
        width: 43px;
        height: 43px;
    }

    .adc-logo-icon i {
        font-size: 20px;
    }

    .adc-logo-text strong {
        font-size: 15px;
    }

    .adc-logo-text small {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .adc-hero-slide,
    .min-vh-75 {
        min-height: 680px;
    }

    .adc-hero-content {
        padding-top: 58px;
    }

    .adc-hero-content h1,
    .adc-hero-content h2 {
        font-size: 37px;
    }

    .adc-hero-content p {
        font-size: 15px;
    }

    .adc-btn {
        width: 100%;
        min-width: 0;
    }

    .adc-hero-features {
        gap: 15px;
    }

    .adc-hero-feature {
        width: calc(50% - 8px);
        padding: 11px;
        background-color: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 10px;
    }

    .adc-hero-feature:last-child {
        width: 100%;
    }

}




/*====================================
 Residential Section
====================================*/

.adc-about-section{
    padding:110px 0;
    background:#fff;
}

.adc-section-title span{

    color:var(--adc-primary);
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    display:inline-block;
    margin-bottom:12px;
}

.adc-section-title h2{

    font-size:46px;
    font-weight:800;
    color:#16243c;
    line-height:1.2;
    margin-bottom:25px;
}

.adc-about-section p{

    color:#6b7280;
    line-height:1.9;
    font-size:17px;
}

/*====================================
About Images
====================================*/

.adc-about-images{

    position:relative;

    min-height:700px;

    padding:0 80px 70px 0;

}

.adc-main-image{

    width:100%;

    height:620px;

    overflow:hidden;

    border-radius:35px;

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

}

.adc-main-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.adc-main-image:hover img{

    transform:scale(1.05);

}

/* الصورة الصغيرة */

.adc-small-image{

    position:absolute;

    right:0;

    bottom:0;

    width:240px;

    height:240px;

    overflow:hidden;

    border-radius:25px;

    border:8px solid #fff;

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.adc-small-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

/* البادج */

.adc-experience{

    position:absolute;

    left:-20px;

    bottom:70px;

    display:flex;

    align-items:center;

    gap:15px;

    padding:18px 22px;

    background:#1842b6;

    color:#fff;

    border-radius:18px;

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

}

.adc-experience i{

    width:55px;

    height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#26d48c;

    border-radius:50%;

    font-size:22px;

}

/* Responsive */

@media(max-width:991px){

.adc-about-images{

min-height:auto;

padding:0 50px 70px 0;

margin-bottom:50px;

}

.adc-main-image{

height:550px;

}

}

@media(max-width:767px){

.adc-about-images{

padding:0;

}

.adc-main-image{

height:420px;

}

.adc-small-image{

width:170px;

height:170px;

right:15px;

bottom:-40px;

}

.adc-experience{

left:15px;

bottom:-15px;

padding:15px;

}

}
.adc-experience{

    position:absolute;
    left:-15px;
    bottom:35px;

    background:#26d48c;
    color:#fff;

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

    padding:18px 25px;

    border-radius:18px;

    box-shadow:0 18px 40px rgba(38,212,140,.35);
}

.adc-experience i{

    font-size:40px;
}

.adc-experience strong{

    display:block;
    font-size:20px;
}

.adc-experience span{

    display:block;
    font-size:14px;
}

.adc-feature-box{

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

    padding:22px;

    background:#f7fbff;

    border-radius:18px;

    transition:.35s;
}

.adc-feature-box:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.adc-feature-box i{

    width:60px;
    height:60px;

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

    border-radius:50%;

    background:#1842b6;

    color:#fff;

    font-size:24px;
}

.adc-feature-box h5{

    margin:0;

    font-size:18px;

    font-weight:700;

    color:#16243c;
}

@media(max-width:991px){

.adc-about-images{

padding-right:0;
margin-bottom:40px;

}

.adc-small-image{

display:none;

}

.adc-experience{

left:20px;

}

.adc-section-title h2{

font-size:36px;

}

}



/*=========================================
Benefits Section
=========================================*/

.adc-benefits{

    background:#f8fbff;
    padding:110px 0;

}

.adc-section-heading{

    max-width:760px;
    margin:0 auto 70px;

}

.adc-section-heading span{

    color:#26d48c;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;

}

.adc-section-heading h2{

    font-size:48px;
    font-weight:800;
    color:#1b2943;
    margin:15px 0;

}

.adc-section-heading p{

    color:#6d7685;
    line-height:1.9;

}

.adc-benefit-card{

    background:#fff;
    border-radius:22px;
    padding:35px 28px;
    text-align:center;
    transition:.35s;
    box-shadow:0 12px 40px rgba(0,0,0,.06);
    height:100%;

}

.adc-benefit-card:hover{

    transform:translateY(-10px);

}

.adc-benefit-icon{

    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:#1842b6;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:25px;

}

.adc-benefit-card h4{

    font-size:22px;
    font-weight:700;
    color:#1b2943;

}

.adc-benefit-card p{

    color:#70798a;
    line-height:1.8;
    margin-top:15px;

}

.adc-small-title{

    color:#26d48c;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;

}

.adc-benefits h3{

    font-size:42px;
    font-weight:800;
    color:#1b2943;
    margin:15px 0 25px;

}

.adc-check-list{

    list-style:none;
    padding:0;
    margin:35px 0;

}

.adc-check-list li{

    margin-bottom:18px;
    font-size:17px;
    color:#555;
    font-weight:600;

}

.adc-check-list i{

    color:#26d48c;
    margin-right:10px;

}

.adc-benefits-image img{

    width:100%;
    border-radius:30px;
    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

@media(max-width:991px){

.adc-section-heading h2{

font-size:36px;

}

.adc-benefits h3{

font-size:32px;

}

}



/* =====================================================
   COMMERCIAL HVAC & DUCTWORK CLEANING
===================================================== */

.adc-commercial-section {
    position: relative;
    overflow: hidden;
    padding: 115px 0;
    background:
        radial-gradient(
            circle at 8% 20%,
            rgba(38, 212, 140, 0.10),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f4f8ff 100%
        );
}


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

.adc-commercial-content {
    position: relative;
    z-index: 2;
}

.adc-section-kicker {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 17px;
    color: var(--adc-primary, #26d48c);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.adc-kicker-line {
    display: inline-block;
    width: 42px;
    height: 3px;
    background-color: var(--adc-primary, #26d48c);
    border-radius: 20px;
}

.adc-commercial-content h2 {
    max-width: 680px;
    margin: 0 0 28px;
    color: #16243c;
    font-size: clamp(38px, 4.5vw, 58px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1.5px;
}

.adc-commercial-content h2 span {
    display: block;
    color: var(--adc-dark, #1842b6);
}

.adc-commercial-content p {
    margin-bottom: 20px;
    color: #687286;
    font-size: 16px;
    line-height: 1.9;
}


/* =====================================================
   FEATURE BOXES
===================================================== */

.adc-commercial-features {
    margin-top: 32px;
}

.adc-commercial-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    height: 100%;
    min-height: 92px;
    padding: 17px;
    background-color: #ffffff;
    border: 1px solid rgba(24, 66, 182, 0.10);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(11, 42, 100, 0.06);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.adc-commercial-feature:hover {
    border-color: rgba(38, 212, 140, 0.45);
    box-shadow: 0 18px 40px rgba(11, 42, 100, 0.11);
    transform: translateY(-5px);
}

.adc-commercial-feature-icon {
    display: inline-flex;
    flex: 0 0 53px;
    align-items: center;
    justify-content: center;
    width: 53px;
    height: 53px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--adc-dark, #1842b6),
            #102d84
        );
    border-radius: 14px;
}

.adc-commercial-feature-icon i {
    font-size: 21px;
}

.adc-commercial-feature div {
    display: flex;
    flex-direction: column;
}

.adc-commercial-feature strong {
    margin-bottom: 4px;
    color: #18233a;
    font-size: 15px;
    font-weight: 800;
}

.adc-commercial-feature small {
    color: #7a8496;
    font-size: 12px;
    line-height: 1.4;
}


/* =====================================================
   ACTION AREA
===================================================== */

.adc-commercial-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
    margin-top: 38px;
}

.adc-commercial-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 57px;
    padding: 15px 27px;
    color: #ffffff;
    background-color: var(--adc-primary, #26d48c);
    border: 2px solid var(--adc-primary, #26d48c);
    border-radius: 50px;
    box-shadow: 0 14px 32px rgba(38, 212, 140, 0.28);
    font-size: 14px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.adc-commercial-btn:hover {
    color: #ffffff;
    background-color: #11b974;
    border-color: #11b974;
    transform: translateY(-4px);
}

.adc-commercial-phone {
    display: flex;
    align-items: center;
    gap: 12px;
}

.adc-commercial-phone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 51px;
    height: 51px;
    color: var(--adc-dark, #1842b6);
    background-color: #ffffff;
    border: 1px solid rgba(24, 66, 182, 0.15);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(11, 42, 100, 0.08);
}

.adc-commercial-phone div {
    display: flex;
    flex-direction: column;
}

.adc-commercial-phone small {
    margin-bottom: 3px;
    color: #778195;
    font-size: 12px;
    font-weight: 600;
}

.adc-commercial-phone a {
    color: var(--adc-dark, #1842b6);
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
}

.adc-commercial-phone a:hover {
    color: var(--adc-primary, #26d48c);
}


/* =====================================================
   IMAGE AREA
===================================================== */

.adc-commercial-visual {
    position: relative;
    min-height: 680px;
    padding: 25px 0 55px 70px;
}

.adc-commercial-shape {
    position: absolute;
    top: 2px;
    right: -80px;
    width: 430px;
    height: 430px;
    background-color: rgba(38, 212, 140, 0.11);
    border-radius: 50%;
}

.adc-commercial-main-image {
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 100%;
    height: 590px;
    border: 12px solid #ffffff;
    border-radius: 34px 34px 34px 120px;
    box-shadow: 0 28px 70px rgba(15, 47, 105, 0.18);
}

.adc-commercial-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.adc-commercial-main-image:hover img {
    transform: scale(1.05);
}


/* Small floating image */

.adc-commercial-small-image {
    position: absolute;
    z-index: 4;
    bottom: 5px;
    left: 0;
    overflow: hidden;
    width: 230px;
    height: 230px;
    border: 10px solid #ffffff;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(15, 47, 105, 0.20);
}

.adc-commercial-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Floating badge */

.adc-commercial-badge {
    position: absolute;
    z-index: 5;
    top: 65px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 13px;
    max-width: 235px;
    padding: 16px 19px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--adc-dark, #1842b6),
            #102d84
        );
    border-radius: 17px;
    box-shadow: 0 18px 42px rgba(12, 43, 110, 0.28);
}

.adc-commercial-badge-icon {
    display: inline-flex;
    flex: 0 0 46px;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: var(--adc-primary, #26d48c);
    background-color: rgba(255, 255, 255, 0.13);
    border-radius: 50%;
}

.adc-commercial-badge-icon i {
    font-size: 21px;
}

.adc-commercial-badge div {
    display: flex;
    flex-direction: column;
}

.adc-commercial-badge strong {
    margin-bottom: 3px;
    font-size: 15px;
    font-weight: 800;
}

.adc-commercial-badge small {
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
}


/* Location badge */

.adc-commercial-location {
    position: absolute;
    z-index: 5;
    right: -7px;
    bottom: 75px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    color: #17233b;
    background-color: #ffffff;
    border-left: 5px solid var(--adc-primary, #26d48c);
    border-radius: 15px;
    box-shadow: 0 18px 44px rgba(15, 47, 105, 0.17);
}

.adc-commercial-location i {
    color: var(--adc-primary, #26d48c);
    font-size: 24px;
}

.adc-commercial-location span {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.55;
}


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

@media (max-width: 1199.98px) {

    .adc-commercial-visual {
        min-height: 630px;
        padding-left: 45px;
    }

    .adc-commercial-main-image {
        height: 540px;
    }

    .adc-commercial-small-image {
        width: 200px;
        height: 200px;
    }

}


@media (max-width: 991.98px) {

    .adc-commercial-section {
        padding: 90px 0;
    }

    .adc-commercial-content {
        margin-bottom: 25px;
    }

    .adc-commercial-visual {
        max-width: 720px;
        min-height: 620px;
        margin: 0 auto;
    }

}


@media (max-width: 767.98px) {

    .adc-commercial-section {
        padding: 75px 0;
    }

    .adc-section-kicker {
        font-size: 12px;
    }

    .adc-commercial-content h2 {
        font-size: 38px;
        letter-spacing: -0.7px;
    }

    .adc-commercial-content p {
        font-size: 15px;
    }

    .adc-commercial-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .adc-commercial-visual {
        min-height: auto;
        padding: 0;
    }

    .adc-commercial-shape {
        display: none;
    }

    .adc-commercial-main-image {
        height: 500px;
        border-width: 8px;
        border-radius: 25px;
    }

    .adc-commercial-small-image {
        bottom: -55px;
        left: 18px;
        width: 170px;
        height: 170px;
        border-width: 7px;
    }

    .adc-commercial-badge {
        top: 25px;
        left: 18px;
    }

    .adc-commercial-location {
        right: 18px;
        bottom: -25px;
    }

    .adc-commercial-visual {
        margin-bottom: 75px;
    }

}


@media (max-width: 575.98px) {

    .adc-commercial-content h2 {
        font-size: 33px;
    }

    .adc-commercial-main-image {
        height: 420px;
    }

    .adc-commercial-small-image {
        width: 135px;
        height: 135px;
        border-radius: 20px;
    }

    .adc-commercial-badge {
        max-width: 205px;
        padding: 13px 15px;
    }

    .adc-commercial-badge-icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }

    .adc-commercial-location {
        right: 8px;
        max-width: 215px;
        padding: 12px 14px;
    }

    .adc-commercial-btn {
        width: 100%;
    }

}

/* =====================================================
   AIR DUCT CLEANING PROCESS
===================================================== */

.adc-process-section {
    position: relative;
    overflow: hidden;
    padding: 115px 0;
    background:
        radial-gradient(
            circle at 95% 10%,
            rgba(38, 212, 140, 0.10),
            transparent 28%
        ),
        #ffffff;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.adc-process-heading {
    max-width: 780px;
    margin: 0 auto 75px;
}

.adc-process-kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 15px;
    color: var(--adc-primary, #26d48c);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.adc-process-line {
    display: inline-block;
    width: 40px;
    height: 3px;
    background-color: var(--adc-primary, #26d48c);
    border-radius: 20px;
}

.adc-process-heading h2 {
    margin: 0 0 20px;
    color: #17243d;
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -1.4px;
}

.adc-process-heading h2 span {
    color: var(--adc-dark, #1842b6);
}

.adc-process-heading p {
    margin: 0;
    color: #6d7789;
    font-size: 17px;
    line-height: 1.85;
}


/* =====================================================
   IMAGE AREA
===================================================== */

.adc-process-visual {
    position: relative;
    min-height: 670px;
    padding: 25px 75px 70px 0;
}

.adc-process-shape {
    position: absolute;
    top: 0;
    left: -95px;
    width: 430px;
    height: 430px;
    background-color: rgba(24, 66, 182, 0.08);
    border-radius: 50%;
}

.adc-process-main-image {
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 100%;
    height: 575px;
    border: 12px solid #ffffff;
    border-radius: 35px 110px 35px 35px;
    box-shadow: 0 28px 70px rgba(15, 47, 105, 0.18);
}

.adc-process-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.adc-process-main-image:hover img {
    transform: scale(1.05);
}


/* Small image */

.adc-process-small-image {
    position: absolute;
    z-index: 4;
    right: 0;
    bottom: 10px;
    overflow: hidden;
    width: 225px;
    height: 225px;
    border: 10px solid #ffffff;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(15, 47, 105, 0.20);
}

.adc-process-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Floating badge */

.adc-process-image-badge {
    position: absolute;
    z-index: 5;
    bottom: 65px;
    left: -15px;
    display: flex;
    align-items: center;
    gap: 13px;
    max-width: 245px;
    padding: 17px 20px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--adc-dark, #1842b6),
            #102d84
        );
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(15, 47, 105, 0.28);
}

.adc-process-image-badge > span {
    display: inline-flex;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--adc-primary, #26d48c);
    background-color: rgba(255, 255, 255, 0.13);
    border-radius: 50%;
}

.adc-process-image-badge > span i {
    font-size: 22px;
}

.adc-process-image-badge div {
    display: flex;
    flex-direction: column;
}

.adc-process-image-badge strong {
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 800;
}

.adc-process-image-badge small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    line-height: 1.5;
}


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

.adc-process-list {
    position: relative;
}

.adc-process-list::before {
    position: absolute;
    top: 48px;
    bottom: 48px;
    left: 34px;
    width: 2px;
    content: "";
    background:
        linear-gradient(
            to bottom,
            var(--adc-primary, #26d48c),
            rgba(24, 66, 182, 0.18)
        );
}

.adc-process-item {
    position: relative;
    display: flex;
    gap: 22px;
    margin-bottom: 24px;
}

.adc-process-item:last-child {
    margin-bottom: 0;
}

.adc-process-number {
    position: relative;
    z-index: 3;
    display: inline-flex;
    flex: 0 0 68px;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--adc-primary, #26d48c),
            #11b974
        );
    border: 7px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(38, 212, 140, 0.28);
    font-size: 16px;
    font-weight: 900;
}

.adc-process-content {
    display: flex;
    flex: 1;
    gap: 17px;
    min-height: 145px;
    padding: 24px;
    background-color: #f8fbff;
    border: 1px solid rgba(24, 66, 182, 0.09);
    border-radius: 20px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.adc-process-item:hover .adc-process-content {
    border-color: rgba(38, 212, 140, 0.40);
    box-shadow: 0 18px 42px rgba(15, 47, 105, 0.10);
    transform: translateX(7px);
}

.adc-process-icon {
    display: inline-flex;
    flex: 0 0 52px;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--adc-dark, #1842b6),
            #102d84
        );
    border-radius: 15px;
}

.adc-process-icon i {
    font-size: 21px;
}

.adc-process-content h3 {
    margin: 0 0 10px;
    color: #17243d;
    font-size: 20px;
    font-weight: 800;
}

.adc-process-content p {
    margin: 0;
    color: #6c7688;
    font-size: 14px;
    line-height: 1.75;
}


/* =====================================================
   ACTION AREA
===================================================== */

.adc-process-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
    margin-top: 38px;
    padding-left: 90px;
}

.adc-process-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 57px;
    padding: 15px 28px;
    color: #ffffff;
    background-color: var(--adc-primary, #26d48c);
    border: 2px solid var(--adc-primary, #26d48c);
    border-radius: 50px;
    box-shadow: 0 14px 32px rgba(38, 212, 140, 0.28);
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.adc-process-btn:hover {
    color: #ffffff;
    background-color: #11b974;
    border-color: #11b974;
    transform: translateY(-4px);
}

.adc-process-call {
    display: flex;
    align-items: center;
    gap: 12px;
}

.adc-process-call > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 51px;
    height: 51px;
    color: var(--adc-dark, #1842b6);
    background-color: #ffffff;
    border: 1px solid rgba(24, 66, 182, 0.14);
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(15, 47, 105, 0.08);
}

.adc-process-call div {
    display: flex;
    flex-direction: column;
}

.adc-process-call small {
    margin-bottom: 3px;
    color: #778195;
    font-size: 12px;
    font-weight: 600;
}

.adc-process-call a {
    color: var(--adc-dark, #1842b6);
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
}

.adc-process-call a:hover {
    color: var(--adc-primary, #26d48c);
}


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

@media (max-width: 1199.98px) {

    .adc-process-visual {
        min-height: 620px;
        padding-right: 45px;
    }

    .adc-process-main-image {
        height: 530px;
    }

    .adc-process-small-image {
        width: 195px;
        height: 195px;
    }

}


@media (max-width: 991.98px) {

    .adc-process-section {
        padding: 90px 0;
    }

    .adc-process-heading {
        margin-bottom: 55px;
    }

    .adc-process-visual {
        max-width: 720px;
        margin: 0 auto 50px;
    }

}


@media (max-width: 767.98px) {

    .adc-process-section {
        padding: 75px 0;
    }

    .adc-process-heading h2 {
        font-size: 38px;
    }

    .adc-process-heading p {
        font-size: 15px;
    }

    .adc-process-visual {
        min-height: auto;
        padding: 0;
        margin-bottom: 80px;
    }

    .adc-process-shape {
        display: none;
    }

    .adc-process-main-image {
        height: 500px;
        border-width: 8px;
        border-radius: 25px;
    }

    .adc-process-small-image {
        right: 18px;
        bottom: -55px;
        width: 165px;
        height: 165px;
        border-width: 7px;
    }

    .adc-process-image-badge {
        bottom: -25px;
        left: 18px;
    }

    .adc-process-list::before {
        left: 27px;
    }

    .adc-process-number {
        flex-basis: 55px;
        width: 55px;
        height: 55px;
        border-width: 5px;
        font-size: 13px;
    }

    .adc-process-item {
        gap: 14px;
    }

    .adc-process-content {
        padding: 20px;
    }

    .adc-process-actions {
        align-items: flex-start;
        flex-direction: column;
        padding-left: 69px;
    }

}


@media (max-width: 575.98px) {

    .adc-process-heading h2 {
        font-size: 33px;
    }

    .adc-process-kicker {
        font-size: 11px;
    }

    .adc-process-line {
        width: 25px;
    }

    .adc-process-main-image {
        height: 420px;
    }

    .adc-process-small-image {
        width: 125px;
        height: 125px;
        border-radius: 19px;
    }

    .adc-process-image-badge {
        max-width: 210px;
        padding: 13px 15px;
    }

    .adc-process-list::before {
        display: none;
    }

    .adc-process-item {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px;
    }

    .adc-process-number {
        flex-basis: 50px;
        width: 50px;
        height: 50px;
    }

    .adc-process-content {
        width: 100%;
    }

    .adc-process-icon {
        flex-basis: 45px;
        width: 45px;
        height: 45px;
    }

    .adc-process-content h3 {
        font-size: 18px;
    }

    .adc-process-actions {
        padding-left: 0;
    }

    .adc-process-btn {
        width: 100%;
    }

}


/*=========================================
Emergency Section
=========================================*/

.adc-emergency-section{

padding:110px 0;
background:#f7fbff;

}

.adc-offer-card{

background:linear-gradient(135deg,#1842b6,#102d84);
color:#fff;
padding:50px 40px;
border-radius:30px;
text-align:center;
box-shadow:0 25px 60px rgba(0,0,0,.18);
position:sticky;
top:120px;

}

.adc-offer-tag{

display:inline-block;
background:#26d48c;
padding:8px 20px;
border-radius:40px;
font-weight:700;
margin-bottom:20px;

}

.adc-offer-card h2{

font-size:72px;
font-weight:900;
margin-bottom:5px;

}

.adc-offer-card h3{

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

}

.adc-offer-card p{

color:#dbe7ff;
margin:20px 0;

}

.adc-offer-card ul{

list-style:none;
padding:0;
margin:30px 0;

}

.adc-offer-card li{

margin-bottom:15px;
font-weight:600;

}

.adc-offer-card i{

color:#26d48c;
margin-right:8px;

}

.adc-offer-btn{

display:inline-flex;
align-items:center;
gap:10px;
padding:16px 35px;
background:#26d48c;
color:#fff;
border-radius:50px;
font-weight:700;
text-decoration:none;
transition:.35s;

}

.adc-offer-btn:hover{

background:#1fbe7c;
color:#fff;
transform:translateY(-5px);

}

.adc-emergency-content h2{

font-size:46px;
font-weight:800;
margin:15px 0 25px;
color:#1b2943;

}

.adc-emergency-content p{

line-height:1.9;
color:#667080;

}

.adc-emergency-box{

margin-top:35px;

}

.adc-care-item{

display:flex;
gap:20px;
margin-bottom:28px;
padding:25px;
background:#fff;
border-radius:20px;
box-shadow:0 12px 35px rgba(0,0,0,.06);

}

.adc-care-item i{

width:65px;
height:65px;
background:#1842b6;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:26px;
flex-shrink:0;

}

.adc-care-item strong{

display:block;
font-size:22px;
margin-bottom:12px;
color:#1b2943;

}

.adc-care-item p{

margin:0;

}

@media(max-width:991px){

.adc-offer-card{

position:relative;
top:0;
margin-bottom:40px;

}

.adc-emergency-content h2{

font-size:36px;

}

}


/*=========================================
    Modern Compact Contact Form
=========================================*/
.adc-contact-section {background: linear-gradient(135deg, #1842b6, #102d84); margin-top: 60px; padding: 80px 0; border-radius: 30px; box-shadow: 0 25px 60px rgba(0,0,0,.18);}
/* FORM WRAPPER */
form.CUS {
    max-width: 900px;
    width: 100%;
    margin: 20px auto;
    padding: 20px;
    background: #f9fafb;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: system-ui, sans-serif;
}

/* FLEX FIELDSET */
form.CUS fieldset {
    display: flex;
    flex-wrap: wrap;
    border: none;
    padding: 0;
    margin: 0;
}

/* BASE BLOCK STYLE */
form.CUS fieldset > p {
    width: 100%;
    padding: 10px;
    margin: 0;
    font-size: 0.95rem;
    color: #444;
}

/* Universal input/select styling */
form.CUS input,
form.CUS select,
form.CUS textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

/* ===============================
   ROW 1: Name, Phone, Address
=============================== */
form.CUS fieldset > p:nth-of-type(1),
form.CUS fieldset > p:nth-of-type(2),
form.CUS fieldset > p:nth-of-type(3) {
    width: 33.333%;
}

/* ===============================
   ROW 2: City, State, Zip Code
=============================== */
form.CUS fieldset > p:nth-of-type(4),
form.CUS fieldset > p:nth-of-type(5),
form.CUS fieldset > p:nth-of-type(6) {
    width: 33.333%;
}

/* ===============================
   SERVICE NEEDED TEXTAREA
=============================== */
form.CUS fieldset > p:nth-of-type(7) {
    width: 100%;
}

/* ===============================
   SERVICE DATE (Month, Day, Year)
   â†’ ALL 3 IN ONE ROW
=============================== */

/* Make the 8th <p> (Service Date block) a flex row */
form.CUS fieldset > p:nth-of-type(8) {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: flex-start;
}

/* Month, Day, Year = 3 equal flex columns */
form.CUS fieldset > p:nth-of-type(8) select#service_date,
form.CUS fieldset > p:nth-of-type(8) select#service_day,
form.CUS fieldset > p:nth-of-type(8) input#service_year {
    flex: 1 1 0;
    width: auto;          /* flex handles width */
    margin-top: 6px;
}

/* ===============================
   SERVICE TIME (Full width)
=============================== */
form.CUS fieldset > p:nth-of-type(9) {
    width: 100%;
}

/* ===============================
   SUBMIT BUTTON (Full width)
=============================== */
form.CUS fieldset > p:nth-of-type(10) {
    width: 100%;
}

form.CUS input[type="submit"] {
    width: 100%;
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

form.CUS input[type="submit"]:hover {
    background: #1d4ed8;
}

/* Hide honeypot */
form.CUS input.subject {
    display: none;
}

/* ===============================
   MOBILE RESPONSIVE (stack fields)
=============================== */
@media (max-width: 600px) {

    form.CUS fieldset > p {
        width: 100%;
        padding: 6px 0;
    }

    /* Month, Day, Year full width stacked on mobile */
    form.CUS fieldset > p:nth-of-type(8) {
        flex-direction: column;
        gap: 6px;
    }

    form.CUS fieldset > p:nth-of-type(8) select#service_date,
    form.CUS fieldset > p:nth-of-type(8) select#service_day,
    form.CUS fieldset > p:nth-of-type(8) input#service_year {
        flex: none;
        width: 100% !important;
    }
/* ===============================
   ROW 1: Name, Phone, Address
=============================== */
form.CUS fieldset > p:nth-of-type(1),
form.CUS fieldset > p:nth-of-type(2),
form.CUS fieldset > p:nth-of-type(3) {
    width: 100%;
}

/* ===============================
   ROW 2: City, State, Zip Code
=============================== */
form.CUS fieldset > p:nth-of-type(4),
form.CUS fieldset > p:nth-of-type(5),
form.CUS fieldset > p:nth-of-type(6) {
    width: 100%;
}
}
.adc-contact-header{

    text-align:center;

    margin-bottom:45px;

}

.adc-contact-subtitle{

    display:inline-block;

    color:#26d48c;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:12px;

}

.adc-contact-header h2{

    font-size:48px;

    font-weight:800;

    color:#fff;

    margin-bottom:20px;

}

.adc-contact-header p{color:#fff;}


/*=========================================

FAQ

=========================================*/

.adc-faq-section{

padding:110px 0;

background:#f8fbff;

}

.adc-faq .accordion-item{

border:none;

margin-bottom:18px;

border-radius:18px;

overflow:hidden;

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

}

.adc-faq .accordion-button{

font-size:19px;

font-weight:700;

padding:22px 25px;

background:#fff;

color:#1b2943;

box-shadow:none;

}

.adc-faq .accordion-button:not(.collapsed){

background:#1842b6;

color:#fff;

}

.adc-faq .accordion-body{

padding:25px;

line-height:1.9;

color:#667080;

background:#fff;

}

/*=========================================

MAP

=========================================*/

.adc-map-card{

background:#fff;

border-radius:25px;

overflow:hidden;

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

height:100%;

}

.adc-map-card iframe{

width:100%;

height:420px;

border:0;

}

.adc-map-info{

display:flex;

align-items:center;

gap:18px;

padding:25px;

}

.adc-map-info i{

width:60px;

height:60px;

display:flex;

align-items:center;

justify-content:center;

background:#1842b6;

color:#fff;

border-radius:50%;

font-size:24px;

}

.adc-map-info strong{

display:block;

font-size:22px;

color:#1b2943;

margin-bottom:5px;

}

.adc-map-info span{

color:#667080;

line-height:1.8;

}

@media(max-width:991px){

.adc-map-card iframe{

height:350px;

}

}


/*=========================================
Service Areas Marquee
=========================================*/

.adc-service-area{

    background:linear-gradient(135deg,#1842b6,#0d2f84);

    padding:25px 0;

    overflow:hidden;

}

.adc-service-title{

    text-align:center;

    margin-bottom:18px;

}

.adc-service-title span{

    color:#fff;

    font-size:28px;

    font-weight:800;

    letter-spacing:1px;

}

.adc-service-title i{

    color:#26d48c;

    margin-right:8px;

}

.adc-marquee{

    overflow:hidden;

    white-space:nowrap;

}

.adc-marquee-track{

    display:inline-flex;

    align-items:center;

    animation:adcMarquee 35s linear infinite;

}

.adc-marquee-track span{

    display:inline-flex;

    align-items:center;

    margin-right:70px;

    color:#fff;

    font-size:18px;

    font-weight:600;

}

.adc-marquee-track span::before{

    content:"";

    width:10px;

    height:10px;

    border-radius:50%;

    background:#26d48c;

    margin-right:12px;

}

@keyframes adcMarquee{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

@media(max-width:768px){

.adc-service-title span{

font-size:22px;

}

.adc-marquee-track span{

font-size:16px;

margin-right:40px;

}

}


/*=========================================
ZIP CODES
=========================================*/

.adc-zip-section{

    padding:100px 0;

    background:#ffffff;

}

.adc-zip-heading{

    max-width:700px;

    margin:0 auto 50px;

}

.adc-zip-heading h2{

    font-size:46px;

    font-weight:800;

    color:#16243c;

    margin:15px 0;

}

.adc-zip-heading p{

    color:#6f7788;

    line-height:1.9;

}

.adc-zip-card{

    text-align:center;

    background:#f8fbff;

    padding:40px 25px;

    border-radius:22px;

    border:1px solid rgba(24,66,182,.08);

    transition:.35s;

    height:100%;

}

.adc-zip-card:hover{

    transform:translateY(-8px);

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

}

.adc-zip-card i{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto auto 20px;

    border-radius:50%;

    background:#1842b6;

    color:#fff;

    font-size:28px;

}

.adc-zip-card h4{

    font-size:34px;

    font-weight:800;

    color:#1842b6;

    margin-bottom:10px;

}

.adc-zip-card span{

    color:#667080;

    font-size:16px;

}

/*=========================================
Footer
=========================================*/

.adc-footer{

    background:#04194b;

    color:#cfd8e6;

    padding:90px 0 30px;

}

.adc-footer-title{

    color:#ffffff;

    font-size:26px;

    font-weight:800;

    margin-bottom:28px;

}

.adc-footer-text{

    line-height:1.9;

    color:#bfcadc;

}

.adc-footer-links,
.adc-footer-contact{

    list-style:none;

    padding:0;

    margin:0;

}

.adc-footer-links li{

    margin-bottom:14px;

}

.adc-footer-links a{

    color:#cfd8e6;

    text-decoration:none;

    transition:.3s;

}

.adc-footer-links a:hover{

    color:#26d48c;

    padding-left:8px;

}

.adc-footer-contact li{

    display:flex;

    align-items:flex-start;

    gap:15px;

    margin-bottom:20px;

}

.adc-footer-contact i{

    width:42px;

    height:42px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#1842b6;

    color:#fff;

    border-radius:50%;

}

.adc-footer-contact a{

    color:#cfd8e6;

    text-decoration:none;

    transition:.3s;

}

.adc-footer-contact a:hover{

    color:#26d48c;

}

.adc-footer-social{

    display:flex;

    gap:12px;

    margin-top:30px;

}

.adc-footer-social a{

    width:46px;

    height:46px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#1842b6;

    color:#fff;

    text-decoration:none;

    transition:.35s;

}

.adc-footer-social a:hover{

    background:#26d48c;

    transform:translateY(-5px);

}

.adc-footer-divider{

    margin:60px 0 30px;

    border-color:rgba(255,255,255,.10);

}

.adc-footer-bottom{

    text-align:center;

}

.adc-footer-bottom p{

    margin:0;

    color:#aab7ca;

}

@media(max-width:991px){

.adc-footer{

text-align:center;

}

.adc-footer-contact li{

justify-content:center;

}

.adc-footer-social{

justify-content:center;

}

}


/* =====================================================
   COMPLETE FAQ CENTER
===================================================== */

.adc-complete-faq-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(38, 212, 140, 0.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 25%,
            rgba(24, 66, 182, 0.08),
            transparent 30%
        ),
        #f7fbff;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.adc-complete-faq-heading {
    max-width: 850px;
    margin: 0 auto 45px;
}

.adc-complete-faq-subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 20px;
    margin-bottom: 18px;
    border-radius: 50px;
    background: rgba(38, 212, 140, 0.12);
    color: #159b66;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.adc-complete-faq-heading h2 {
    margin-bottom: 20px;
    color: #16243c;
    font-size: 48px;
    line-height: 1.18;
    font-weight: 900;
}

.adc-complete-faq-heading h2 span {
    display: block;
    color: #1842b6;
}

.adc-complete-faq-heading p {
    max-width: 760px;
    margin: 0 auto;
    color: #667080;
    font-size: 17px;
    line-height: 1.9;
}


/* =====================================================
   CATEGORY NAVIGATION
===================================================== */

.adc-faq-category-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 1100px;
    margin: 0 auto 60px;
}

.adc-faq-category-nav a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 17px;
    border: 1px solid rgba(24, 66, 182, 0.11);
    border-radius: 50px;
    background: #ffffff;
    color: #26364e;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(19, 48, 97, 0.06);
    transition: 0.3s ease;
}

.adc-faq-category-nav a i {
    color: #26d48c;
}

.adc-faq-category-nav a:hover {
    color: #ffffff;
    border-color: #1842b6;
    background: #1842b6;
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(24, 66, 182, 0.18);
}

.adc-faq-category-nav a:hover i {
    color: #ffffff;
}


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

.adc-faq-category {
    position: relative;
    margin-bottom: 50px;
    padding: 38px;
    border: 1px solid rgba(24, 66, 182, 0.08);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 20px 55px rgba(13, 46, 92, 0.07);
    scroll-margin-top: 120px;
}

.adc-faq-category:last-of-type {
    margin-bottom: 0;
}


/* =====================================================
   CATEGORY HEADING
===================================================== */

.adc-faq-category-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(24, 66, 182, 0.1);
}

.adc-faq-category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, #1842b6, #0d2f84);
    color: #ffffff;
    font-size: 27px;
    box-shadow: 0 15px 32px rgba(24, 66, 182, 0.2);
}

.adc-faq-category-heading span {
    display: block;
    margin-bottom: 5px;
    color: #26b97c;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.adc-faq-category-heading h3 {
    margin: 0;
    color: #16243c;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 850;
}


/* =====================================================
   ACCORDION
===================================================== */

.adc-main-faq .accordion-item {
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(24, 66, 182, 0.08);
    border-radius: 17px;
    background: #f8fbff;
}

.adc-main-faq .accordion-item:last-child {
    margin-bottom: 0;
}

.adc-main-faq .accordion-header {
    margin: 0;
}

.adc-main-faq .accordion-button {
    position: relative;
    padding: 21px 58px 21px 22px;
    border: 0;
    background: #f8fbff;
    color: #1d2c44;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 750;
    box-shadow: none;
    transition: 0.3s ease;
}

.adc-main-faq .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #1842b6, #123784);
    color: #ffffff;
}

.adc-main-faq .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.adc-main-faq .accordion-button::after {
    width: 34px;
    height: 34px;
    margin-left: auto;
    border-radius: 50%;
    background-color: #ffffff;
    background-position: center;
    background-size: 14px;
    box-shadow: 0 6px 16px rgba(10, 34, 74, 0.12);
}

.adc-main-faq .accordion-button.collapsed::after {
    background-color: rgba(24, 66, 182, 0.09);
}

.adc-main-faq .accordion-body {
    padding: 23px 24px 25px;
    border-top: 1px solid rgba(24, 66, 182, 0.08);
    background: #ffffff;
    color: #667080;
    font-size: 15.5px;
    line-height: 1.95;
}


/* =====================================================
   BOTTOM CTA
===================================================== */

.adc-faq-bottom-cta {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    margin-top: 60px;
    padding: 34px;
    border-radius: 26px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.03),
            rgba(255, 255, 255, 0.1)
        ),
        #0d2f84;
    color: #ffffff;
    box-shadow: 0 24px 55px rgba(13, 47, 132, 0.22);
}

.adc-faq-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border-radius: 22px;
    background: #26d48c;
    color: #ffffff;
    font-size: 30px;
    box-shadow: 0 14px 30px rgba(38, 212, 140, 0.25);
}

.adc-faq-cta-content span {
    display: block;
    margin-bottom: 5px;
    color: #6aefb7;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.adc-faq-cta-content h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 27px;
    line-height: 1.3;
    font-weight: 850;
}

.adc-faq-cta-content p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.75;
}

.adc-faq-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 205px;
    padding: 16px 24px;
    border-radius: 50px;
    background: #26d48c;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s ease;
}

.adc-faq-cta-button:hover {
    background: #ffffff;
    color: #1842b6;
    transform: translateY(-3px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .adc-complete-faq-section {
        padding: 85px 0;
    }

    .adc-complete-faq-heading h2 {
        font-size: 40px;
    }

    .adc-faq-category {
        padding: 30px;
    }

    .adc-faq-bottom-cta {
        grid-template-columns: auto 1fr;
    }

    .adc-faq-cta-button {
        grid-column: 1 / -1;
        width: 100%;
    }

}


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

@media (max-width: 767px) {

    .adc-complete-faq-section {
        padding: 70px 0;
    }

    .adc-complete-faq-heading {
        margin-bottom: 35px;
    }

    .adc-complete-faq-heading h2 {
        font-size: 32px;
    }

    .adc-complete-faq-heading p {
        font-size: 15px;
    }

    .adc-faq-category-nav {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        margin-bottom: 42px;
        padding: 4px 3px 15px;
        scrollbar-width: thin;
    }

    .adc-faq-category-nav a {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .adc-faq-category {
        margin-bottom: 32px;
        padding: 22px 16px;
        border-radius: 22px;
    }

    .adc-faq-category-heading {
        align-items: flex-start;
        gap: 13px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .adc-faq-category-icon {
        width: 54px;
        height: 54px;
        border-radius: 16px;
        font-size: 22px;
    }

    .adc-faq-category-heading h3 {
        font-size: 23px;
    }

    .adc-main-faq .accordion-button {
        padding: 18px 50px 18px 17px;
        font-size: 15px;
    }

    .adc-main-faq .accordion-button::after {
        width: 30px;
        height: 30px;
        background-size: 12px;
    }

    .adc-main-faq .accordion-body {
        padding: 20px 18px;
        font-size: 14.5px;
    }

    .adc-faq-bottom-cta {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 42px;
        padding: 26px 22px;
    }

    .adc-faq-cta-content h3 {
        font-size: 23px;
    }

    .adc-faq-cta-button {
        width: 100%;
        min-width: auto;
    }

}


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

@media (max-width: 480px) {

    .adc-complete-faq-heading h2 {
        font-size: 28px;
    }

    .adc-complete-faq-subtitle {
        padding: 8px 15px;
        font-size: 11px;
    }

    .adc-faq-category {
        padding: 20px 13px;
    }

    .adc-main-faq .accordion-button {
        padding-right: 46px;
        font-size: 14.5px;
    }

}