/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    width: 100%;
    min-height: 100vh;

    font-family: "Inter", sans-serif;

    color: #12345b;

    background: #ffffff;

    overflow-x: hidden;
}


a {
    text-decoration: none;
    color: inherit;
}


button {
    font-family: inherit;
}



/* =====================================================
   TOP BAR
===================================================== */

.top-bar {

    width: 100%;

    height: 27px;

    padding: 0 24px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background: #082b54;

    color: rgba(255,255,255,.82);

    font-size: 8px;

    line-height: 1;

}


.top-bar-left {

    display: flex;

    align-items: center;
}


.top-bar-right {

    display: flex;

    align-items: center;

    gap: 18px;
}


.top-bar-right a {

    color: #ffffff;

    font-weight: 600;
}



/* =====================================================
   HEADER
===================================================== */

.main-header {

    width: 100%;

    background: #ffffff;

    position: relative;

    z-index: 1000;

    border-bottom: 1px solid #edf3f5;
}


.navbar {

    width: min(1180px, calc(100% - 50px));

    min-height: 68px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}



/* =====================================================
   LOGO
===================================================== */

.brand-logo {

    display: flex;

    align-items: center;

    gap: 9px;

    flex-shrink: 0;
}


.brand-icon {

    width: 31px;

    height: 31px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #08b8d5;

    color: #ffffff;

    font-size: 14px;
}


.brand-text {

    display: flex;

    flex-direction: column;
}


.brand-text strong {

    color: #0d315b;

    font-size: 15px;

    line-height: 1.1;

    font-weight: 800;
}


.brand-text small {

    margin-top: 3px;

    color: #8ba0af;

    font-size: 6px;

    letter-spacing: .7px;
}



/* =====================================================
   DESKTOP NAV
===================================================== */

.desktop-nav {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    flex: 1;
}


.desktop-nav a {

    color: #36536d;

    font-size: 10px;

    font-weight: 500;

    white-space: nowrap;

    transition: color .2s ease;
}


.desktop-nav a:hover {

    color: #00a9c7;
}


.desktop-nav a i {

    margin-left: 3px;

    font-size: 6px;
}



/* =====================================================
   NAV BOOK BUTTON
===================================================== */

.navbar-book-btn {

    min-width: 82px;

    min-height: 32px;

    padding: 0 14px;

    border-radius: 20px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: #ff792c;

    color: #ffffff;

    font-size: 8px;

    font-weight: 700;

    box-shadow:
        0 5px 15px rgba(255,121,44,.15);
}



/* =====================================================
   MOBILE MENU BUTTON
===================================================== */

.menu-toggle {

    display: none;

    width: 38px;

    height: 38px;

    border: 0;

    border-radius: 8px;

    background: #eaf9fc;

    color: #0b3b62;

    cursor: pointer;

    font-size: 16px;
}


.mobile-nav {

    display: none;
}



/* =====================================================
   HERO
===================================================== */

.geyser-hero {

    width: 100%;

    min-height: calc(100vh - 95px);

    height: calc(100vh - 95px);

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            120deg,
            #edfaff 0%,
            #e5f8fd 45%,
            #d9f5fb 100%
        );
}



/* =====================================================
   HERO GLOW
===================================================== */

.hero-glow {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(3px);
}


.hero-glow-one {

    width: 450px;

    height: 450px;

    right: -170px;

    top: -220px;

    background:
        rgba(86,205,229,.14);
}


.hero-glow-two {

    width: 330px;

    height: 330px;

    left: -190px;

    bottom: -200px;

    background:
        rgba(66,191,220,.09);
}



/* =====================================================
   HERO CONTAINER
===================================================== */

.geyser-hero-container {

    width: min(1180px, calc(100% - 50px));

    height: 100%;

    margin: auto;

    display: grid;

    grid-template-columns: 1.05fr .95fr;

    align-items: center;

    gap: 50px;

    position: relative;

    z-index: 2;
}



