/* =====================================================
   GLOBAL
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    color: #102d55;
    background: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* =====================================================
   TOP STRIP
===================================================== */

.top-strip {
    width: 100%;
    height: 30px;

    background: #092d59;
    color: #ffffff;

    font-size: 11px;
}

.top-strip-inner {
    width: min(1180px, calc(100% - 40px));
    height: 100%;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 22px;
}

.top-left span,
.top-right {
    opacity: .9;
}

.top-left i {
    margin-right: 5px;
    color: #42d5ec;
}

.top-right {
    font-size: 10px;
}


/* =====================================================
   NAVBAR
===================================================== */

.main-header {
    width: 100%;
    background: #ffffff;

    position: relative;
    z-index: 1000;

    border-bottom: 1px solid #edf3f7;
}

.navbar {
    width: min(1180px, calc(100% - 40px));

    height: 72px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 9px;

    flex-shrink: 0;
}

.logo-icon {
    width: 32px;
    height: 32px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #08b9d8;
    color: #ffffff;

    font-size: 15px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    color: #092e5b;

    font-size: 16px;
    line-height: 1.1;

    font-weight: 800;
}

.logo-text span {
    color: #8b9aaa;

    font-size: 7px;

    letter-spacing: .6px;
    margin-top: 3px;
}


/* NAV */

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 20px;

    flex: 1;
}

.desktop-nav a {
    color: #17375f;

    font-size: 12px;
    font-weight: 500;

    white-space: nowrap;

    transition: .2s ease;
}

.desktop-nav a:hover {
    color: #08aeca;
}

.desktop-nav i {
    font-size: 7px;
    margin-left: 2px;
}


/* NAV BUTTON */

.nav-book-btn {
    flex-shrink: 0;

    background: #ff7a2d;
    color: #ffffff;

    padding: 11px 18px;

    border-radius: 20px;

    font-size: 11px;
    font-weight: 700;

    box-shadow: 0 5px 15px rgba(255,122,45,.18);

    transition: .25s ease;
}

.nav-book-btn:hover {
    transform: translateY(-2px);
    background: #f46d20;
}


/* MOBILE BUTTON */

.mobile-menu-btn {
    display: none;

    width: 40px;
    height: 40px;

    border: 0;
    border-radius: 9px;

    background: #eaf9fc;
    color: #073761;

    cursor: pointer;

    font-size: 17px;
}


/* MOBILE MENU */

.mobile-menu {
    display: none;

    width: 100%;

    background: #ffffff;

    border-top: 1px solid #edf2f5;

    padding: 15px 20px 20px;

    flex-direction: column;

    gap: 4px;
}

.mobile-menu a {
    padding: 12px 10px;

    border-radius: 8px;

    color: #11365e;

    font-size: 14px;
    font-weight: 600;
}

.mobile-menu a:hover {
    background: #effaff;
}

.mobile-book-btn {
    margin-top: 7px;

    text-align: center;

    background: #ff7a2d !important;
    color: #ffffff !important;
}


/* =====================================================
   HERO
===================================================== */

.hero-section {

    position: relative;

    width: 100%;

    /*
       IMPORTANT:
       HERO POORI SCREEN HEIGHT LEGA
    */

    min-height: calc(100vh - 102px);

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            105deg,
            #f2fcff 0%,
            #e7f9fe 48%,
            #c9f0fa 100%
        );
}


/* subtle background */

.hero-background-glow {
    position: absolute;

    width: 650px;
    height: 650px;

    right: -180px;
    top: -230px;

    border-radius: 50%;

    background: rgba(255,255,255,.55);

    filter: blur(5px);

    pointer-events: none;
}


/* HERO CONTAINER */

.hero-container {

    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 40px));

    margin: auto;

    min-height: calc(100vh - 102px);

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 60px;

    padding: 60px 0;
}


/* HERO CONTENT */

.hero-content {
    max-width: 590px;
}


/* BREADCRUMB */

.breadcrumb {
    color: #8092a5;

    font-size: 10px;

    margin-bottom: 20px;
}

.breadcrumb span {
    margin: 0 6px;
    color: #b0bdc9;
}


/* LABEL */

.hero-small-label {
    display: inline-flex;

    padding: 7px 12px;

    border-radius: 20px;

    background: #d7f7fc;

    color: #00a5c5;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .8px;

    margin-bottom: 14px;
}


/* HERO TITLE */

