/*
 * Kemah Air Duct Cleaning
 * Organized stylesheet
 *
 */

/* ========================================
   Global
======================================== */
:root {
    --primary-color: #5b4fc4;
    --primary-dark: #4a3fa8;
    --primary-light: #e8e6f5;
    --text-dark: #1a1a2e;
    --text-muted: #6b7280;
    --white: #ffffff;
    --border-radius: 16px;
    --card-radius: 20px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Inter", sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}
article {
    font-size: 14px;
    line-height: 25px;
    color: var(--text-dark);
    margin-bottom: 24px;
}

/* ========================================
   Header and Navigation
======================================== */
.announcement-bar {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
}
.announcement-bar a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}
.announcement-bar a:hover {
    opacity: 0.8;
}
.announcement-bar .social-icons a {
    margin-left: 16px;
    font-size: 14px;
}
.main-navbar {
    padding: 36px 0;
    background: #fff;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 24px;
    color: var(--text-dark) !important;
}
.brand-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
}
.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px !important;
    transition: color 0.3s;
}
.nav-link:hover {
    color: var(--primary-color) !important;
}
.nav-link.active {
    background: var(--primary-light);
    border-radius: 20px;
    color: var(--primary-color) !important;
}
.dropdown-toggle::after {
    font-size: 10px;
}
.btn-live-chat {
    background: #b8b3e0;
    color: var(--text-dark);
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.btn-live-chat:hover {
    background: #a8a3d0;
}
.phone-section {
    display: flex;
    align-items: center;
    gap: 12px;
}
.phone-icon {
    width: 42px;
    height: 42px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.phone-text {
    line-height: 1.2;
}
.phone-text small {
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.phone-text strong a {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

/* ========================================
   Hero Section
======================================== */
.hero-section {
    padding: 0;
    position: relative;
    padding-inline: clamp(16px, 3vw, 50px);
}
.hero-section .row {
    border-radius: var(--card-radius);
    overflow: hidden;
    --bs-gutter-x: 24px;
}
.hero-left {
    width: 100%;
    min-height: 600px;
    padding: 80px 60px 60px;
    background: var(--primary-light);
    border-radius: var(--card-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 24px;
    width: fit-content;
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}
.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
}
.hero-divider {
    display: block;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.hero-divider .line {
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}
.hero-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 32px;
}
.btn a {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}
.btn-primary-custom {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}
.btn-primary-custom:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(91, 79, 196, 0.3);
}
.btn-outline-custom {
    background: #fff;
    color: var(--text-dark);
    border: 1px solid #e5e7eb;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}
.btn-outline-custom:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}
.btn-icon {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.btn-outline-custom .btn-icon {
    background: var(--text-dark);
    color: #fff;
}
.hero-cards {
    display: flex;
    gap: 16px;
    margin-top: 48px;
}
.hero-card {
    background: #fff;
    border-radius: var(--card-radius);
    padding: 20px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-width: 220px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.hero-card:hover {
    transform: translateY(-3px);
}
.hero-card-content h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}
.hero-card-arrow {
    width: 25px;
    height: 25px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}
.hero-card-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}
.hero-right {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 0;
}
.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    border-radius: var(--card-radius);
    overflow: hidden;
}
.hero-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    border-radius: inherit;
}
.review-card {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #fff;
    border-radius: var(--card-radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    max-width: 300px;
}
.play-btn {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s;
}
.play-btn:hover {
    transform: scale(1.1);
}
.review-content {
    display: flex;
    flex-direction: column;
}
.avatar-stack {
    display: flex;
    margin-bottom: 6px;
}
.avatar-stack img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
    object-fit: cover;
}
.avatar-stack img:first-child {
    margin-left: 0;
}
.review-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}
.review-text strong {
    color: var(--text-dark);
    font-size: 22px;
    font-weight: 800;
}

/* ========================================
   Services Marquee
======================================== */
.services-marquee {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
    background-color: #ffffff;
    border-top: 1px solid #f1f2f7;
    border-bottom: 1px solid #f1f2f7;
}
.services-marquee__slider {
    width: 100%;
    overflow: hidden;
}
.services-marquee__slider .swiper-wrapper {
    align-items: center;
    transition-timing-function: linear !important;
}
.services-marquee__slider .swiper-slide {
    display: flex;
    align-items: center;
    width: auto !important;
    flex-shrink: 0;
}
.services-marquee__text {
    color: #9b9da4;
    font-size: 1.2rem;
    font-weight: 400;
    white-space: nowrap;
}
.services-marquee__star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 1.75rem;
    color: #b9c7f4;
    font-size: 2.2rem;
    line-height: 1;
    transform: rotate(12deg);
}

/* ========================================
   About Section
======================================== */
.about-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.about-section::before {
    content: "";
    position: absolute;
    bottom: 100px;
    right: 0px;
    width: 200px;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Crect x='14' y='18' width='52' height='44' rx='10' fill='%23f3f2fa'/%3E%3Crect x='23' y='27' width='54' height='46' rx='5' fill='none' stroke='%235b4fc4' stroke-width='3'/%3E%3Cpath d='M31 37h38M31 46h38M31 55h38M31 64h38' fill='none' stroke='%235b4fc4' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M18 12c5-5 11-5 16 0M66 88c5 5 11 5 16 0' fill='none' stroke='%234a3fa8' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E")
    no-repeat center;
    background-size: contain;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}
