@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");
:root {
    --font-sans: "Manrope", sans-serif;
    --font-display: "Outfit", sans-serif;
    --background: oklch(.985 .004 236);
    --foreground: oklch(.22 .035 250);
    --primary: oklch(.63 .19 252);
    --primary-foreground: oklch(1 0 0);
    --muted-foreground: oklch(.52 .025 246);
    --border: oklch(.88 .02 240);
    --accent: oklch(.7 .18 47);
    --accent-foreground: oklch(1 0 0);
    --navy: oklch(.19 .04 250);
    --navy-deep: oklch(.13 .04 250);
    --surface: oklch(1 0 0);
    --cyan: oklch(.76 .15 222);
    --success: oklch(.68 .18 152);
    --shadow: 0 18px 50px oklch(.14 .03 250 / .14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-sans);
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}

.topbar {
    background: var(--navy-deep);
    color: oklch(.78 .02 240);
    font-size: 12px;
}

.topbar-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.topbar svg {
    width: 13px;
}

.navbar {
    height: 74px;
    background: var(--navy);
    color: var(--primary-foreground);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 0;
}

.nav-inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-right: auto;
    flex-shrink: 0;
    min-height: 44px;
}

.brand-mark {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    align-self: center;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #168cff, #36d8f2);
    color: #fff;
    font-family: "Font Awesome 6 Free";
    font-size: 21px;
    font-weight: 900;
    line-height: 1;
    transform: none;
    position: relative;
    box-shadow: 0 8px 22px oklch(.65 .17 230 / .28);
}

.brand-mark::before {
    content: "\f7d9";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 19px;
    line-height: 1;
    transform: translateY(1px);
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
}

.brand-mark.fa-solid {
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, #168cff, #36d8f2);
    font-size: 21px;
}

.brand-mark.fa-solid::before {
    display: grid;
    place-items: center;
}

.brand-mark svg {
    display: none;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font: 700 17px/1.1 var(--font-display);
}

.brand small {
    margin-top: 6px;
    color: oklch(.7 .03 240);
    font-size: 8px;
}

.navlinks {
    display: flex;
    gap: 18px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.navlinks a {
    transition: color .2s;
}

.navlinks a:hover {
    color: var(--cyan);
}

.navlinks a[href="washing-machine.html"],
.navlinks a[href="refrigerator.html"],
.navlinks a[href="ac-repair.html"] {
    font-size: 0;
}

.navlinks a[href="washing-machine.html"]::after {
    content: "Washing Machine Repair Service";
}

.navlinks a[href="refrigerator.html"]::after {
    content: "Refrigerator Repair Service";
}

.navlinks a[href="ac-repair.html"]::after {
    content: "AC Repair Service";
}

.navlinks a[href="washing-machine.html"]::after,
.navlinks a[href="refrigerator.html"]::after,
.navlinks a[href="ac-repair.html"]::after {
    font-size: 12px;
}

.nav-call,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    font-weight: 800;
    cursor: pointer;
}

.nav-call {
    padding: 13px 17px;
    border-radius: 10px;
    background: var(--primary);
    white-space: nowrap;
    font-size: 0;
}

.nav-call::after {
    content: "6362315596";
    font-size: 12px;
}

.menu-button {
    display: none;
    background: none;
    border: 0;
    color: inherit;
    font-size: 0;
}

.menu-button::before {
    content: "\2630";
    display: block;
    font-size: 28px;
    line-height: 1;
}

.menu-button svg {
    display: none;
}

.navbar .brand small {
    display: none;
}

.navbar .brand strong::after {
    content: " Repair and Service";
}

.hero {
    min-height: 560px;
    color: var(--primary-foreground);
    background: linear-gradient(90deg, oklch(.12 .04 250 / .96), oklch(.16 .04 250 / .76) 48%, oklch(.16 .04 250 / .28)), url("images/indian-repair/appliance-wide-03.jpg") center 100% / cover;
}

.hero-inner {
    min-height: 560px;
    display: flex;
    align-items: center;
}

.hero-copy {
    max-width: 700px;
    padding: 48px 0;
}

.eyebrow {
    display: block;
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.dark-section .eyebrow,
.hero .eyebrow,
.contact-band .eyebrow {
    color: var(--cyan);
}

.eyebrow::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 2px;
    margin-right: 12px;
    background: currentColor;
    vertical-align: middle;
}