.hero-content h1 {
    color: #082e5c;

    font-size: clamp(44px, 5vw, 67px);

    line-height: .98;

    letter-spacing: -2.5px;

    font-weight: 800;

    margin-bottom: 20px;
}


/* HERO DESCRIPTION */

.hero-content > p {
    max-width: 530px;

    color: #71869b;

    font-size: 14px;

    line-height: 1.75;

    margin-bottom: 20px;
}


/* HERO TAGS */

.hero-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 25px;
}

.hero-tags span {
    padding: 7px 10px;

    background: rgba(255,255,255,.72);

    border: 1px solid #d9edf2;

    border-radius: 20px;

    color: #536f87;

    font-size: 9px;

    font-weight: 500;
}

.hero-tags i {
    color: #06b9d5;

    font-size: 8px;

    margin-right: 4px;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.primary-btn,
.secondary-btn {
    min-height: 42px;

    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 22px;

    font-size: 11px;
    font-weight: 700;

    transition: .25s ease;
}

.primary-btn {
    background: #ff7a2d;
    color: #ffffff;

    box-shadow: 0 7px 18px rgba(255,122,45,.20);
}

.primary-btn:hover {
    background: #f06c20;
    transform: translateY(-2px);
}

.primary-btn i {
    margin-left: 8px;
    font-size: 9px;
}

.secondary-btn {
    background: #ffffff;
    color: #17395f;

    border: 1px solid #dcebf0;
}

.secondary-btn:hover {
    background: #effcff;
    transform: translateY(-2px);
}


/* =====================================================
   HERO IMAGE
===================================================== */

.hero-image-area {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-card {

    width: min(100%, 520px);

    aspect-ratio: 1.15 / 1;

    overflow: hidden;

    border-radius: 22px;

    background: #d8edf3;

    box-shadow:
        0 25px 50px rgba(36,91,112,.14);

    position: relative;
}

.hero-image-card::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.20),
            transparent 45%
        );

    pointer-events: none;
}

.hero-image-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transition: transform .5s ease;
}

.hero-image-card:hover img {
    transform: scale(1.025);
}


/* =====================================================
   SERVICES SECTION
===================================================== */

.services-section {

    width: 100%;

    background: #ffffff;

    padding: 95px 0 105px;
}

.section-container {

    width: min(1000px, calc(100% - 40px));

    margin: auto;
}


/* SECTION HEADING */

.section-heading {

    text-align: center;

    max-width: 700px;

    margin: 0 auto 45px;
}

.section-label {

    color: #00aaca;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.4px;

    display: block;

    margin-bottom: 10px;
}

.section-heading h2 {

    color: #092e5b;

    font-size: 34px;

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: -1px;

    margin-bottom: 12px;
}

.section-heading p {

    color: #8295a7;

    font-size: 12px;

    line-height: 1.65;
}


/* =====================================================
   SERVICE GRID
===================================================== */

.services-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 14px;
}


/* SERVICE CARD */

.service-card {

    min-height: 190px;

    padding: 18px;

    border-radius: 13px;

    border: 1px solid #e1edf2;

    background: #ffffff;

    box-shadow:
        0 7px 22px rgba(22,72,94,.035);

    display: flex;
    flex-direction: column;

    transition: .25s ease;
}

.service-card:hover {

    transform: translateY(-4px);

    border-color: #ccebf2;

    box-shadow:
        0 15px 30px rgba(22,72,94,.08);
}


/* SERVICE ICON */

.service-icon {

    width: 28px;
    height: 28px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #def8fc;

    color: #00aaca;

    font-size: 8px;

    font-weight: 800;

    margin-bottom: 14px;
}


/* SERVICE TITLE */

.service-card h3 {

    color: #102f55;

    font-size: 13px;

    line-height: 1.25;

    font-weight: 800;

    margin-bottom: 8px;
}


/* SERVICE DESCRIPTION */

.service-card p {

    color: #8092a2;

    font-size: 9px;

    line-height: 1.6;

    flex: 1;
}


/* CARD BOTTOM */

.service-bottom {

    margin-top: 15px;

    padding-top: 10px;

    border-top: 1px solid #eef4f6;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 5px;
}

.service-bottom span {

    color: #8c9ba7;

    font-size: 7px;
}

.service-bottom a {

    color: #00aaca;

    font-size: 8px;

    font-weight: 700;

    white-space: nowrap;
}