.about-images {
    position: relative;
    height: 100%;
    min-height: 500px;
}
.about-img-main {
    position: absolute;
    left: -20%;
    top: -5%;
    width: 65%;
    height: 85%;
    border-radius: var(--border-radius);
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    z-index: 2;
}
.about-img-secondary-wrapper {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 70%;
    height: 70%;
    z-index: 3;
}
.about-img-secondary {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    position: relative;
    z-index: 2;
}
.purple-block {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: var(--border-radius);
    z-index: 1;
}
.experience-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    border-radius: 16px;
    padding: 16px 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
}
.experience-badge .number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}
.experience-badge .text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.3;
    font-weight: 500;
}
.about-content {
    padding-left: 40px;
    position: relative;
    z-index: 1;
}
.about-label {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}
.about-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 24px;
}
.about-highlight {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    display: block;
}
.about-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 28px;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}
.feature-list li i {
    color: var(--primary-color);
    font-size: 18px;
}
.stats-row {
    display: flex;
    gap: 0;
    border-top: 1px solid #e5e7eb;
    padding-top: 32px;
}
.stat-item {
    flex: 1;
    text-align: left;
    padding: 0 24px;
    position: relative;
}
.stat-item:first-child {
    padding-left: 0;
}
.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: #e5e7eb;
}
.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ========================================
   Animations and Utilities
======================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 {
    transition-delay: 0.1s;
}
.delay-2 {
    transition-delay: 0.2s;
}
.delay-3 {
    transition-delay: 0.3s;
}
.delay-4 {
    transition-delay: 0.4s;
}

/* ========================================
   Services Section
======================================== */
.services-section {
    padding: 120px 0;
    margin-top: 120px;
    background-color: var(--primary-light);
}
.services-section__heading {
    max-width: 660px;
}
.services-section__label {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 500;
}
.services-section h2 {
    color: var(--text-dark);
}
.service-card {
    background-color: var(--white);
    border: 1px solid transparent;
    transition: background-color 0.5s ease,
        border-color 0.5s ease,
        transform 0.5s ease,
        box-shadow 0.5s ease;
}
.service-card__icon {
    flex: 0 0 100px;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(91, 79, 196, 0.18);
    transition: background-color 0.5s ease,
        border-color 0.5s ease;
}
.service-card__icon img {
    display: block;
    max-width: 90px;
    max-height: 90px;
    object-fit: cover;
}
.service-card__title {
    color: var(--text-dark);
    font-size: 1.3rem;
    transition: color 0.5s ease;
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.5s ease;
}

/* ========================================
   Sub Section
======================================== */
.sub-section {
    position: relative;
    padding: 8.4375rem 0;
    overflow: hidden;
}
.sub-section__content-wrap {
    min-height: 37.5rem;
    isolation: isolate;
    overflow: visible;
}
.blue-elipse {
    top: -3rem;
    left: -3rem;
    z-index: 0;
    width: 11rem;
    height: 11rem;
    object-fit: contain;
    opacity: 0.8;
    pointer-events: none;
}
.sub-section__content {
    z-index: 1;
    min-height: 37.5rem;
    padding: 4.375rem 2.9375rem;
    overflow: hidden;
    background-color: var(--primary-light);
    border-radius: var(--card-radius);
}
.sub-section__content-inner {
    z-index: 2;
}
.sub-section__title {
    margin: 0 0 1.475rem;
    color: var(--text-dark);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}
.sub-section__description p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 1rem;
}
.sub-section__media {
    min-height: 37.5rem;
    overflow: hidden;
    border-radius: 1.875rem;
}
.sub-section__image {
    display: block;
    min-height: 37.5rem;
    object-fit: cover;
    border-radius: inherit;
}
.sub-section__badge {
    right: 1.0625rem;
    bottom: 1.0625rem;
    z-index: 2;
    width: 6.375rem;
    height: 6.375rem;
    padding: 1.5rem;
    background-color: var(--primary-light);
    box-shadow: 0 1rem 2.5rem rgba(26, 26, 46, 0.14);
}
.sub-section__badge img {
    max-width: 4.625rem;
    max-height: 4.625rem;
    object-fit: contain;
}

/* ========================================
   Second Sub Context
======================================== */
.second-sub-context {
    position: relative;
    padding: 6.25rem 0;
    overflow: hidden;
    background-color: var(--primary-light);
}
.second-sub-context__row {
    margin-bottom: 5rem;
}
.second-sub-context__row:last-child {
    margin-bottom: 0;
}
.second-sub-context__media {
    overflow: hidden;
    border: 0.125rem solid var(--white);
    border-radius: var(--card-radius);
    background-color: var(--white);
}
.second-sub-context__image {
    display: block;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: calc(var(--card-radius) - 0.125rem);
    transition: transform 0.5s ease;
}
.second-sub-context__content {
    max-width: 31rem;
    margin-left: auto;
}
.second-sub-context__content--left {
    margin-right: auto;
    margin-left: 0;
}
.second-sub-context__title {
    margin: 0 0 0.75rem;
    color: var(--text-dark);
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
}
.second-sub-context__content p {
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    font-size: 1rem;
}

/* ========================================
   Service Appointment
======================================== */
.service-appointment {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 6.25rem 0;
    border-radius: var(--card-radius);
    background-image: linear-gradient(
            rgba(74, 63, 168, 0.84),
            rgba(74, 63, 168, 0.84)
        );
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.service-appointment::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: linear-gradient(
            90deg,
            rgba(26, 26, 46, 0.18),
            transparent 35%,
            transparent 65%,
            rgba(26, 26, 46, 0.18)
        );
    pointer-events: none;
}
.service-appointment__content {
    max-width: 58rem;
}
.service-appointment__label {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
}
.service-appointment__title {
    max-width: 43rem;
    margin: 0 auto 0.75rem;
    font-size: clamp(2rem, 4vw, 3rem);
}
.service-appointment__intro {
    max-width: 41rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}
