@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #0b5cab;
    --primary-dark: #063b70;
    --secondary: #f47c2c;
    --accent: #16a085;
    --ink: #172033;
    --muted: #647084;
    --line: #e5ebf2;
    --soft: #f4f8fb;
    --white: #ffffff;
    --shadow: 0 16px 45px rgba(18, 38, 63, 0.12);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
}

img {
    max-width: 100%;
}

a {
    color: var(--primary);
}

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

.bg-soft {
    background:
        linear-gradient(135deg, rgba(11, 92, 171, 0.05), rgba(22, 160, 133, 0.05)),
        var(--soft);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 3px;
    background: var(--secondary);
    border-radius: 999px;
}

.text-balance {
    text-wrap: balance;
}

.max-width-700 {
    max-width: 700px;
}

.navbar {
    background: rgba(255, 255, 255, 0.96);
    padding: 14px 0;
    box-shadow: 0 8px 28px rgba(23, 32, 51, 0.08);
    backdrop-filter: blur(12px);
}

.navbar-brand img {
    width: 162px;
    height: auto;
}

.navbar-brand span {
    color: var(--primary);
    font-size: 1.15rem;
    font-weight: 900;
    line-height: 1.1;
}

.brand-wordmark {
    color: var(--primary);
    font-size: 1.12rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0;
}

.brand-wordmark span {
    color: var(--secondary);
}

.nav-link {
    color: var(--ink) !important;
    font-weight: 700;
    padding: 10px 14px !important;
}

.nav-link:hover,
.nav-link.active,
.dropdown-item.active,
.dropdown-item:active {
    color: var(--primary) !important;
    background: transparent;
}

.dropdown-menu {
    border-radius: var(--radius);
}

.btn-primary-action,
.btn-secondary-action,
.btn-outline-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary-action {
    color: var(--white);
    background: var(--primary);
}

.btn-secondary-action {
    color: var(--white);
    background: var(--secondary);
}

.btn-outline-action {
    color: var(--primary);
    background: var(--white);
    border-color: rgba(11, 92, 171, 0.25);
}

.btn-primary-action:hover,
.btn-secondary-action:hover,
.btn-outline-action:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-primary-action:hover {
    background: var(--primary-dark);
}

.btn-secondary-action:hover {
    background: #d9661e;
}

.btn-outline-action:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.hero-v2 {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 720px;
    padding: 96px 0 72px;
    color: var(--white);
    background: var(--primary-dark);
}

.hero-v2::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: url('../images/hero-luxury.png') center/cover no-repeat;
}

.hero-services-overview::before {
    background-image: url('../images/hero-main.png');
}

.hero-unclog::before {
    background-image: url('../images/unclog-service.png');
}

.hero-clean-home::before {
    background-image: url('../images/before-vent.png');
}

.hero-lint-removal::before {
    background-image: url('../images/lint-removal.png');
}

.hero-air-duct::before {
    background-image: url('../images/air-duct-cleaning.jpg');
}

.hero-ac-service::before {
    background-image: url('../images/ac-service.png');
}

.hero-v2::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(3, 29, 54, 0.92), rgba(6, 59, 112, 0.72) 46%, rgba(6, 59, 112, 0.35));
}

.hero-title {
    max-width: 840px;
    font-size: clamp(2.55rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: 0;
    margin-bottom: 22px;
}

.hero-title span,
h2 span {
    color: var(--secondary);
}

.hero-copy {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.18rem;
}

.hero-panel {
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow);
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0 34px;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    font-weight: 700;
}

.lead-form-box,
.content-card,
.feature-card,
.review-card,
.service-card,
.contact-shell {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 34px rgba(18, 38, 63, 0.08);
}

.lead-form-box {
    padding: 30px;
}

.form-control,
.form-select {
    min-height: 48px;
    border-radius: var(--radius);
    border-color: #d8e0ea;
    color: var(--ink);
    font-weight: 600;
}

textarea.form-control {
    min-height: 120px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(11, 92, 171, 0.12);
}

.content-card,
.feature-card,
.service-card {
    height: 100%;
    padding: 28px;
}

.service-card > img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.feature-card,
.service-card,
.gallery-item,
.review-card {
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.feature-card:hover,
.service-card:hover,
.gallery-item:hover,
.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(11, 92, 171, 0.32);
    box-shadow: var(--shadow);
}

.feature-icon,
.service-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: rgba(11, 92, 171, 0.09);
    border-radius: var(--radius);
    font-size: 1.35rem;
    margin-bottom: 18px;
}

.split-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.split-image img {
    width: 100%;
    height: 390px;
    object-fit: cover;
}

.image-label {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 8px 12px;
    color: var(--white);
    background: rgba(3, 29, 54, 0.8);
    border-radius: var(--radius);
    font-weight: 800;
}

.trust-bar,
.counter-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 38px 0;
}

.counter-val {
    font-weight: 900;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    min-height: 240px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--soft);
}

.gallery-item.large {
    grid-column: span 6;
    min-height: 360px;
}

.gallery-item.medium {
    grid-column: span 4;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px;
    color: var(--white);
    background: linear-gradient(0deg, rgba(3, 29, 54, 0.86), rgba(3, 29, 54, 0));
    font-weight: 800;
}

.review-card {
    height: 100%;
    padding: 26px;
}

.stars {
    color: #ffc107;
    margin-bottom: 12px;
}

.coupon-card {
    display: inline-block;
    max-width: 520px;
    padding: 12px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.coupon-card img {
    border-radius: 6px;
}

.accordion-button {
    font-weight: 800;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background: rgba(11, 92, 171, 0.08);
    box-shadow: none;
}

.footer {
    background: #101827;
    color: var(--white);
}

.footer img {
    max-width: 180px;
    height: auto;
}

.footer a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.footer a:hover {
    color: var(--white);
}

.footer-mini-form .form-control {
    min-height: 42px;
}

.social-link {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
}

.sticky-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
    display: none;
    padding: 10px 0;
    background: var(--white);
    box-shadow: 0 -10px 30px rgba(18, 38, 63, 0.15);
}

.sticky-cta.visible {
    display: block;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.sticky-sidebar {
    top: 104px;
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 64px 0;
    }

    .navbar-nav {
        align-items: stretch !important;
        padding-top: 12px;
    }

    .hero-v2 {
        min-height: auto;
        padding: 72px 0 56px;
    }

    .hero-v2::after {
        background: rgba(3, 29, 54, 0.82);
    }

    .hero-panel {
        margin-top: 24px;
    }

    .gallery-item.large,
    .gallery-item.medium {
        grid-column: span 12;
        min-height: 260px;
    }
}

@media (max-width: 575.98px) {
    .btn-primary-action,
    .btn-secondary-action,
    .btn-outline-action {
        width: 100%;
    }

    .lead-form-box,
    .content-card,
    .feature-card,
    .service-card {
        padding: 22px;
    }

    .split-image img {
        height: 270px;
    }
}
