/* =========================================================
   24x7 CUSTOMER SUPPORT
   ADVANCED AC REPAIR WEBSITE
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: #10233f;
    background: #ffffff;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}


/* =========================================================
   TOP BAR
========================================================= */

.topbar {
    background: #071c35;
    color: #ffffff;
    font-size: 13px;
}

.topbar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-left {
    display: flex;
    gap: 25px;
}

.top-phone {
    font-weight: 700;
    color: #62d7ff;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    background: rgba(255,255,255,.96);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 25px rgba(0,0,0,.06);
}

.nav {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: #e9f8ff;
    color: #079ad8;
    font-size: 25px;
}

.logo strong {
    display: block;
    color: #087fc1;
    font-size: 22px;
    line-height: 1.1;
}

.logo span {
    display: block;
    color: #5c6b7d;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .4px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.menu a {
    color: #263b54;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}

.menu a:hover {
    color: #079ad8;
}

.header-btn {
    background: #079ad8;
    color: white;
    padding: 12px 19px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: .3s;
}

.header-btn:hover {
    background: #0577a8;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 26px;
    cursor: pointer;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    min-height: 670px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url("images/ac-banner.webp");
}

.hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    right: -180px;
    top: -150px;
}

.hero::after {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 50%;
    left: -400px;
    bottom: -350px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
        rgba(3,20,39,.8),
        rgba(4,48,78,.35));
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: 70px;
}

.hero-content {
    color: white;
}

.verified {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    padding: 7px 13px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.verified span {
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    background: #35c4ef;
    border-radius: 50%;
}

.hero h1 {
    max-width: 700px;
    font-size: clamp(42px, 5vw, 67px);
    line-height: 1.08;
    letter-spacing: -2.5px;
    margin-bottom: 22px;
}

.hero h1 span {
    color: #55d5ff;
}

.hero-content > p {
    max-width: 640px;
    color: #c8deed;
    font-size: 17px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #079ad8;
    color: white;
    padding: 14px 23px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    transition: .3s;
}

.btn-primary:hover {
    background: #06b5ef;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,166,230,.25);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 23px;
    border: 1px solid rgba(255,255,255,.35);
    color: white;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    background: green;
}

.btn-outline:hover {
    background: white;
    color: #087fae;
}

.hero-trust {
    display: flex;
    gap: 35px;
    margin-top: 45px;
}

.hero-trust div {
    border-left: 1px solid rgba(255,255,255,.25);
    padding-left: 18px;
}

.hero-trust strong {
    display: block;
    font-size: 19px;
}

.hero-trust span {
    color: #aac5d7;
    font-size: 11px;
}


/* =========================================================
   HERO CARD
========================================================= */

.hero-card {
    position: relative;
    padding: 35px;
    background: rgba(255,255,255,.96);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,.2);
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: #e4f7ff;
    border-radius: 50%;
    right: -80px;
    top: -70px;
}

.card-badge {
    display: inline-block;
    padding: 6px 10px;
    background: #e8f8ff;
    color: #078ec9;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.hero-card h3 {
    position: relative;
    margin-top: 15px;
    font-size: 28px;
    color: #102d4c;
    line-height: 31px;
}

.hero-card > p {
    color: #697b8e;
    font-size: 13px;
    margin: 8px 0 25px;
}

.quick-service {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.quick-service div {
    padding: 15px;
    border: 1px solid #e7edf2;
    border-radius: 10px;
    transition: .3s;
}

.quick-service div:hover {
    border-color: #7bdcff;
    transform: translateY(-3px);
}

.quick-service span {
    font-size: 21px;
}

.quick-service p {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 700;
}

.card-call {
    display: block;
    text-align: center;
    margin-top: 18px;
    background: #071f39;
    color: white;
    padding: 13px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0,0,0,.06);
    position: relative;
    z-index: 5;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    padding: 22px 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 0 20px;
    border-right: 1px solid #e9eef2;
}

.trust-item:last-child {
    border: 0;
}

.trust-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: #ebf9ff;
    border-radius: 10px;
    color: #079ad8;
}

.trust-item strong {
    display: block;
    font-size: 12px;
}