.service-appointment__form {
    max-width: 75rem;
    margin: 0 auto;
}
.service-appointment__form fieldset {
    min-width: 0;
}
.service-appointment__form .form-control,
.service-appointment__form .form-select {
    min-height: 2.5rem;
    padding: 0.85rem 1rem;
    border: 0.0625rem solid rgba(255, 255, 255, 0.45);
    border-radius: 0.75rem;
    color: var(--text-dark);
    background-color: var(--white);
    font-size: 0.95rem;
    box-shadow: none;
    transition: border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}
.service-appointment__form .form-control::placeholder {
    color: var(--text-muted);
    opacity: 1;
}
.service-appointment__form .form-control:focus,
.service-appointment__form .form-select:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 0.25rem rgba(232, 230, 245, 0.24);
    transform: translateY(-0.0625rem);
}
.service-appointment__textarea {
    min-height: 5.5rem !important;
    resize: vertical;
}
.service-appointment__field-label {
    display: block;
    margin: 0 0 0.4rem 0.25rem;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
}
.service-appointment .subject {
    position: absolute;
    left: -9999px;
    width: 0.0625rem;
    height: 0.0625rem;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}
.service-appointment__button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-width: 14.5rem;
    min-height: 3.65rem;
    padding: 0.45rem 0.5rem 0.45rem 1.5rem;
    border: 0;
    color: var(--white);
    background-color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.service-appointment__button-icon {
    width: 2.65rem;
    height: 2.65rem;
    color: var(--primary-color);
    background-color: var(--white);
    transition: transform 0.3s ease;
}
.service-appointment__button:hover {
    color: var(--white);
    background-color: var(--primary-dark);
    box-shadow: 0 1rem 2rem rgba(26, 26, 46, 0.25);
    transform: translateY(-0.1875rem);
}
.service-appointment__button:hover .service-appointment__button-icon {
    transform: rotate(45deg);
}

/* ========================================
   Testimonials
======================================== */
.testimonials-section {
    position: relative;
    padding: 1rem 0;
    background-color: var(--white);
}
.testimonials-section__wrapper {
    position: relative;
    overflow: hidden;
    min-height: 54rem;
    padding: 8rem 0 5rem;
    border-radius: 3.5rem !important;
    background-color: var(--primary-light);
}
.testimonials-section__heading {
    max-width: 54rem;
    margin-bottom: 3.5rem;
}
.testimonials-section__label {
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 500;
}
.testimonials-section__title {
    margin: 0;
    color: var(--text-dark);
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 700;
}
.testimonials-slider {
    position: relative;
    width: 100%;
    max-width: 67rem;
    margin: 0 auto;
    padding: 0 0 1rem;
    overflow: hidden;
}
.testimonials-slider .swiper-wrapper {
    align-items: stretch;
}
.testimonials-slider .swiper-slide {
    display: flex;
    height: auto;
}
.testimonial-card {
    position: relative;
    width: 100%;
    min-height: 27rem;
    padding: 3rem 2rem 3.25rem;
    border-radius: 1.25rem;
    background-color: var(--white);
    box-shadow: none;
}
.testimonial-card__avatar {
    width: 7rem;
    height: 7rem;
    margin: 0 auto 2rem;
    overflow: hidden;
    border-radius: 50%;
    background-color: var(--primary-light);
}
.testimonial-card__avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-card__rating {
    display: none;
}
.testimonial-card__quote {
    max-width: 58rem;
    margin: 0 auto 1.75rem;
}
.testimonial-card__quote p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1.05rem;
    text-align: center;
}
.testimonial-card__name {
    margin-bottom: 0.4rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}
.testimonial-card__role {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.testimonial-slider__navigation {
    position: absolute;
    top: 3.8rem;
    left: 50%;
    z-index: 10;
    display: flex;
    width: 16.5rem;
    align-items: center;
    justify-content: space-between;
    transform: translateX(-50%);
    pointer-events: none;
}
.testimonial-slider__button {
    display: inline-flex;
    flex: 0 0 2.5rem;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    background-color: rgba(91, 79, 196, 0.14);
    font-size: 0.85rem;
    cursor: pointer;
    pointer-events: auto;
    transition: color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease;
}
.testimonial-slider__button:hover {
    color: var(--white);
    background-color: var(--primary-color);
    transform: translateY(-0.15rem);
}
.testimonial-slider__button:focus-visible {
    outline: 0.2rem solid rgba(91, 79, 196, 0.25);
    outline-offset: 0.2rem;
}
.testimonial-slider__button.swiper-button-disabled {
    cursor: not-allowed;
    opacity: 0.4;
}
.testimonial-card__active-avatar {
    display: none;
}
.testimonials-slider__pagination {
    bottom: 0 !important;
}
.testimonials-slider__pagination .swiper-pagination-bullet {
    width: 0.625rem;
    height: 0.625rem;
    margin: 0 0.3rem !important;
    background-color: var(--primary-color);
    opacity: 0.25;
    transition: width 0.3s ease,
        border-radius 0.3s ease,
        opacity 0.3s ease;
}
.testimonials-slider__pagination .swiper-pagination-bullet-active {
    width: 2rem;
    border-radius: 1rem;
    opacity: 1;
}

/* ========================================
   Offers
======================================== */
.offers-section {
    padding: 6.25rem 0;
    background-color: var(--white);
}
.offers-section__heading {
    max-width: 52rem;
    margin-bottom: 3.5rem;
}
.offers-section__label {
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 500;
}
.offers-section__title {
    color: var(--text-dark);
    font-size: clamp(2rem, 4vw, 3rem);
}
.offer-card {
    overflow: hidden;
    border: 1px solid #d9ddea;
    border-radius: var(--card-radius);
    background-color: var(--primary-light);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.offer-card:hover {
    transform: translateY(-0.35rem);
    box-shadow: 0 1rem 2rem rgba(26, 26, 46, 0.08);
}
.offer-card__media {
    overflow: hidden;
    border-bottom: 1px solid #d9ddea;
}
.offer-card__media img {
    display: block;
    width: 100%;
    height: 15rem;
    object-fit: cover;
}

/* ========================================
   Global
======================================== */
.offer-card__body {
    position: relative;
    padding: 2.75rem 1.5rem 1.5rem;
}

/* ========================================
   Offers
======================================== */
.offer-card__badge {
    position: absolute;
    top: -7rem;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 9rem;
    height: 9rem;
    border: 4px solid var(--primary-light);
    border-radius: 50%;
    background-color: var(--primary-color);
    transform: translateX(-50%);
}
.offer-card__badge-amount {
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}
.offer-card__badge-text {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.1;
}
.offer-card__title {
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1.25;
}
.offer-card__notes {
    display: grid;
    gap: 0.5rem;
}
.offer-card__notes li {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.1;
}

/* ========================================
   FAQ
======================================== */
.faq-section {
    padding: 6rem 0 1.25rem;
    background-color: var(--white);
}
.faq-section__heading {
    max-width: 47rem;
    margin: 0 auto 3.75rem;
    text-align: center;
}
.faq-section__heading h2 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}
.faq-section__heading p {
    max-width: 39rem;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1rem;
}
.faq-group__title {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    font-size: 1.0625rem;
    font-weight: 700;
}
.faq-group__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
}
.faq-group__items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    overflow: hidden;
    border-radius: 0.75rem;
    background-color: var(--primary-light);
}
.faq-item__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    width: 100%;
    min-height: 4.375rem;
    padding: 1rem 1.25rem;
    border: 0;
    background-color: transparent;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    transition: 0.3s;
}
.faq-item__button:hover,
.faq-item__button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--white);
}
.faq-item__arrow {
    position: relative;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}