.service-bottom a i {

    font-size: 7px;

    margin-left: 3px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

    .desktop-nav {
        gap: 12px;
    }

    .desktop-nav a {
        font-size: 10px;
    }

    .hero-container {
        gap: 35px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 800px) {

    .top-right {
        display: none;
    }

    .top-strip-inner {
        justify-content: center;
    }

    .desktop-nav,
    .nav-book-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .navbar {
        height: 65px;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-container {

        min-height: auto;

        grid-template-columns: 1fr;

        text-align: center;

        padding: 65px 0 75px;

        gap: 45px;
    }

    .hero-content {
        max-width: 700px;
        margin: auto;
    }

    .hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-tags,
    .hero-buttons {
        justify-content: center;
    }

    .hero-image-card {
        max-width: 560px;
        margin: auto;
    }
}


@media (max-width: 550px) {

    .top-strip {
        height: 26px;
        font-size: 8px;
    }

    .top-left {
        gap: 12px;
    }

    .navbar {
        width: calc(100% - 28px);
    }

    .logo-text strong {
        font-size: 15px;
    }

    .hero-container {
        width: calc(100% - 28px);

        padding-top: 45px;
        padding-bottom: 55px;
    }

    .hero-content h1 {
        font-size: 39px;
        letter-spacing: -1.5px;
    }

    .hero-content > p {
        font-size: 11px;
    }

    .hero-tags span {
        font-size: 8px;
    }

    .hero-buttons {
        flex-wrap: wrap;
    }

    .primary-btn,
    .secondary-btn {
        min-height: 40px;
        padding: 0 17px;
    }

    .section-container {
        width: calc(100% - 28px);
    }

    .services-section {
        padding: 65px 0 70px;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .section-heading h2 {
        font-size: 27px;
    }

    .section-heading p {
        font-size: 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .service-card {
        min-height: 165px;
    }
}

/* =====================================================
   DEEP CLEAN + GAS SECTION
===================================================== */

.clean-gas-section {

    width: 100%;

    background:
        linear-gradient(
            180deg,
            #eafaff 0%,
            #effcff 100%
        );

    padding: 105px 0 110px;
}


.clean-gas-container {

    width: min(1000px, calc(100% - 40px));

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 110px;
}


/* COLUMN */

.clean-gas-column {

    position: relative;
}


/* LABEL */

.clean-gas-column .section-label {

    margin-bottom: 12px;

    display: block;
}


/* HEADING */

.clean-gas-column h2 {

    color: #0b315d;

    font-size: 30px;

    line-height: 1.12;

    letter-spacing: -.8px;

    font-weight: 800;

    margin-bottom: 15px;
}


/* DESCRIPTION */

.column-description {

    max-width: 410px;

    color: #8093a5;

    font-size: 11px;

    line-height: 1.7;

    margin-bottom: 20px;
}


/* CHECK LIST */

.check-list {

    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 10px;
}


.check-list li {

    display: flex;

    align-items: flex-start;

    gap: 8px;

    color: #71879a;

    font-size: 10px;

    line-height: 1.5;
}


.check-list li i {

    flex-shrink: 0;

    color: #42c9e4;

    font-size: 10px;

    margin-top: 2px;
}



/* =====================================================
   TYPES OF AC SECTION
===================================================== */

.ac-types-section {

    width: 100%;

    background: #ffffff;

    padding: 105px 0 115px;
}


.ac-types-container {

    width: min(1000px, calc(100% - 40px));

    margin: auto;
}


/* HEADING */

.ac-types-section .section-heading {

    margin-bottom: 30px;
}


.ac-types-section .section-heading h2 {

    margin-bottom: 9px;
}


.ac-types-section .section-heading p {

    font-size: 11px;
}


/* =====================================================
   AC TYPE PILLS
===================================================== */

.ac-type-pills {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 30px;
}


.ac-type-pills button {

    border: 1px solid #e0edf2;

    background: #ffffff;

    color: #526e86;

    padding: 9px 18px;

    border-radius: 22px;

    font-family: inherit;

    font-size: 9px;

    font-weight: 600;

    cursor: pointer;

    transition: .2s ease;
}


.ac-type-pills button:hover {

    border-color: #76d9e8;

    color: #00a9c8;

    background: #f1fcfe;
}


.ac-type-pills button.active {

    background: #dff8fc;

    border-color: #bdebf2;

    color: #00a5c4;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.ac-types-description {

    width: min(760px, 100%);

    margin: auto;

    text-align: center;
}


.ac-types-description p {

    color: #8294a5;

    font-size: 11px;

    line-height: 1.75;

    margin-bottom: 8px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 800px) {

    .clean-gas-section {

        padding: 75px 0 80px;
    }

    .clean-gas-container {

        grid-template-columns: 1fr;

        gap: 60px;
    }

    .clean-gas-column h2 {

        font-size: 28px;
    }


    .ac-types-section {

        padding: 75px 0 80px;
    }

}


@media (max-width: 550px) {

    .clean-gas-container,
    .ac-types-container {

        width: calc(100% - 28px);
    }


    .clean-gas-column h2 {

        font-size: 25px;
    }


    .column-description {

        font-size: 10px;
    }


    .check-list li {

        font-size: 9px;
    }


    .ac-types-section .section-heading h2 {

        font-size: 27px;
    }


    .ac-type-pills {

        gap: 6px;
    }


    .ac-type-pills button {

        padding: 8px 13px;

        font-size: 8px;
    }


    .ac-types-description p {

        font-size: 10px;
    }

}

/* =====================================================
   APPLIANCE CARE SECTION
===================================================== */

.appliance-care-section {

    width: 100%;

    background: #ffffff;

    padding: 105px 0 115px;
}


.appliance-container {

    width: min(1000px, calc(100% - 40px));

    margin: auto;
}


/* =====================================================
   CARE GRID
===================================================== */

.care-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 14px;

    margin-top: 45px;
}


/* CARE CARD */

.care-card {

    min-height: 145px;

    padding: 20px;

    border: 1px solid #dfebf0;

    border-radius: 13px;

    background: #ffffff;

    box-shadow:
        0 8px 24px rgba(18,70,94,.035);

    transition: .25s ease;
}


.care-card:hover {

    transform: translateY(-4px);

    border-color: #bde7ef;

    box-shadow:
        0 15px 30px rgba(18,70,94,.07);
}


/* CARD TOP */

.care-card-top {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 13px;
}


.care-icon {

    width: 29px;
    height: 29px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e2f8fc;

    color: #00a9c8;

    font-size: 11px;
}


.care-card h3 {

    color: #12345c;

    font-size: 13px;

    line-height: 1.3;

    font-weight: 800;
}


.care-card p {

    color: #7d90a2;

    font-size: 10px;

    line-height: 1.65;
}



/* =====================================================
   FOUR STEPS SECTION
===================================================== */

.booking-steps-section {

    width: 100%;

    background:
        linear-gradient(
            180deg,
            #effbfe 0%,
            #e7f8fc 100%
        );

    padding: 105px 0 110px;
}


.booking-steps-container {

    width: min(1000px, calc(100% - 40px));

    margin: auto;
}


/* =====================================================
   STEPS GRID
===================================================== */

.steps-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 12px;

    margin-top: 45px;
}


/* STEP CARD */

.step-card {

    min-height: 150px;

    padding: 19px;

    border-radius: 14px;

    background: #ffffff;

    border: 1px solid #dcecf1;

    box-shadow:
        0 10px 24px rgba(24,76,97,.07);

    position: relative;

    transition: .25s ease;
}


.step-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 18px 32px rgba(24,76,97,.11);
}


/* STEP NUMBER */

.step-number {

    color: #00b4d2;

    font-size: 17px;

    font-weight: 800;

    line-height: 1;

    margin-bottom: 13px;
}


.step-card h3 {

    color: #12345b;

    font-size: 12px;

    line-height: 1.35;

    font-weight: 800;

    margin-bottom: 9px;
}


.step-card p {

    color: #8092a2;

    font-size: 9px;

    line-height: 1.6;
}


/* =====================================================
   STEP CONNECTOR
===================================================== */

.step-card:not(:last-child)::after {

    content: "";

    position: absolute;

    width: 12px;

    height: 1px;

    background: #b9e3eb;

    right: -12px;

    top: 50%;

    z-index: 2;
}



/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .care-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .steps-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .step-card::after {

        display: none;
    }

}