.hero h1 {
    max-width: 800px;
    margin: 0 0 20px;
    font: 700 clamp(44px, 5.3vw, 76px)/1.06 var(--font-display);
}

.hero p {
    max-width: 690px;
    color: oklch(.86 .02 240);
    font-size: 16px;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.button {
    min-height: 48px;
    padding: 0 19px;
    border-radius: 8px;
    font-size: 14px;
    transition: transform .2s, filter .2s;
}

.button:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.primary {
    background: var(--primary);
    color: var(--primary-foreground);
}

.orange {
    background: var(--accent);
    color: var(--accent-foreground);
}

.ghost {
    border: 1px solid oklch(1 0 0 / .38);
    color: var(--primary-foreground);
    background: oklch(1 0 0 / .05);
}

.trust-row {
    display: flex;
    gap: 30px;
    margin-top: 28px;
}

.trust-row span {
    padding-right: 30px;
    border-right: 1px solid oklch(1 0 0 / .18);
}

.trust-row span:last-child {
    border: 0;
}

.trust-row strong,
.trust-row small {
    display: block;
}

.trust-row strong {
    font-size: 18px;
}

.trust-row small {
    color: oklch(.72 .02 240);
}

.service-strip {
    position: relative;
    z-index: 2;
    margin-top: -46px;
}

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

.strip-card {
    height: 150px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--navy);
    box-shadow: var(--shadow);
}

.strip-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .72;
}

.strip-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, var(--navy-deep));
}

.strip-card div {
    position: absolute;
    z-index: 1;
    left: 14px;
    bottom: 12px;
    color: var(--primary-foreground);
}

.strip-card svg {
    width: 20px;
    color: var(--cyan);
}

.strip-card h3 {
    margin: 4px 0;
    font-size: 13px;
}

.section {
    padding: 64px 0;
}

.section h2 {
    max-width: 800px;
    margin: 0 0 18px;
    font: 700 clamp(34px, 4vw, 52px)/1.12 var(--font-display);
}

.lead {
    max-width: 730px;
    color: var(--muted-foreground);
    font-size: 16px;
}

.about-grid,
.booking-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.about-photo {
    height: auto;
    aspect-ratio: 16 / 9;
    position: relative;
}

.about-photo::before {
    content: "";
    position: absolute;
    inset: 24px -18px -18px 24px;
    border: 4px solid var(--primary);
    border-radius: 8px;
}

.about-photo img {
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: contain;
    background: var(--surface);
    border-radius: 8px;
}

.ticks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 28px 0;
}

.ticks span {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 700;
}

.ticks svg {
    width: 18px;
    color: var(--primary);
}

.dark-section {
    color: var(--primary-foreground);
    background: var(--navy-deep);
}

.dark-section .lead {
    color: oklch(.72 .02 240);
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 42px;
}

.service-card {
    overflow: hidden;
    border: 1px solid oklch(1 0 0 / .08);
    border-radius: 8px;
    background: oklch(.21 .04 250);
}

.card-image {
    height: 165px;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-image span {
    position: absolute;
    left: 15px;
    bottom: -20px;
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    background: var(--primary);
}

.card-image svg {
    width: 21px;
}

.card-body {
    padding: 32px 18px 20px;
}

.card-body h3 {
    margin: 0 0 8px;
    font: 700 18px var(--font-display);
}

.card-body p {
    min-height: 44px;
    color: oklch(.72 .02 240);
    font-size: 13px;
}

.card-body a {
    display: flex;
    align-items: center;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 800;
}

.card-body a svg {
    width: 15px;
}

.process {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 45px;
    text-align: center;
}

.process article {
    position: relative;
}

.process article:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 30px;
    right: -25%;
    width: 50%;
    border-top: 2px dashed var(--border);
}

.process article>div {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin: auto;
    border-radius: 50%;
    color: var(--primary-foreground);
    background: var(--primary);
}

.process svg {
    width: 24px;
}

.process h3 {
    margin: 15px 0 2px;
    font: 700 17px var(--font-display);
}

.process p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 12px;
}

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

.gallery figure {
    height: 260px;
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 8px;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 45%, oklch(.1 .03 250 / .9));
}