.faq-item__arrow::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0.8125rem;
    height: 0.125rem;
    background-color: currentColor;
    content: "";
    transform: translateY(-50%);
}
.faq-item__arrow::after {
    position: absolute;
    top: 50%;
    right: 0.0625rem;
    width: 0.4375rem;
    height: 0.4375rem;
    border-top: 0.125rem solid currentColor;
    border-right: 0.125rem solid currentColor;
    content: "";
    transform: translateY(-50%) rotate(45deg);
}
.faq-item__button:not(.collapsed) .faq-item__arrow {
    transform: rotate(90deg);
}
.faq-item__answer {
    padding: 1.25rem;
    border-top: 0.0625rem solid rgba(91, 79, 196, 0.16);
    background-color: var(--white);
    color: var(--text-muted);
    font-size: 1rem;
}
.faq-cta {
    margin-top: 3.5rem;
    padding: 1.75rem 1.25rem;
    border-radius: var(--border-radius);
    background-color: var(--primary-dark);
    text-align: center;
}
.faq-cta__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.faq-cta__content > span {
    color: var(--white);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
}
.faq-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.375rem 0.375rem 0.375rem 1.5rem;
    border-radius: 3.125rem;
    background-color: var(--text-dark);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}
.faq-cta__button:hover {
    background-color: var(--white);
    color: var(--text-dark);
    transform: translateY(-0.1875rem);
}
.faq-cta__button-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--text-dark);
}
.faq-cta__button-icon::before {
    width: 0.5rem;
    height: 0.5rem;
    border-top: 0.125rem solid currentColor;
    border-right: 0.125rem solid currentColor;
    content: "";
    transform: rotate(45deg);
}
.faq-cta__button:hover .faq-cta__button-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

/* ========================================
   Performance and Comparison
======================================== */
.performance-section {
    padding: 6.25rem 5rem;
    background-color: var(--white);
}
.performance-section__content {
    padding-left: 1.25rem;
}
.performance-section__label {
    display: inline-block;
    margin-bottom: 0.875rem;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.performance-section__content h2 {
    max-width: 40rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.15;
}
.performance-section__intro {
    max-width: 41rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}
.performance-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.875rem;
    margin: 0 0 2rem;
    padding: 0;
    list-style: none;
}
.performance-list__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.75rem;
    background-color: var(--primary-light);
    transition: transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}
.performance-list__item:hover {
    background-color: var(--white);
    box-shadow: 0 0.875rem 2.5rem rgba(26, 26, 46, 0.1);
    transform: translateY(-0.1875rem);
}
.performance-list__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    flex: 0 0 1.75rem;
    margin-top: 0.125rem;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--primary-light);
}
.performance-list__icon svg {
    width: 0.875rem;
    height: 0.875rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.performance-list__item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
    font-size: 0.9375rem;
    line-height: 1.4;
}
.performance-list__item span {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}
.performance-section__button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.4375rem 0.4375rem 0.4375rem 1.5rem;
    border-radius: 3.125rem;
    background-color: var(--text-dark);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease,
        transform 0.3s ease;
}
.performance-section__button:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-0.1875rem);
}
.performance-section__button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.375rem;
    height: 2.375rem;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--text-dark);
}
.comparison-card {
    position: sticky;
    top: 2rem;
    overflow: hidden;
    padding: 0.75rem;
    border-radius: var(--card-radius);
    background-color: var(--primary-light);
    box-shadow: 0 1.5rem 4rem rgba(26, 26, 46, 0.12);
}
.comparison {
    --comparison-position: 50%;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 40rem;
    border-radius: calc(var(--card-radius) - 0.375rem);
    background-color: var(--text-dark);
    isolation: isolate;
}
.comparison__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.comparison__image--after {
    clip-path: inset(0 0 0 var(--comparison-position));
}
.comparison__label {
    position: absolute;
    top: 1rem;
    z-index: 4;
    padding: 0.5rem 0.875rem;
    border-radius: 3.125rem;
    background-color: rgba(26, 26, 46, 0.88);
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 700;
    backdrop-filter: blur(0.5rem);
}
.comparison__label--before {
    left: 1rem;
}
.comparison__label--after {
    right: 1rem;
    background-color: var(--primary-color);
}
.comparison__divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--comparison-position);
    z-index: 3;
    width: 0.1875rem;
    background-color: var(--white);
    box-shadow: 0 0 1.25rem rgba(26, 26, 46, 0.3);
    pointer-events: none;
    transform: translateX(-50%);
}
.comparison__handle {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border: 0.25rem solid var(--white);
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 0.75rem 2rem rgba(26, 26, 46, 0.28);
    transform: translate(-50%, -50%);
}
.comparison__range {
    position: absolute;
    inset: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: ew-resize;
    opacity: 0;
}
.comparison-card__footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0.5rem 0.375rem;
}
.comparison-card__footer p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.5;
}
.comparison-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    flex: 0 0 2.25rem;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
}