/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 550px) {

    .appliance-care-section {

        padding: 70px 0 75px;
    }


    .appliance-container,
    .booking-steps-container {

        width: calc(100% - 28px);
    }


    .care-grid {

        grid-template-columns: 1fr;

        gap: 10px;

        margin-top: 30px;
    }


    .care-card {

        min-height: auto;

        padding: 17px;
    }


    .care-card h3 {

        font-size: 12px;
    }


    .care-card p {

        font-size: 9px;
    }


    .booking-steps-section {

        padding: 70px 0 75px;
    }


    .steps-grid {

        grid-template-columns: 1fr;

        gap: 10px;

        margin-top: 30px;
    }


    .step-card {

        min-height: 135px;
    }


    .step-card h3 {

        font-size: 12px;
    }


    .step-card p {

        font-size: 9px;
    }

}

/* =====================================================
   BRANDS SECTION
===================================================== */

.brands-section {

    width: 100%;

    background: #ffffff;

    padding: 100px 0 105px;
}


.brands-container {

    width: min(1000px, calc(100% - 40px));

    margin: auto;
}


/* BRANDS HEADING */

.brands-section .section-heading {

    margin-bottom: 32px;
}


.brands-section .section-heading h2 {

    font-size: 31px;
}


.brands-section .section-heading p {

    font-size: 11px;
}