.gallery figcaption {
    position: absolute;
    z-index: 1;
    left: 20px;
    bottom: 16px;
    font-weight: 800;
}

.why {
    text-align: center;
}

.why h2 {
    margin-right: auto;
    margin-left: auto;
}

.why-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 44px;
}

.why-grid article {
    padding: 35px;
    border-top: 3px solid var(--primary);
}

.why-grid svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
}

.why-grid h3 {
    font-family: var(--font-display);
}

.why-grid p {
    color: var(--muted-foreground);
    font-size: 14px;
}

.contact-band {
    padding: 48px 0;
    color: var(--primary-foreground);
    background: var(--navy);
}

.contact-grid {
    gap: 15px;
    margin-top: 35px;
}

.contact-grid>a,
.contact-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px;
    border: 1px solid oklch(1 0 0 / .1);
    border-radius: 8px;
    background: oklch(1 0 0 / .06);
}

.contact-grid svg {
    width: 25px;
    color: var(--cyan);
}

.contact-grid strong,
.contact-grid span {
    display: block;
}

.contact-grid span {
    color: oklch(.75 .02 240);
    font-size: 13px;
}

.contact-grid strong {
    color: var(--primary-foreground);
    font-size: 15px;
}

form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

label {
    font-size: 13px;
    font-weight: 800;
}

input,
select,
textarea {
    display: block;
    width: 100%;
    margin-top: 7px;
    padding: 0 13px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font: inherit;
    background: var(--background);
    color: var(--foreground);
}

input,
select {
    height: 48px;
}

textarea {
    min-height: 120px;
    padding-top: 12px;
    resize: vertical;
}

.field-wide,
.submit {
    grid-column: 1 / -1;
}

footer {
    padding: 45px 0;
    color: oklch(.7 .02 240);
    background: var(--navy-deep);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 36px;
    font-size: 13px;
}

.footer-column h3 {
    margin: 4px 0 16px;
    color: var(--primary-foreground);
    font: 700 17px var(--font-display);
}

.footer-about p,
.footer-contact p {
    margin: 18px 0 0;
    line-height: 1.7;
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 9px;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
    color: var(--cyan);
}

.footer-bottom {
    display: flex;
    grid-column: 1 / -1;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid oklch(1 0 0 / .12);
    font-size: 12px;
}

.floating {
    position: fixed;
    z-index: 60;
    bottom: 22px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--primary-foreground);
    box-shadow: var(--shadow);
}

.floating svg {
    width: 20px;
}

.floating .fa-solid,
.floating .fa-brands {
    font-size: 20px;
}

.floating.call {
    left: 22px;
    background: var(--primary);
}

.floating.whatsapp {
    right: 22px;
    background: var(--success);
}

.service-page-hero {
    padding: 34px 0;
    color: var(--primary-foreground);
    background: var(--navy-deep);
}

.service-page-grid {
    display: grid;
    grid-template-columns: minmax(300px, .9fr) 1.1fr;
    gap: 52px;
    align-items: center;
}

.service-page-image {
    height: 520px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.service-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-page-copy h1 {
    margin: 0 0 18px;
    font: 700 clamp(38px, 5vw, 66px)/1.05 var(--font-display);
}

.service-page-copy .lead,
.service-detail-content p {
    color: oklch(.78 .02 240);
}

.service-page-copy .button {
    margin-top: 12px;
}

.service-info-section {
    background: var(--background);
}

.service-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.service-info-card {
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.service-info-card h3 {
    margin: 0 0 10px;
    font: 700 20px var(--font-display);
}

.service-info-card p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 14px;
}

.service-detail-grid {
    display: grid;
    gap: 24px;
    margin-top: 42px;
}

.service-detail {
    display: grid;
    grid-template-columns: minmax(260px, .9fr) 1.1fr;
    min-height: 310px;
    overflow: hidden;
    border: 1px solid oklch(1 0 0 / .08);
    border-radius: 8px;
    background: oklch(.21 .04 250);
}

.service-detail:nth-child(even) {
    grid-template-columns: 1.1fr minmax(260px, .9fr);
}

.service-detail:nth-child(even) .service-detail-image {
    order: 2;
}

.service-detail-image {
    min-height: 310px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    padding: 34px 38px;
}

.service-detail-content h3 {
    margin: 0 0 10px;
    font: 700 30px/1.15 var(--font-display);
}

.service-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 18px;
    padding: 0;
    margin: 22px 0;
    list-style: none;
    color: oklch(.9 .02 240);
    font-size: 13px;
}