/* ========================================
   Contact Information
======================================== */
.contact-info-section {
    padding: 6rem 0 1.25rem;
    background-color: var(--white);
}
.contact-info-section__heading {
    max-width: 48rem;
    margin-bottom: 3.75rem;
}
.contact-info-section__label {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.contact-info-section__heading h2 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.15;
}
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border: 0.0625rem solid transparent;
    border-radius: var(--border-radius);
    background-color: var(--primary-light);
    transition: background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}
.contact-info-card:hover {
    border-color: rgba(91, 79, 196, 0.2);
    background-color: var(--white);
    box-shadow: 0 1.25rem 3rem rgba(26, 26, 46, 0.1);
    transform: translateY(-0.3125rem);
}
.contact-info-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    flex: 0 0 3rem;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
}
.contact-info-card__icon svg {
    width: 1.375rem;
    height: 1.375rem;
}
.contact-info-card__content {
    min-width: 0;
}
.contact-info-card__title {
    display: block;
    margin-bottom: 0.625rem;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 700;
}
.contact-info-card a,
.contact-info-card address,
.contact-info-card__hours p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.65;
}
.contact-info-card a {
    overflow-wrap: anywhere;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-info-card a:hover {
    color: var(--primary-color);
}
.contact-info-card address {
    margin: 0;
    font-style: normal;
}
.contact-info-card__phones {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.375rem;
}
.contact-info-card__phones > span {
    color: var(--primary-color);
}
.contact-info-card__hours p {
    margin-bottom: 0.375rem;
}
.contact-info-card__hours p:last-child {
    margin-bottom: 0;
}
.contact-info-card__hours strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
}
.contact-info-map {
    overflow: hidden;
    margin-top: 3rem;
    padding: 0.625rem;
    border-radius: var(--border-radius);
    background-color: var(--primary-light);
    box-shadow: 0 1.25rem 3rem rgba(26, 26, 46, 0.12);
}
.contact-info-map iframe {
    display: block;
    width: 100%;
    min-height: 18.125rem;
    border: 0;
    border-radius: calc(var(--border-radius) - 0.375rem);
}

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

.site-footer {
    width: 100%;
    padding: 0.5rem 0 1rem;
    background-color: var(--white);
}

.site-footer__wrapper {
    position: relative;
    overflow: hidden;
    padding: 3.75rem 1.75rem 3rem;
    border-radius: 3.125rem;
    background-color: var(--primary-dark);
    color: var(--white);
}

.site-footer__about {
    max-width: 25rem;
}

.site-footer__logo {
    display: inline-block;
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.site-footer__logo img {
    display: block;
    width: auto;
    max-width: 13.125rem;
    height: auto;
    object-fit: contain;
}

.site-footer__about > p {
    max-width: 24rem;
    margin: 0 0 1.5rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    line-height: 1.7;
}

.site-footer__copyright {
    max-width: 24rem;
    padding-top: 1.5rem;
    border-top: 0.0625rem solid rgba(255, 255, 255, 0.2);
}

.site-footer__copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.875rem;
    line-height: 1.6;
}

.site-footer__column {
    height: 100%;
}

.site-footer__title,
.site-footer__social-title {
    margin: 0 0 1.25rem;
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
}

.site-footer__location-list,
.site-footer__zip-list,
.site-footer__contact,
.site-footer__social {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__location-list,
.site-footer__zip-list {
    display: flex;
    flex-direction: column;
    gap: 0.8125rem;
}

.site-footer__location-list li,
.site-footer__zip-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6875rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.site-footer__dot {
    display: inline-block;
    width: 0.3125rem;
    height: 0.3125rem;
    flex: 0 0 0.3125rem;
    margin-top: 0.5rem;
    border-radius: 50%;
    background-color: var(--white);
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.site-footer__location-list li:hover .site-footer__dot,
.site-footer__zip-list li:hover .site-footer__dot {
    background-color: var(--primary-light);
    transform: scale(1.35);
}

.site-footer__location-list li > span:last-child,
.site-footer__zip-list li > span:last-child {
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.site-footer__location-list li:hover > span:last-child,
.site-footer__zip-list li:hover > span:last-child {
    color: var(--white);
    transform: translateX(0.1875rem);
}

.site-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.site-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    min-width: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9375rem;
    line-height: 1.55;
}

.site-footer__contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.125rem;
    height: 1.125rem;
    flex: 0 0 1.125rem;
    margin-top: 0.1875rem;
    color: var(--white);
}

.site-footer__contact-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.site-footer__contact a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9375rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer__contact a:hover {
    color: var(--primary-light);
}

.site-footer__phone-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.375rem;
}

.site-footer__phone-list > span {
    color: rgba(255, 255, 255, 0.5);
}