/* =====================================================
   HERO CONTENT
===================================================== */

.geyser-hero-content {

    max-width: 620px;

    padding-left: 12px;
}


.hero-breadcrumb {

    display: flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 18px;

    color: #91a6b5;

    font-size: 9px;
}


.hero-breadcrumb i {

    color: #9eb3c0;

    font-size: 6px;
}


.hero-label {

    display: inline-flex;

    align-items: center;

    min-height: 25px;

    padding: 0 11px;

    border-radius: 15px;

    background: #d6f6fb;

    color: #00a7c5;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .8px;

    margin-bottom: 15px;
}



/* =====================================================
   HERO HEADING
===================================================== */

.geyser-hero h1 {

    color: #12365e;

    font-size: clamp(44px, 4.2vw, 66px);

    line-height: 1.02;

    letter-spacing: -2.2px;

    font-weight: 800;

    margin-bottom: 20px;
}


.hero-description {

    max-width: 570px;

    color: #71899a;

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 19px;
}



/* =====================================================
   HERO FEATURE PILLS
===================================================== */

.hero-feature-pills {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 24px;
}


.hero-feature-pills span {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    min-height: 29px;

    padding: 0 11px;

    border-radius: 18px;

    background: rgba(255,255,255,.82);

    border: 1px solid #d9edf2;

    color: #587187;

    font-size: 9px;

    font-weight: 600;

    box-shadow:
        0 4px 12px rgba(24,76,95,.035);
}


.hero-feature-pills i {

    color: #27bcd7;

    font-size: 9px;
}



/* =====================================================
   HERO BUTTONS
===================================================== */

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 10px;
}


.hero-primary-btn,
.hero-secondary-btn {

    min-height: 44px;

    padding: 0 21px;

    border-radius: 24px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    font-size: 11px;

    font-weight: 700;

    transition: .25s ease;
}


.hero-primary-btn {

    background: #ff792c;

    color: #ffffff;

    box-shadow:
        0 7px 18px rgba(255,121,44,.17);
}


.hero-primary-btn:hover {

    transform: translateY(-2px);

    background: #ef6c22;
}


.hero-primary-btn i {

    margin-left: 8px;

    font-size: 8px;
}


.hero-secondary-btn {

    background: #ffffff;

    border: 1px solid #dcecf1;

    color: #48657b;

    box-shadow:
        0 5px 15px rgba(30,75,95,.04);
}


.hero-secondary-btn:hover {

    transform: translateY(-2px);

    color: #00a8c5;
}



/* =====================================================
   HERO VISUAL
===================================================== */

.geyser-hero-visual {

    min-height: 470px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;
}


.hero-water-shape {

    position: absolute;

    width: 510px;

    height: 420px;

    border-radius: 38px;

    right: 15px;

    top: 50%;

    transform: translateY(-50%);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.88),
            rgba(205,239,247,.72)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.8),
        0 20px 55px rgba(40,130,160,.08);
}



/* =====================================================
   GEYSER ILLUSTRATION
===================================================== */

.hero-geyser-image {

    position: relative;

    z-index: 3;

    width: 250px;

    height: 390px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.geyser-tank {

    position: relative;

    width: 170px;

    height: 285px;
}


.geyser-top {

    position: absolute;

    left: 13px;

    top: 0;

    width: 144px;

    height: 30px;

    border-radius: 50%;

    background:
        linear-gradient(
            180deg,
            #f9fcfd,
            #d8e8ec
        );

    box-shadow:
        0 5px 10px rgba(80,130,145,.12);
}


.geyser-body {

    position: absolute;

    left: 0;

    top: 15px;

    width: 170px;

    height: 245px;

    border-radius: 80px 80px 48px 48px;

    background:
        linear-gradient(
            90deg,
            #d8e8ed 0%,
            #ffffff 17%,
            #f8fbfc 55%,
            #d6e6eb 100%
        );

    box-shadow:
        15px 18px 30px rgba(66,117,133,.13);
}


.geyser-highlight {

    position: absolute;

    left: 27px;

    top: 25px;

    width: 35px;

    height: 185px;

    border-radius: 50%;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.72),
            rgba(255,255,255,0)
        );
}