/* BRAND LIST */

.brand-list {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 9px;

    max-width: 850px;

    margin: auto;
}


.brand-pill {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 30px;

    padding: 0 15px;

    border: 1px solid #e2edf1;

    border-radius: 18px;

    background: #ffffff;

    color: #60788e;

    font-size: 10px;

    font-weight: 600;

    box-shadow:
        0 4px 12px rgba(24,72,92,.035);

    transition: .2s ease;
}


.brand-pill:hover {

    color: #00a8c6;

    border-color: #b9e7ee;

    background: #f2fcfe;

    transform: translateY(-2px);
}


/* MORE */

.brand-more {

    display: flex;

    justify-content: center;

    margin-top: 12px;
}


.brand-more span {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 27px;

    padding: 0 14px;

    border-radius: 16px;

    background: #ffffff;

    border: 1px solid #e2edf1;

    color: #7d90a2;

    font-size: 9px;
}



/* =====================================================
   FAQ SECTION
===================================================== */

.faq-section {

    width: 100%;

    background:
        linear-gradient(
            180deg,
            #f0fbfd 0%,
            #e7f8fc 100%
        );

    padding: 100px 0 110px;
}


.faq-container {

    width: min(1000px, calc(100% - 40px));

    margin: auto;
}


/* FAQ HEADING */

.faq-section .section-heading {

    margin-bottom: 35px;
}


.faq-section .section-heading h2 {

    font-size: 32px;
}



/* =====================================================
   FAQ LIST
===================================================== */

.faq-list {

    width: min(700px, 100%);

    margin: auto;

    display: flex;

    flex-direction: column;

    gap: 8px;
}


/* FAQ ITEM */

.faq-item {

    background: #ffffff;

    border: 1px solid #dcecf1;

    border-radius: 9px;

    overflow: hidden;

    box-shadow:
        0 4px 12px rgba(30,76,95,.025);

    transition: .25s ease;
}


.faq-item.active {

    border-color: #bde6ed;

    box-shadow:
        0 8px 20px rgba(20,80,100,.06);
}


/* QUESTION */

.faq-question {

    width: 100%;

    min-height: 43px;

    padding: 0 16px;

    border: 0;

    background: #ffffff;

    color: #16365a;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    text-align: left;

    font-family: inherit;

    font-size: 11px;

    font-weight: 600;

    cursor: pointer;
}


.faq-question i {

    flex-shrink: 0;

    color: #7d93a4;

    font-size: 8px;

    transition: transform .25s ease;
}


.faq-item.active .faq-question i {

    transform: rotate(180deg);

    color: #00a8c6;
}


/* ANSWER */

.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition:
        max-height .3s ease,
        padding .3s ease;
}


.faq-answer p {

    padding: 0 16px;

    color: #7c8fa0;

    font-size: 10px;

    line-height: 1.7;
}


.faq-item.active .faq-answer {

    max-height: 150px;

    padding-bottom: 15px;
}



/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 550px) {

    .brands-section {

        padding: 70px 0 75px;
    }


    .brands-container,
    .faq-container {

        width: calc(100% - 28px);
    }


    .brands-section .section-heading h2 {

        font-size: 27px;
    }


    .brand-list {

        gap: 6px;
    }


    .brand-pill {

        min-height: 28px;

        padding: 0 12px;

        font-size: 8px;
    }


    .faq-section {

        padding: 70px 0 75px;
    }


    .faq-section .section-heading h2 {

        font-size: 27px;
    }


    .faq-question {

        min-height: 45px;

        padding: 0 13px;

        font-size: 10px;
    }


    .faq-answer p {

        padding-left: 13px;

        padding-right: 13px;

        font-size: 9px;
    }

}