.site-footer__hours {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.site-footer__social-area {
    margin-top: 1.75rem;
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.site-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.625rem;
    height: 2.625rem;
    border: 0.0625rem solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    background-color: transparent;
    color: var(--white);
    text-decoration: none;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.site-footer__social a:hover {
    border-color: var(--white);
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-0.1875rem);
}

.site-footer__social i {
    font-size: 1rem;
    line-height: 1;
}

.site-footer__social svg {
    display: block;
    width: 1rem;
    height: 1rem;
}

.site-footer__yp {
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

.site-footer__back-to-top {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.75rem;
    height: 3.75rem;
    border: 0.125rem solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background-color: #999fe0;
    color: var(--white);
    box-shadow: 0 0.75rem 2rem rgba(26, 26, 46, 0.2);
    text-decoration: none;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.site-footer__back-to-top:hover {
    border-color: var(--white);
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-0.25rem);
}

.site-footer__back-to-top svg {
    width: 1.5rem;
    height: 1.5rem;
}


.subpage-hero {
    padding: 1rem 0;
    background-color: var(--white);
}

.subpage-hero__wrapper {
    position: relative;
    display: flex;
    min-height: 25rem;
    align-items: center;
    overflow: hidden;
    border-radius: var(--card-radius);
    background-color: var(--primary-light);
    isolation: isolate;
}

/* Decorative HVAC background pattern */
.subpage-hero__wrapper::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    content: "";
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='260' viewBox='0 0 500 260'%3E%3Cg fill='none' stroke='%235b4fc4' stroke-width='2' opacity='.09'%3E%3Crect x='45' y='35' width='65' height='48' rx='10'/%3E%3Cpath d='M58 49h39M58 60h39M58 71h39'/%3E%3Cpath d='M185 35c18 0 18 17 36 17s18-17 36-17'/%3E%3Cpath d='M180 60c22 0 22 18 44 18s22-18 44-18'/%3E%3Ccircle cx='410' cy='55' r='28'/%3E%3Cpath d='M392 55h36M410 37v36'/%3E%3Crect x='330' y='155' width='75' height='55' rx='10'/%3E%3Cpath d='M345 170h45M345 182h45M345 194h45'/%3E%3Cpath d='M90 180c18-20 40-20 58 0s40 20 58 0'/%3E%3Cpath d='M92 200c18-20 40-20 58 0s40 20 58 0'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat;
    background-position: center;
    background-size: 31.25rem 16.25rem;
    pointer-events: none;
}

.subpage-hero__wrapper::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background:
        radial-gradient(
            circle at center,
            rgba(232, 230, 245, 0.25) 0%,
            rgba(232, 230, 245, 0.7) 70%
        );
    pointer-events: none;
}

.subpage-hero__content {
    max-width: 52rem;
    padding: 4rem 1rem;
}

.subpage-hero__title {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
}

.subpage-hero__description {
    max-width: 48rem;
    margin: 0 auto 2.5rem;
    color: var(--text-muted);
    font-size: 1.125rem;
}

.subpage-hero__breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    margin: 0;
    padding: 0.75rem 1.25rem;
    border-radius: 3.125rem;
    background-color: var(--white);
    list-style: none;
    box-shadow: 0 0.5rem 1.5rem rgba(26, 26, 46, 0.05);
}