.geyser-control {

    position: absolute;

    right: 17px;

    top: 95px;

    width: 20px;

    height: 45px;

    border-radius: 12px;

    background: #c6dce2;

    display: flex;

    align-items: center;

    justify-content: center;
}


.geyser-control span {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #00b5d2;

    box-shadow:
        0 0 0 3px rgba(0,181,210,.12);
}


.geyser-bottom {

    position: absolute;

    left: 19px;

    bottom: 5px;

    width: 132px;

    height: 35px;

    border-radius: 50%;

    background: #d0e2e7;

    z-index: -1;
}



/* =====================================================
   FLOATING HERO CARDS
===================================================== */

.hero-floating-card {

    position: absolute;

    z-index: 5;

    min-width: 150px;

    height: 39px;

    padding: 0 13px;

    display: flex;

    align-items: center;

    gap: 8px;

    background: rgba(255,255,255,.94);

    border: 1px solid #dceef2;

    border-radius: 20px;

    color: #36546d;

    font-size: 9px;

    font-weight: 700;

    box-shadow:
        0 8px 22px rgba(36,93,111,.08);
}


.hero-floating-card i {

    width: 22px;

    height: 22px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #e2f8fc;

    color: #05afd0;

    font-size: 9px;
}


.card-one {

    left: 0;

    top: 27%;
}


.card-two {

    right: -5px;

    top: 48%;
}


.card-three {

    left: 15px;

    bottom: 19%;
}



/* =====================================================
   MOBILE NAV
===================================================== */

@media (max-width: 950px) {

    .desktop-nav,
    .navbar-book-btn {

        display: none;
    }


    .menu-toggle {

        display: flex;

        align-items: center;

        justify-content: center;
    }


    .mobile-nav {

        width: 100%;

        padding: 15px 25px 22px;

        display: none;

        flex-direction: column;

        gap: 5px;

        background: #ffffff;

        border-top: 1px solid #edf3f5;

        box-shadow:
            0 12px 25px rgba(0,0,0,.06);
    }


    .mobile-nav.active {

        display: flex;
    }


    .mobile-nav a {

        padding: 12px 10px;

        color: #173c60;

        font-size: 13px;

        font-weight: 600;

        border-radius: 8px;
    }


    .mobile-nav a:hover {

        background: #edfafd;

        color: #00a8c5;
    }


    .mobile-nav .mobile-book {

        margin-top: 8px;

        text-align: center;

        background: #ff792c;

        color: #ffffff;
    }


    .geyser-hero-container {

        grid-template-columns: 1fr;

    }


    .geyser-hero {

        height: auto;

        min-height: 100svh;

        padding: 80px 0;
    }


    .geyser-hero-content {

        max-width: 700px;

        margin: auto;

        padding-left: 0;

        text-align: center;
    }


    .hero-breadcrumb,
    .hero-feature-pills,
    .hero-buttons {

        justify-content: center;
    }


    .geyser-hero-visual {

        min-height: 400px;
    }

}



/* =====================================================
   TABLET
===================================================== */

@media (max-width: 700px) {

    .top-bar {

        height: auto;

        min-height: 27px;

        padding: 7px 14px;

        gap: 8px;

        font-size: 7px;
    }


    .top-bar-left {

        max-width: 60%;
    }


    .top-bar-right {

        gap: 7px;

        flex-direction: column;

        align-items: flex-end;
    }


    .navbar {

        width: calc(100% - 28px);

        min-height: 62px;
    }


    .geyser-hero {

        min-height: 100svh;

        padding: 65px 0 55px;
    }


    .geyser-hero-container {

        width: calc(100% - 28px);

        gap: 25px;
    }


    .geyser-hero h1 {

        font-size: 42px;

        letter-spacing: -1.5px;
    }


    .hero-description {

        font-size: 13px;

        max-width: 600px;

        margin-left: auto;

        margin-right: auto;
    }


    .hero-feature-pills span {

        font-size: 8px;
    }


    .hero-water-shape {

        width: 90%;

        height: 330px;

        right: 5%;

    }


    .hero-geyser-image {

        transform: scale(.82);
    }


    .hero-floating-card {

        min-width: 125px;

        height: 35px;

        font-size: 8px;
    }

}