/* =====================================================
   FINAL CTA SECTION
===================================================== */

.final-cta-section {

    width: 100%;

    background: #ffffff;

    padding: 20px 20px 85px;
}


.final-cta {

    width: min(1000px, 100%);

    min-height: 185px;

    margin: auto;

    border-radius: 14px;

    background:
        linear-gradient(
            110deg,
            #102d59 0%,
            #073f68 100%
        );

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 35px 30px;

    box-shadow:
        0 15px 35px rgba(10,47,83,.15);

    position: relative;

    overflow: hidden;
}


/* CTA GLOW */

.final-cta::before {

    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    left: -150px;
    top: -170px;

    border-radius: 50%;

    background: rgba(0,205,230,.08);
}


.final-cta::after {

    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    right: -130px;
    bottom: -160px;

    border-radius: 50%;

    background: rgba(255,255,255,.05);
}


.final-cta-content {

    position: relative;

    z-index: 2;

    max-width: 620px;
}


.final-cta-content h2 {

    color: #ffffff;

    font-size: 26px;

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: -.6px;

    margin-bottom: 9px;
}


.final-cta-content p {

    color: rgba(255,255,255,.72);

    font-size: 10px;

    line-height: 1.6;

    margin-bottom: 18px;
}


/* CTA BUTTONS */

.final-cta-buttons {

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;
}


.cta-orange-btn,
.cta-blue-btn {

    min-height: 37px;

    padding: 0 17px;

    border-radius: 20px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    font-size: 9px;

    font-weight: 700;

    transition: .25s ease;
}


.cta-orange-btn {

    background: #ff7b2c;

    color: #ffffff;

    box-shadow:
        0 6px 15px rgba(255,122,44,.18);
}


.cta-orange-btn:hover {

    transform: translateY(-2px);

    background: #f06c20;
}


.cta-orange-btn i {

    margin-left: 7px;

    font-size: 7px;
}


.cta-blue-btn {

    background: #08b8d3;

    color: #ffffff;
}


.cta-blue-btn:hover {

    transform: translateY(-2px);

    background: #00a8c4;
}


.cta-blue-btn i {

    margin-right: 6px;

    font-size: 11px;
}



/* =====================================================
   FOOTER
===================================================== */

.site-footer {

    width: 100%;

    background:
        linear-gradient(
            110deg,
            #102d59 0%,
            #06486d 100%
        );

    color: #ffffff;
}


/* FOOTER MAIN */

.footer-main {

    width: min(1000px, calc(100% - 40px));

    margin: auto;

    padding: 55px 0 42px;

    display: grid;

    grid-template-columns:
        2fr
        1fr
        1.15fr
        1.15fr
        1fr;

    gap: 40px;
}


/* =====================================================
   FOOTER BRAND
===================================================== */

.footer-logo {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 17px;
}


.footer-logo-icon {

    width: 29px;
    height: 29px;

    border-radius: 50%;

    background: #08b9d8;

    color: #ffffff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 13px;
}


.footer-logo-text {

    display: flex;

    flex-direction: column;
}


.footer-logo-text strong {

    color: #ffffff;

    font-size: 15px;

    line-height: 1.1;

    font-weight: 800;
}


.footer-logo-text span {

    color: rgba(255,255,255,.55);

    font-size: 6px;

    letter-spacing: .6px;

    margin-top: 3px;
}


/* DESCRIPTION */

.footer-description {

    max-width: 280px;

    color: rgba(255,255,255,.62);

    font-size: 9px;

    line-height: 1.7;

    margin-bottom: 18px;
}


/* =====================================================
   CONTACT
===================================================== */

.footer-contact {

    display: flex;

    flex-direction: column;

    gap: 8px;
}


.footer-contact a,
.footer-address {

    color: rgba(255,255,255,.7);

    font-size: 9px;

    line-height: 1.5;

    display: flex;

    align-items: flex-start;

    gap: 8px;
}


.footer-contact i {

    width: 13px;

    color: #50d4e7;

    font-size: 9px;

    margin-top: 2px;
}