.subpage-hero__breadcrumb li {
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.subpage-hero__breadcrumb li:first-child {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.subpage-hero__breadcrumb li:first-child::before {
    display: inline-block;
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background-color: var(--primary-color);
    content: "";
}

.subpage-hero__breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.subpage-hero__breadcrumb a:hover {
    color: var(--primary-dark);
}

.service-areas-section {
    padding: 6rem 0;
    background: #f7f6fc;
}

.service-areas-section__heading {
    max-width: 760px;
    margin-bottom: 3rem;
}

.service-areas-section__label {
    display: inline-block;
    margin-bottom: 1rem;
    color: #5b4fc4;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.service-areas-section__heading h2 {
    margin-bottom: 1rem;
    color: #1a1a2e;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
}

.service-areas-section__heading p {
    margin: 0;
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.8;
}

.service-area-card {
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #e8e6f5;
    border-radius: 1.25rem;
    box-shadow: 0 0.75rem 2.5rem rgba(26, 26, 46, 0.07);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.service-area-card:hover {
    transform: translateY(-0.5rem);
    border-color: #5b4fc4;
    box-shadow: 0 1.25rem 3rem rgba(91, 79, 196, 0.14);
}

.service-area-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1.25rem;
    color: #5b4fc4;
    background: #e8e6f5;
    border-radius: 50%;
    font-size: 1.35rem;
    transition:
        color 0.3s ease,
        background 0.3s ease;
}

.service-area-card:hover .service-area-card__icon {
    color: #ffffff;
    background: #5b4fc4;
}

.service-area-card__title {
    display: block;
    margin-bottom: 0.75rem;
    color: #1a1a2e;
    font-size: 1.25rem;
    font-weight: 800;
}

.service-area-card p {
    margin-bottom: 1.25rem;
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.7;
}

.service-area-card__zip {
    display: inline-flex;
    padding: 0.5rem 0.875rem;
    color: #4a3fa8;
    background: #e8e6f5;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
}

.service-areas-section__cta {
    max-width: 720px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: #1a1a2e;
    border-radius: 1.25rem;
}

.service-areas-section__cta p {
    margin-bottom: 1.25rem;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.7;
}

.service-areas-section__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.875rem 1.5rem;
    color: #ffffff;
    background: #5b4fc4;
    border-radius: 3rem;
    font-weight: 700;
    text-decoration: none;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.service-areas-section__button:hover {
    color: #ffffff;
    background: #4a3fa8;
    transform: translateY(-0.1875rem);
}



/* ========================================
   Responsive and Interaction Rules
======================================== */





@media (hover: hover) {

    /* Services Section */
    .service-card:hover {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        transform: translateY(-6px);
        box-shadow: 0 20px 45px rgba(26, 26, 46, 0.16);
    }

    .service-card:hover .service-card__icon {
        background-color: var(--white);
        border-color: var(--white);
    }

    .service-card:hover .service-card__title,
    .service-card:hover p {
        color: var(--white);
    }


    /* Second Sub Context */
    .second-sub-context__media:hover .second-sub-context__image {
        transform: scale(1.04);
    }


    /* Service Appointment */
    .service-appointment {
        padding: 4rem 0;
        background-position: center;
    }

    .service-appointment__title {
        font-size: 2rem;
    }
}

@media (max-width: 1199.98px) {

    /* Performance and Comparison */
    .performance-list {
        grid-template-columns: 1fr;
    }

    .comparison {
        min-height: 44rem;
    }
}

@media (max-width: 991.98px) {

    /* Performance and Comparison */
    .performance-section {
        padding: 4.5rem 0;
    }

    .performance-section__content {
        padding-left: 0;
    }

    .comparison-card {
        position: relative;
        top: auto;
    }

    .comparison {
        min-height: 35rem;
    }

    .performance-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    /* FAQ */
    .faq-section {
        padding-top: 4.5rem;
    }

    .faq-section__heading {
        margin-bottom: 3rem;
    }

    .faq-cta {
        margin-top: 4rem;
    }


    /* Offers */
    .offers-section {
        padding: 5rem 0;
    }

    .offer-card__media img {
        height: 15rem;
    }


    /* Second Sub Context */
    .second-sub-context {
        padding: 5rem 0;
    }

    .second-sub-context__row {
        margin-bottom: 4rem;
    }

    .second-sub-context__content {
        max-width: 100%;
    }


    /* Service Appointment */
    .service-appointment {
        padding: 5rem 0;
    }

    .service-appointment__content {
        max-width: 46rem;
    }


    /* Contact Information */
    .contact-info-map {
        margin-top: 4rem;
    }

    .contact-info-map iframe {
        min-height: 25rem;
    }

    .contact-info-section {
        padding-top: 4.5rem;
    }

    .contact-info-section__heading {
        margin-bottom: 3rem;
    }


    /* Hero Section */
    .hero-left {
        padding: 60px 30px;
        border-radius: 0;
        min-height: auto;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-image-wrapper {
        min-height: 400px;
    }

    .hero-image {
        border-radius: 0;
    }

    .hero-cards {
        flex-wrap: wrap;
    }

    .review-card {
        right: 20px;
        bottom: 20px;
    }


    /* Services Marquee */
    .services-marquee {
        padding: 1.5rem 0;
    }

    .services-marquee__text {
        font-size: 1rem;
    }

    .services-marquee__star {
        margin: 0 1.35rem;
        font-size: 2rem;
    }


    /* About Section */
    .about-section {
        padding: 60px 0;
    }

    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .about-title {
        font-size: 32px;
    }

    .about-images {
        min-height: 400px;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 5px;
    }

    .stat-item {
        flex: 1 1 30%;
        padding: 0;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }


    /* Sub Section */
    .sub-section {
        padding: 6rem 0;
    }

    .sub-section__content {
        padding: 3.5rem 2rem;
    }

    .sub-section__image {
        min-height: 32rem;
    }

    .sub-section__badge {
        width: 7rem;
        height: 7rem;
        padding: 1.1rem;
    }

    .sub-section__badge img {
        max-width: 4.5rem;
        max-height: 4.5rem;
    }


    /* Site Footer */
    .site-footer__wrapper {
            padding: 3.25rem 1.25rem 5.5rem;
            border-radius: 2.5rem;
        }

        .site-footer__about {
            max-width: 100%;
        }

        .site-footer__about > p,
        .site-footer__copyright {
            max-width: 100%;
        }

        .site-footer__back-to-top {
            right: 1rem;
            bottom: 1rem;
        }
}

@media (max-width: 767.98px) {

    /* Performance and Comparison */
    .comparison {
        min-height: 30rem;
    }

    .performance-list {
        grid-template-columns: 1fr;
    }


    /* Offers */
    .offers-section {
        padding: 4rem 0;
    }

    .offers-section__heading {
        margin-bottom: 2.75rem;
    }

    .offer-card__title {
        font-size: 1.55rem;
    }


    /* Sub Section */
    .sub-section {
        padding: 4.5rem 0;
    }

    .sub-section__content {
        padding: 3rem 2rem;
    }

    .sub-section__image {
        min-height: auto;
    }


    /* Site Footer */
    .site-footer__wrapper {
            padding: 3rem 1rem 5.5rem;
            border-radius: 2.25rem;
        }
         .subpage-hero__wrapper {
        min-height: 21.875rem;
    }

    .subpage-hero__content {
        padding: 3.5rem 0.75rem;
    }

    .subpage-hero__description {
        margin-bottom: 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {

    /* Performance and Comparison */
    .performance-section {
        padding: 3.75rem 0;
    }

    .comparison {
        min-height: 24rem;
    }

    .comparison__handle {
        width: 3rem;
        height: 3rem;
    }

    .performance-list__item {
        padding: 0.875rem;
    }


    /* FAQ */
    .faq-section {
        padding-top: 3.75rem;
    }

    .faq-section__heading {
        margin-bottom: 2.5rem;
    }

    .faq-item__button {
        min-height: 4rem;
        padding: 1rem;
        font-size: 0.9375rem;
    }

    .faq-item__answer {
        padding: 1rem;
        font-size: 0.9375rem;
    }

    .faq-cta {
        margin-top: 3rem;
        padding: 2.25rem 1rem;
    }


    /* Global */
    .offer-card__body {
        padding: 4.25rem 1rem 1.75rem;
    }


    /* Offers */
    .offer-card__badge {
        width: 5.5rem;
        height: 5.5rem;
    }

    .offer-card__badge-amount {
        font-size: 1.45rem;
    }

    .offer-card__title {
        font-size: 1.35rem;
    }


    /* Contact Information */
    .contact-info-map {
        margin-top: 3rem;
        padding: 0.375rem;
    }

    .contact-info-map iframe {
        min-height: 21.875rem;
    }

    .contact-info-section {
        padding-top: 3.75rem;
    }

    .contact-info-card {
        padding: 1.25rem;
    }


    /* Hero Section */
    .hero-title {
        font-size: 32px;
    }

    .hero-cards {
        display: none;
    }


    /* Header and Navigation */
    .phone-section {
        display: none;
    }


    /* Hero Section */
    .review-card {
        left: 20px;
        right: 20px;
        max-width: none;
    }


    /* Header and Navigation */
    .announcement-bar {
        display: none;
    }


    /* Services Marquee */
    .services-marquee {
        padding: 1.25rem 0;
    }

    .services-marquee__text {
        font-size: 0.9rem;
    }

    .services-marquee__star {
        margin: 0 1rem;
        font-size: 1.7rem;
    }


    /* About Section */
    .about-title {
        font-size: 28px;
    }

    .about-img-main {
        width: 50%;
        height: 60%;
    }

    .about-img-secondary-wrapper {
        width: 65%;
        height: 55%;
    }

    .experience-badge {
        padding: 10px 16px;
    }

    .experience-badge .number {
        font-size: 28px;
    }

    .stat-number {
        font-size: 28px;
    }


    /* Hero Section */
    .business-name {
        display: none;
    }


    /* Header and Navigation */
    .main-navbar {
        padding: 6px 0;
    }


    /* Hero Section */
    .badge-pill {
        display: none;
    }

    .hero-image {
        min-height: 450px;
        object-fit: cover;
        object-position: right center;
    }


    /* Header and Navigation */
    .phone-section {
        display: none;
    }


    /* Hero Section */
    .review-card {
        display: none;
    }


    /* About Section */
    .about-img-main {
        left: 1%;
        top: 20%;
    }


    /* Services Section */
    .services-section__label {
        font-size: 1rem;
    }

    .service-card__title {
        font-size: 1.25rem;
    }


    /* Sub Section */
    .sub-section {
        padding: 4rem 0;
    }

    .sub-section__content {
        padding: 2.5rem 1.25rem;
    }

    .sub-section__title {
        margin-bottom: 1.75rem;
        font-size: 2rem;
    }

    .sub-section__badge {
        right: 0.75rem;
        bottom: 0.75rem;
        width: 5.5rem;
        height: 5.5rem;
        padding: 0.9rem;
    }


    /* Second Sub Context */
    .second-sub-context {
        padding: 3.5rem 0;
    }

    .second-sub-context__row {
        margin-bottom: 3rem;
    }

    .second-sub-context__title {
        font-size: 1.5rem;
    }

    .second-sub-context__image {
        aspect-ratio: 4 / 3;
    }

    .second-sub-context {
        padding: 4rem 0;
    }

    .second-sub-context__row {
        margin-bottom: 3.5rem;
    }

    .second-sub-context__content {
        margin-right: 0;
        margin-left: 0;
    }


    /* Service Appointment */
    .service-appointment {
        margin-right: 0.75rem !important;
        margin-left: 0.75rem !important;
        padding: 3.5rem 0;
    }

    .service-appointment__button {
        width: 100%;
    }


    /* Testimonials */
    .testimonials-section {
        padding: 0.75rem 0;
    }

    .testimonials-section__wrapper {
        padding: 4rem 0 3rem;
        border-radius: 1.75rem !important;
    }

    .testimonial-card {
        padding: 2.25rem 1.25rem;
        border-radius: 1rem;
    }

    .testimonial-card__avatar {
        width: 5.25rem;
        height: 5.25rem;
    }

    .testimonial-slider__navigation {
        top: 3.15rem;
        width: 11.5rem;
    }

    .testimonial-slider__button {
        flex-basis: 2.25rem;
        width: 2.25rem;
        height: 2.25rem;
    }

    .testimonial-card__name {
        font-size: 1.25rem;
    }


    /* Site Footer */
    .site-footer {
            padding: 0.375rem 0.25rem 1rem;
        }

        .site-footer__wrapper {
            padding: 2.75rem 0.5rem 5.25rem;
            border-radius: 1.75rem;
        }

        .site-footer__logo img {
            max-width: 11rem;
        }

        .site-footer__title,
        .site-footer__social-title {
            margin-bottom: 1rem;
            font-size: 1.0625rem;
        }

        .site-footer__location-list,
        .site-footer__zip-list {
            gap: 0.6875rem;
        }

        .site-footer__social a {
            width: 2.5rem;
            height: 2.5rem;
        }

        .site-footer__back-to-top {
            right: 0.75rem;
            bottom: 0.75rem;
            width: 3.25rem;
            height: 3.25rem;
        }

        .site-footer__back-to-top svg {
            width: 1.25rem;
            height: 1.25rem;
        }
        .subpage-hero {
        padding: 0.5rem 0;
    }

    .subpage-hero__wrapper {
        min-height: 20rem;
        border-radius: 1.25rem;
    }

    .subpage-hero__content {
        padding: 3rem 0.25rem;
    }

    .subpage-hero__title {
        font-size: 2rem;
    }

    .subpage-hero__breadcrumb {
        padding: 0.625rem 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    /* Services Marquee */
    .services-marquee__slider .swiper-wrapper {
        transition-duration: 0ms !important;
    }
}