.trust-item span {
    display: block;
    color: #7b8997;
    font-size: 10px;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {
    padding: 105px 0;
}

.section-heading {
    max-width: 680px;
    margin: 0 auto 55px;
    text-align: center;
}

.eyebrow {
    color: #079ad8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.section-heading h2,
.about-content h2,
.areas-heading h2,
.booking-info h2,
.faq-intro h2 {
    font-size: clamp(32px,4vw,46px);
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin: 10px 0 15px;
}

.section-heading h2 span,
.about-content h2 span,
.areas-heading h2 span,
.booking-info h2 span,
.faq-intro h2 span {
    color: #079ad8;
}

.section-heading p {
    color: #748292;
    font-size: 14px;
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    background: #f7fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}

.service-card {
    position: relative;
    background: white;
    padding: 32px;
    border-radius: 14px;
    border: 1px solid #e7edf1;
    transition: .35s;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(19,57,84,.1);
    border-color: #8ddfff;
}

.service-card.featured {
    border-top: 3px solid #079ad8;
}

.service-number {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #e8f0f5;
    font-size: 32px;
    font-weight: 800;
}

.service-icon {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    background: #eaf8ff;
    color: #079ad8;
    border-radius: 12px;
    font-size: 25px;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 19px;
    margin-bottom: 9px;
}

.service-card p {
    color: #718090;
    font-size: 13px;
    min-height: 65px;
}

.service-card a {
    display: inline-block;
    margin-top: 15px;
    color: #079ad8;
    font-size: 12px;
    font-weight: 800;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    padding: 110px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.about-visual {
    min-height: 480px;
    position: relative;
    display: grid;
    place-items: center;
}

.about-shape {
    width: 470px;
    height: 530px;
    border-radius: 40px;
    background-image: url("images/ac-repair-service.jpg");
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  
}

.big-snow {
    font-size: 120px;
    color: white;
    line-height: 1;
}

.about-shape h3 {
    color: #0b4267;
    font-size: 28px;
    line-height: 1.2;
}

.experience-box {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 35px;
    background: #071f39;
    color: white;
    padding: 22px 28px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

.experience-box strong {
    display: block;
    font-size: 31px;
    color: #54d7ff;
}

.experience-box span {
    font-size: 11px;
}

.about-content > p {
    color: #6f7d8c;
    font-size: 14px;
    margin-bottom: 17px;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    margin: 25px 0 30px;
}

.about-points div {
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
    background: #f7fafc;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.process-item {
    text-align: center;
}

.process-icon {
    width: 68px;
    height: 68px;
    margin: auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #079ad8;
    color: white;
    font-weight: 800;
    box-shadow: 0 12px 25px rgba(7,154,216,.2);
}

.process-item h3 {
    margin: 18px 0 7px;
    font-size: 17px;
}

.process-item p {
    color: #748292;
    font-size: 12px;
}

.process-line {
    width: 70px;
    height: 1px;
    background: #cbdbe5;
}


/* =========================================================
   AREAS
========================================================= */

.areas-section {
    padding: 90px 0;
    background: #071f39;
    color: white;
}

.areas-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    margin-bottom: 45px;
}

.areas-heading h2 {
    margin-bottom: 0;
}

.areas-heading p {
    max-width: 330px;
    color: #a9bfd0;
    font-size: 13px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
}

.areas-grid div {
    padding: 15px 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    color: #c5d6e3;
    font-size: 12px;
    transition: .3s;
}

.areas-grid div:hover {
    background: rgba(255,255,255,.08);
    color: white;
    transform: translateY(-3px);
}


/* =========================================================
   BOOKING
========================================================= */

.booking-section {
    padding: 110px 0;
    background: #eef9fd;
}

.booking-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.booking-info > p {
    color: #6e7d8b;
    font-size: 14px;
    margin-bottom: 30px;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 17px;
    border-radius: 10px;
    margin-top: 12px;
}

.contact-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    background: #e9f8ff;
    border-radius: 9px;
}

.contact-box small {
    display: block;
    font-size: 9px;
    letter-spacing: 1px;
    color: #8b98a5;
}

.contact-box a {
    display: block;
    color: #079ad8;
    font-size: 17px;
    font-weight: 800;
}

.contact-box strong {
    display: block;
    font-size: 13px;
}

.booking-form {
    background: white;
    padding: 38px;
    border-radius: 18px;
    box-shadow: 0 25px 70px rgba(22,62,85,.1);
}

.booking-form h3 {
    font-size: 25px;
}

.booking-form > p {
    color: #7a8793;
    font-size: 12px;
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.input-group {
    margin-bottom: 17px;
}

.input-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 6px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    border: 1px solid #dce5eb;
    border-radius: 7px;
    padding: 12px 13px;
    outline: none;
    font-family: inherit;
    font-size: 12px;
    background: #fbfdfe;
    transition: .3s;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: #079ad8;
    background: white;
}

.input-group textarea {
    resize: vertical;
}

.form-btn {
    width: 100%;
    border: 0;
    padding: 14px;
    border-radius: 8px;
    background: #079ad8;
    color: white;
    font-family: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: .3s;
}

.form-btn:hover {
    background: #0579aa;
}

.form-note {
    text-align: center;
    color: #9aa6b0;
    font-size: 9px;
    margin-top: 10px;
}


/* =========================================================
   REVIEWS
========================================================= */

.reviews-section {
    background: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}

.review-card {
    border: 1px solid #e5ebef;
    border-radius: 14px;
    padding: 30px;
}

.stars {
    color: #ffb300;
    letter-spacing: 3px;
    font-size: 13px;
}

.review-card > p {
    color: #657483;
    font-size: 13px;
    margin: 18px 0 25px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 11px;
}

.avatar {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: #e8f8ff;
    color: #078fc8;
    border-radius: 50%;
    font-weight: 800;
}

.review-user strong,
.review-user span {
    display: block;
}

.review-user strong {
    font-size: 12px;
}

.review-user span {
    color: #8b98a4;
    font-size: 10px;
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    padding: 105px 0;
    background: #f7fafc;
}

.faq-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 90px;
}

.faq-intro p {
    color: #73818f;
    font-size: 13px;
    margin-bottom: 28px;
}

.faq-list details {
    background: white;
    margin-bottom: 10px;
    border-radius: 9px;
    border: 1px solid #e4eaee;
    overflow: hidden;
}

.faq-list summary {
    cursor: pointer;
    list-style: none;
    padding: 19px 22px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    color: #079ad8;
    font-size: 18px;
}

.faq-list details p {
    padding: 0 22px 20px;
    color: #758391;
    font-size: 12px;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding: 65px 0;
    background: linear-gradient(120deg,#079ad8,#066a9b);
    color: white;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-inner span {
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 800;
}

.cta-inner h2 {
    font-size: clamp(25px,3vw,37px);
    line-height: 1.2;
    max-width: 650px;
    margin-top: 8px;
}

.cta-btn {
    background: white;
    color: #087fae;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 800;
    white-space: nowrap;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #06192e;
    color: white;
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 55px;
}

.footer-brand p {
    max-width: 310px;
    color: #91a8bb;
    font-size: 12px;
    margin: 20px 0;
}

.footer-phone {
    color: #51d2ff;
    font-size: 19px;
    font-weight: 800;
}

.footer-links h4 {
    font-size: 13px;
    margin-bottom: 18px;
}

.footer-links a,
.footer-links p {
    display: block;
    color: #91a8bb;
    font-size: 11px;
    margin-bottom: 9px;
}

.footer-links a:hover {
    color: #55d5ff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-bottom .container {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #71899e;
    font-size: 10px;
}


/* =========================================================
   FLOATING CALL
========================================================= */

.floating-call {
    position: fixed;
    z-index: 2000;
    right: 22px;
    bottom: 22px;
    width: 57px;
    height: 57px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #079ad8;
    color: white;
    font-size: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0% {
        box-shadow: 0 0 0 0 rgba(7,154,216,.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(7,154,216,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(7,154,216,0);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .menu {
        gap: 15px;
    }

    .hero-grid {
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .about-grid,
    .booking-grid,
    .faq-grid {
        gap: 45px;
    }

    .trust-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .trust-item {
        margin: 8px 0;
    }

    .areas-grid {
        grid-template-columns: repeat(3,1fr);
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .topbar {
        display: none;
    }

    .nav {
        min-height: 70px;
    }

    .menu-toggle {
        display: block;
    }

    .header-btn {
        display: none;
    }

    .menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 5%;
        background: white;
        box-shadow: 0 15px 30px rgba(0,0,0,.08);
    }

    .menu.active {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 75px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 43px;
        letter-spacing: -1.5px;
    }

    .hero-content > p {
        font-size: 14px;
    }

    .hero-trust {
        gap: 15px;
        justify-content: space-between;
    }

    .hero-trust div {
        padding-left: 10px;
    }

    .hero-card {
        padding: 25px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        border-right: 0;
        border-bottom: 1px solid #e9eef2;
        padding: 12px 5px;
    }

    .section {
        padding: 75px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .booking-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: 400px;
    }

    .about-shape {
        width: 290px;
        height: 350px;
    }

    .experience-box {
        left: 5px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .process-line {
        display: none;
    }

    .areas-heading {
        display: block;
    }

    .areas-heading p {
        margin-top: 20px;
    }

    .areas-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 25px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        display: block;
    }

    .cta-btn {
        display: inline-block;
        margin-top: 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom .container {
        display: block;
        padding: 18px 0;
    }

    .footer-bottom span {
        display: block;
        margin: 4px 0;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .container {
        width: 90%;
    }

    .hero h1 {
        font-size: 37px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
    }

    .hero-trust {
        flex-wrap: wrap;
    }

    .hero-trust div {
        width: 45%;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .floating-call {
        right: 15px;
        bottom: 15px;
    }

}

.service-card img {
    width: 100%;
    height: 220px;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    margin-bottom:20px;
}