/* =====================================================
   SOCIAL
===================================================== */

.footer-social {

    display: flex;

    align-items: center;

    gap: 7px;

    margin-top: 17px;
}


.footer-social a {

    width: 27px;
    height: 27px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.15);

    color: rgba(255,255,255,.7);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 10px;

    transition: .2s ease;
}


.footer-social a:hover {

    background: #08b9d8;

    border-color: #08b9d8;

    color: #ffffff;

    transform: translateY(-2px);
}



/* =====================================================
   FOOTER COLUMNS
===================================================== */

.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 9px;
}


.footer-column h3 {

    color: #ffffff;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .3px;

    margin-bottom: 5px;
}


.footer-column a {

    color: rgba(255,255,255,.58);

    font-size: 8px;

    line-height: 1.4;

    transition: .2s ease;
}


.footer-column a:hover {

    color: #54d8e8;

    transform: translateX(2px);
}



/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {

    width: min(1000px, calc(100% - 40px));

    margin: auto;

    min-height: 60px;

    border-top: 1px solid rgba(255,255,255,.11);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.footer-bottom p {

    color: rgba(255,255,255,.45);

    font-size: 7px;

    line-height: 1.5;
}



/* =====================================================
   FLOATING ACTIONS
===================================================== */

.floating-actions {

    position: fixed;

    right: 17px;

    bottom: 17px;

    z-index: 9999;

    display: flex;

    flex-direction: column;

    gap: 7px;
}


.floating-actions a {

    width: 32px;
    height: 32px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    font-size: 13px;

    box-shadow:
        0 5px 15px rgba(0,0,0,.15);

    transition: .2s ease;
}


.floating-actions a:hover {

    transform: translateY(-3px) scale(1.05);
}


.floating-whatsapp {

    background: #27c76f;
}


.floating-call {

    background: #ff7b2c;
}



/* =====================================================
   FOOTER RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .footer-main {

        grid-template-columns:
            1.5fr
            1fr
            1fr;

        gap: 35px;
    }

    .footer-brand {

        grid-column: 1 / -1;
    }

}


@media (max-width: 600px) {

    .final-cta-section {

        padding: 10px 14px 60px;
    }


    .final-cta {

        min-height: 220px;

        padding: 30px 20px;

        border-radius: 13px;
    }


    .final-cta-content h2 {

        font-size: 23px;
    }


    .final-cta-content p {

        font-size: 9px;
    }


    .final-cta-buttons {

        flex-wrap: wrap;
    }


    .footer-main {

        width: calc(100% - 28px);

        grid-template-columns: 1fr 1fr;

        gap: 35px 25px;

        padding: 45px 0 35px;
    }


    .footer-brand {

        grid-column: 1 / -1;
    }


    .footer-column h3 {

        font-size: 9px;
    }


    .footer-column a {

        font-size: 8px;
    }


    .footer-bottom {

        width: calc(100% - 28px);

        padding: 15px 0;

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        gap: 5px;
    }


    .footer-bottom p {

        font-size: 7px;
    }


    .floating-actions {

        right: 12px;

        bottom: 12px;
    }

}

/* =====================================================
   PART 6 — GLOBAL FONT + FULL WIDTH POLISH
===================================================== */

/* Main section headings */

.section-heading h2 {
    font-size: 42px !important;
    line-height: 1.15 !important;
    letter-spacing: -1px;
}

.section-heading p {
    font-size: 15px !important;
    line-height: 1.65 !important;
}


/* Small section labels */

.section-label {
    font-size: 12px !important;
    letter-spacing: 1.2px;
    font-weight: 800;
}


/* General readable paragraph */

.clean-gas-column .column-description {
    font-size: 15px !important;
    line-height: 1.7 !important;
    max-width: 520px;
}


/* Lists */

.check-list li {
    font-size: 14px !important;
    line-height: 1.6 !important;
}

.check-list li i {
    font-size: 13px !important;
}


/* =====================================================
   AC TYPE SECTION
===================================================== */

.ac-type-pills button {
    font-size: 13px !important;
    padding: 11px 20px !important;
}

.ac-types-description p {
    font-size: 14px !important;
    line-height: 1.75 !important;
}


/* =====================================================
   APPLIANCE CARDS
===================================================== */

.care-card {
    padding: 25px !important;
    min-height: 180px !important;
}

.care-card h3 {
    font-size: 16px !important;
}

.care-card p {
    font-size: 13px !important;
    line-height: 1.7 !important;
}

.care-icon {
    width: 38px !important;
    height: 38px !important;
    font-size: 14px !important;
}


/* =====================================================
   FOUR STEPS
===================================================== */

.step-card {
    padding: 24px !important;
    min-height: 185px !important;
}

.step-number {
    font-size: 21px !important;
}

.step-card h3 {
    font-size: 15px !important;
}

.step-card p {
    font-size: 13px !important;
    line-height: 1.7 !important;
}


/* =====================================================
   BRANDS
===================================================== */

.brand-pill {
    min-height: 38px !important;
    padding: 0 19px !important;
    font-size: 13px !important;
}


/* =====================================================
   FAQ
===================================================== */

.faq-question {
    min-height: 58px !important;
    padding: 0 21px !important;
    font-size: 14px !important;
}

.faq-question i {
    font-size: 10px !important;
}

.faq-answer p {
    padding-left: 21px !important;
    padding-right: 21px !important;
    font-size: 13px !important;
    line-height: 1.7 !important;
}


/* =====================================================
   CTA
===================================================== */

.final-cta {
    min-height: 245px !important;
}

.final-cta-content h2 {
    font-size: 38px !important;
}

.final-cta-content p {
    font-size: 14px !important;
}

.cta-orange-btn,
.cta-blue-btn {
    min-height: 46px !important;
    padding: 0 23px !important;
    font-size: 13px !important;
}


/* =====================================================
   FOOTER
===================================================== */

.footer-logo-text strong {
    font-size: 20px !important;
}

.footer-logo-text span {
    font-size: 7px !important;
}

.footer-description {
    font-size: 12px !important;
    line-height: 1.7 !important;
}

.footer-contact a,
.footer-address {
    font-size: 12px !important;
}

.footer-column h3 {
    font-size: 12px !important;
}

.footer-column a {
    font-size: 11px !important;
}

.footer-bottom p {
    font-size: 10px !important;
}


/* =====================================================
   DESKTOP — MORE BREATHING ROOM
===================================================== */

@media (min-width: 1100px) {

    .clean-gas-section {
        padding-top: 130px !important;
        padding-bottom: 135px !important;
    }

    .ac-types-section {
        padding-top: 130px !important;
        padding-bottom: 135px !important;
    }

    .appliance-care-section {
        padding-top: 130px !important;
        padding-bottom: 140px !important;
    }

    .booking-steps-section {
        padding-top: 130px !important;
        padding-bottom: 135px !important;
    }

    .brands-section {
        padding-top: 125px !important;
        padding-bottom: 125px !important;
    }

    .faq-section {
        padding-top: 125px !important;
        padding-bottom: 135px !important;
    }

    .footer-main {
        padding-top: 70px !important;
        padding-bottom: 60px !important;
    }
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .section-heading h2 {
        font-size: 35px !important;
    }

    .clean-gas-column h2 {
        font-size: 31px !important;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 550px) {

    .section-heading h2 {
        font-size: 30px !important;
    }

    .section-heading p {
        font-size: 13px !important;
    }

    .section-label {
        font-size: 10px !important;
    }

    .clean-gas-column h2 {
        font-size: 28px !important;
    }

    .clean-gas-column .column-description {
        font-size: 13px !important;
    }

    .check-list li {
        font-size: 12px !important;
    }

    .ac-type-pills button {
        font-size: 11px !important;
    }

    .ac-types-description p {
        font-size: 12px !important;
    }

    .care-card h3 {
        font-size: 15px !important;
    }

    .care-card p {
        font-size: 12px !important;
    }

    .step-card h3 {
        font-size: 15px !important;
    }

    .step-card p {
        font-size: 12px !important;
    }

    .brand-pill {
        font-size: 11px !important;
    }

    .faq-question {
        font-size: 13px !important;
    }

    .faq-answer p {
        font-size: 12px !important;
    }

    .final-cta-content h2 {
        font-size: 28px !important;
    }

}

/* =====================================================
   HERO — FULL SCREEN
===================================================== */

.hero-section {
    min-height: 100vh !important;
    height: 100vh !important;

    width: 100% !important;

    display: flex !important;
    align-items: center !important;

    position: relative !important;
}

.hero-section > * {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {

    .hero-section {
        min-height: 100svh !important;
        height: 100svh !important;
    }

}