.service-points li::before {
    content: "✓";
    margin-right: 8px;
    color: var(--cyan);
    font-weight: 800;
}

@media (max-width: 900px) {
    .navlinks {
        display: none;
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 14px;
        padding: 20px;
        background: var(--navy);
    }
    .navlinks.open {
        display: flex;
    }
    .nav-call {
        display: none;
    }
    .menu-button {
        display: block;
    }
    .strip-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .process {
        grid-template-columns: repeat(3, 1fr);
    }
    .process article::after {
        display: none;
    }
    .about-grid,
    .booking-grid {
        gap: 35px;
    }
    .about-photo {
        height: auto;
    }
    .topbar-inner span:last-child {
        display: none;
    }
    .topbar-inner {
        justify-content: center;
        text-align: center;
    }
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-page-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .service-page-image {
        height: 380px;
    }
    .service-page-hero {
        padding: 42px 0;
    }
    .service-info-grid {
        grid-template-columns: 1fr;
    }
    .service-detail,
    .service-detail:nth-child(even) {
        grid-template-columns: 1fr;
    }
    .service-detail:nth-child(even) .service-detail-image {
        order: 0;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1180px);
    }
    .navbar {
        height: 66px;
    }
    .navlinks {
        top: 66px;
    }
    .brand strong {
        font-size: 14px;
    }
    .brand-mark {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }
    .hero,
    .hero-inner {
        min-height: 0;
    }
    .hero {
        background-size: auto 115%;
        background-position: center 75%;
    }
    .hero-inner {
        align-items: flex-start;
    }
    .hero-copy {
        padding: 28px 0 42px;
    }
    .hero h1 {
        font-size: 43px;
    }
    .hero p {
        font-size: 14px;
    }
    .service-strip {
        margin-top: -28px;
    }
    .strip-grid,
    .cards,
    .gallery,
    .why-grid,
    .contact-grid,
    .service-points {
        grid-template-columns: 1fr;
    }
    .strip-card {
        height: 132px;
    }
    .strip-card h3 {
        font-size: 15px;
    }
    .section {
        padding: 48px 0;
    }
    .about-grid,
    .booking-grid {
        grid-template-columns: 1fr;
    }
    .about-photo {
        height: auto;
    }
    .about-photo::before {
        display: none;
    }
    .ticks {
        grid-template-columns: 1fr;
    }
    .process {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery figure {
        height: 230px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 20px;
    }
    .footer-about,
    .footer-bottom {
        grid-column: 1 / -1;
    }
    .footer-bottom {
        flex-direction: column;
    }
    form {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    form label,
    .submit {
        grid-column: 1;
    }
    .service-page-image {
        height: 300px;
    }
    .service-page-copy h1 {
        font-size: 40px;
    }
    .service-detail-content {
        padding: 28px 22px;
    }
    .service-detail-content h3 {
        font-size: 25px;
    }
}

.section.service-page-hero {
    padding-top: 34px;
    padding-bottom: 34px;
}

@media (max-width: 640px) {
    .section.service-page-hero {
        padding-top: 28px;
        padding-bottom: 28px;
    }
}


/* Homepage service cards use a full image panel with a readable text panel. */

.service-strip {
    margin-top: -34px;
}

.strip-grid {
    gap: 16px;
}

.strip-card {
    height: 226px;
    display: flex;
    flex-direction: column;
    background: var(--navy);
}

.strip-card img {
    height: 158px;
    flex: 0 0 158px;
    object-fit: contain;
    background: oklch(.24 .03 250);
    opacity: 1;
}

.strip-card::after {
    display: none;
}

.strip-card div {
    position: static;
    min-height: 68px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 14px;
    color: var(--primary-foreground);
    background: var(--navy);
}

.strip-card h3 {
    margin: 0;
    font-size: 13px;
    line-height: 1.25;
}

@media (max-width: 640px) {
    .service-strip {
        margin-top: -18px;
    }
    .strip-card {
        height: 210px;
    }
    .strip-card img {
        height: 146px;
        flex-basis: 146px;
    }
    .strip-card div {
        min-height: 64px;
    }
}