/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .brand-text strong {

        font-size: 14px;
    }


    .brand-text small {

        font-size: 5px;
    }


    .geyser-hero {

        padding-top: 45px;

        padding-bottom: 35px;
    }


    .geyser-hero h1 {

        font-size: 36px;

        line-height: 1.04;
    }


    .hero-description {

        font-size: 12px;

        line-height: 1.65;
    }


    .hero-feature-pills {

        flex-direction: column;

        align-items: center;
    }


    .hero-buttons {

        flex-direction: column;

        width: 100%;
    }


    .hero-primary-btn,
    .hero-secondary-btn {

        width: 180px;
    }


    .geyser-hero-visual {

        min-height: 350px;
    }


    .hero-water-shape {

        height: 290px;
    }


    .hero-geyser-image {

        transform: scale(.67);
    }


    .card-one {

        left: 0;

        top: 18%;
    }


    .card-two {

        right: 0;

        top: 43%;
    }


    .card-three {

        left: 0;

        bottom: 14%;
    }

}

/* =====================================================
   COMMON SECTION
===================================================== */

.section-white {
    background: #ffffff;
}

.section-blue {
    background:
        linear-gradient(
            180deg,
            #f2fcff 0%,
            #e8f9fd 100%
        );
}

.section-container {
    width: min(1050px, calc(100% - 40px));
    margin: auto;
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
}

.section-label {
    display: block;
    color: #00a9c7;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
    margin-bottom: 10px;
}

.section-heading h2 {
    color: #12365e;
    font-size: 35px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -.9px;
    margin-bottom: 13px;
}

.section-heading p {
    color: #78909f;
    font-size: 12px;
    line-height: 1.65;
}



/* =====================================================
   GEYSER SERVICES
===================================================== */

.geyser-services {
    padding: 105px 0 115px;
}

.geyser-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 900px;
    margin: auto;
}

.geyser-service-card {
    min-height: 155px;
    padding: 17px;
    border-radius: 11px;
    border: 1px solid #e0edf1;
    background: #ffffff;
    box-shadow: 0 5px 18px rgba(32,86,105,.035);
    transition: .25s ease;
}

.geyser-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(32,86,105,.09);
}

.service-icon {
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #def7fb;
    color: #05afd0;
    font-size: 7px;
    font-weight: 800;
    margin-bottom: 13px;
}

.geyser-service-card h3 {
    color: #173d63;
    font-size: 12px;
    line-height: 1.3;
    margin-bottom: 7px;
}

.geyser-service-card p {
    color: #8296a3;
    font-size: 9px;
    line-height: 1.55;
    min-height: 42px;
}

.service-card-bottom {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.service-card-bottom small {
    color: #899ba6;
    font-size: 6.5px;
}

.service-card-bottom a {
    color: #00a9c7;
    font-size: 7px;
    font-weight: 700;
    white-space: nowrap;
}

.service-card-bottom i {
    margin-left: 3px;
    font-size: 6px;
}



/* =====================================================
   COVERAGE
===================================================== */

.geyser-coverage {
    padding: 90px 0 95px;
}

.heater-types {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.heater-type-card {
    width: 160px;
    min-height: 78px;
    padding: 15px;
    background: rgba(255,255,255,.9);
    border: 1px solid #dceef2;
    border-radius: 11px;
}

.heater-type-card h3 {
    color: #173d63;
    font-size: 9px;
    margin-bottom: 7px;
}

.heater-type-card p {
    color: #8498a5;
    font-size: 7px;
    line-height: 1.5;
}



/* =====================================================
   SERVICE VISIT
===================================================== */

.service-visit-section {
    padding: 105px 0 120px;
}

.service-visit-grid {
    max-width: 900px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.service-visit-column h2 {
    color: #12365e;
    font-size: 31px;
    line-height: 1.12;
    letter-spacing: -.7px;
    margin-bottom: 19px;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #7b909d;
    font-size: 9px;
    line-height: 1.5;
}

.check-list i {
    color: #57c9df;
    font-size: 8px;
    margin-top: 2px;
}

.visit-text {
    color: #7d929f;
    font-size: 10px;
    line-height: 1.7;
    margin-bottom: 16px;
}



/* =====================================================
   APPLIANCE CARE
===================================================== */

.appliance-care {
    padding: 115px 0 125px;
}

.care-grid {
    max-width: 900px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.care-card {
    min-height: 120px;
    padding: 20px;
    border: 1px solid #e0edf1;
    border-radius: 12px;
    background: #ffffff;
}

.care-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e3f8fc;
    color: #00aecb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    margin-bottom: 11px;
}

.care-card h3 {
    color: #183d61;
    font-size: 10px;
    margin-bottom: 6px;
}

.care-card p {
    color: #8396a3;
    font-size: 8px;
    line-height: 1.55;
}



/* =====================================================
   STEPS
===================================================== */

.booking-steps-section {
    padding: 105px 0 110px;
}

.steps-grid {
    max-width: 900px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.step-card {
    min-height: 145px;
    padding: 19px;
    background: #ffffff;
    border: 1px solid #dceef2;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(31,91,110,.07);
}

.step-number {
    display: block;
    color: #00afd0;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 8px;
}

.step-card h3 {
    color: #173c61;
    font-size: 10px;
    margin-bottom: 7px;
}

.step-card p {
    color: #8497a4;
    font-size: 8px;
    line-height: 1.55;
}



/* =====================================================
   BRANDS
===================================================== */

.brands-section {
    padding: 100px 0 105px;
}

.brand-list {
    max-width: 760px;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
}

.brand-pill {
    min-height: 32px;
    padding: 0 14px;
    border: 1px solid #e0edf1;
    background: #ffffff;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #526d80;
    font-size: 8px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(30,75,95,.035);
}



/* =====================================================
   FAQ
===================================================== */

.faq-section {
    padding: 100px 0 110px;
}

.faq-list {
    width: min(650px, 100%);
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #dceef2;
    border-radius: 20px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    min-height: 39px;
    padding: 0 18px;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #31536d;
    font-size: 9px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-question i {
    color: #8097a5;
    font-size: 7px;
    transition: transform .25s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-answer p {
    padding: 0 18px 15px;
    color: #8095a2;
    font-size: 9px;
    line-height: 1.6;
}



/* =====================================================
   FINAL CTA
===================================================== */

.final-cta-section {
    padding: 20px 20px 80px;
    background: #ffffff;
}

.final-cta {
    width: min(1000px, 100%);
    min-height: 190px;
    margin: auto;
    border-radius: 14px;
    background: linear-gradient(
        110deg,
        #112d59,
        #06486d
    );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(10,47,83,.15);
}

.final-cta-content h2 {
    color: #ffffff;
    font-size: 27px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.final-cta-content p {
    color: rgba(255,255,255,.7);
    font-size: 9px;
    margin-bottom: 18px;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.cta-orange-btn,
.cta-blue-btn {
    min-height: 36px;
    padding: 0 18px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
}

.cta-orange-btn {
    background: #ff792c;
    color: #ffffff;
}

.cta-blue-btn {
    background: #08b8d5;
    color: #ffffff;
}

.cta-blue-btn i {
    margin-right: 6px;
}



/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    background: linear-gradient(
        110deg,
        #102e5b,
        #06486c
    );
    color: #ffffff;
}

.footer-main {
    width: min(1050px, calc(100% - 40px));
    margin: auto;
    padding: 60px 0 45px;
    display: grid;
    grid-template-columns: 2fr 1fr 1.15fr 1.15fr 1fr;
    gap: 35px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.footer-logo-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #08b9d8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-text strong {
    font-size: 15px;
}

.footer-logo-text span {
    color: rgba(255,255,255,.5);
    font-size: 5px;
    letter-spacing: .6px;
    margin-top: 2px;
}

.footer-description {
    max-width: 270px;
    color: rgba(255,255,255,.62);
    font-size: 8px;
    line-height: 1.7;
    margin-bottom: 17px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-contact a,
.footer-address {
    display: flex;
    gap: 7px;
    color: rgba(255,255,255,.65);
    font-size: 8px;
}

.footer-contact i {
    color: #48cde1;
    width: 12px;
}

.footer-social {
    display: flex;
    gap: 6px;
    margin-top: 15px;
}

.footer-social a {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.65);
    font-size: 9px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column h3 {
    font-size: 8px;
    margin-bottom: 5px;
}

.footer-column a {
    color: rgba(255,255,255,.57);
    font-size: 7px;
}

.footer-column a:hover {
    color: #50d5e7;
}

.footer-bottom {
    width: min(1050px, calc(100% - 40px));
    min-height: 55px;
    margin: auto;
    border-top: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    color: rgba(255,255,255,.4);
    font-size: 6.5px;
}



/* =====================================================
   FLOATING BUTTONS
===================================================== */

.floating-actions {
    position: fixed;
    right: 15px;
    bottom: 14px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.floating-actions a {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,.16);
}

.floating-whatsapp {
    background: #27c76f;
}

.floating-call {
    background: #ff792c;
}



/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1200px) {

    .section-container {
        width: min(1120px, calc(100% - 70px));
    }

    .section-heading h2 {
        font-size: 39px;
    }

    .geyser-service-card {
        min-height: 165px;
        padding: 20px;
    }

    .geyser-service-card h3 {
        font-size: 13px;
    }

    .geyser-service-card p {
        font-size: 10px;
    }

    .care-card h3 {
        font-size: 11px;
    }

    .care-card p {
        font-size: 9px;
    }

    .step-card h3 {
        font-size: 11px;
    }

    .step-card p {
        font-size: 9px;
    }

}



/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .geyser-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-visit-grid {
        gap: 45px;
    }

    .care-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

}



/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .section-container {
        width: calc(100% - 28px);
    }

    .geyser-services,
    .service-visit-section,
    .appliance-care,
    .booking-steps-section,
    .brands-section,
    .faq-section {
        padding-top: 75px;
        padding-bottom: 80px;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-heading h2 {
        font-size: 29px;
    }

    .section-heading p {
        font-size: 11px;
    }

    .geyser-service-grid {
        grid-template-columns: 1fr;
    }

    .geyser-service-card {
        min-height: 145px;
    }

    .heater-type-card {
        width: calc(50% - 5px);
    }

    .service-visit-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .service-visit-column h2 {
        font-size: 28px;
    }

    .care-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        min-height: 130px;
    }

    .brand-pill {
        font-size: 8px;
    }

    .faq-list {
        width: 100%;
    }

    .final-cta {
        min-height: 220px;
        padding: 28px 18px;
    }

    .final-cta-content h2 {
        font-size: 25px;
    }

    .final-cta-buttons {
        flex-wrap: wrap;
    }

    .footer-main {
        width: calc(100% - 28px);
        grid-template-columns: 1fr 1fr;
        gap: 30px 22px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        width: calc(100% - 28px);
        padding: 14px 0;
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

}



/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 400px) {

    .heater-type-card {
        width: 100%;
    }

    .section-heading h2 {
        font-size: 26px;
    }

    .service-visit-column h2 {
        font-size: 25px;
    }

}