:root {
    --primary: #31a354;
    --primary-dark: #229014;
    --accent-red: #f03b20;
    --ink: #18223a;
    --muted: #56607a;
    --card: #ffffff;
    --line: #d9e1e7;
    --shadow: 0 16px 38px rgba(16, 28, 51, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    color: var(--ink);
    background: #ffffff;
}

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

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

.container {
    width: min(1140px, 92%);
    margin: 0 auto;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 30;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    padding: 12px 16px;
    border-radius: 999px;
    box-shadow: var(--shadow);
}

.mobile-numbers {
    display: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    transition: box-shadow 0.25s ease;
    box-shadow: 0 6px 24px rgba(18, 33, 56, 0.12);
}

.site-header.scrolled {
    box-shadow: 0 10px 20px rgba(5, 26, 13, 0.15);
}

.nav-row {
    position: relative;
    background: transparent;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    min-height: 92px;
    padding: 10px 0 8px;
}

.logo {
    margin-top: 0;
    display: inline-flex;
    align-items: center;
}

.logo img {
    width: 185px;
    height: auto;
    display: block;
    margin-top: 2px;
}

.menu-btn {
    display: none;
    border: 0;
    background: linear-gradient(135deg, #f03b20, #f25e3f);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.86rem;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 18px rgba(240, 59, 32, 0.25);
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 22px;
    margin-top: 34px;
    margin-left: auto;
    font-weight: 500;
    font-size: 0.95rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.nav-links a {
    color: #1d2a3f;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #f03b20;
}

.top-information {
    position: absolute;
    top: 10px;
    right: 0;
    display: flex;
    gap: 8px;
    align-items: center;
}

.top-information a {
    color: #fff;
    border-radius: 6px;
    padding: 5px 12px;
    min-height: 34px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 4px 11px rgba(0, 0, 0, 0.16);
    line-height: 1;
    white-space: nowrap;
}

.top-information a i {
    width: 14px;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1;
}

.top-information .phone-chip {
    background: #f03b20;
}

.top-information .wa-chip {
    background: #4caf50;
}

.banner {
    padding: 56px 0 44px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.56)),
        url("Home section background image.jpeg") center / cover no-repeat;
}

.banner-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: start;
}

.banner-copy h1 {
    font-size: clamp(2rem, 4.7vw, 3.4rem);
    line-height: 1.05;
    margin: 10px 0 12px;
    color: #454545;
}

.banner-copy h1 span,
.about h2 span {
    color: var(--accent-red);
}

.banner-copy p {
    color: var(--muted);
    max-width: 62ch;
}

.tag {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    border: 1px solid #2d964d;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 7px 12px;
}

.review-slider {
    margin-top: 20px;
}

.google-review-sec {
    background: rgba(255, 255, 255, 0.84);
    border-radius: 14px;
    border: 1px solid #dfe7f2;
    box-shadow: 0 10px 22px rgba(20, 36, 58, 0.12);
    padding: 12px;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 14px;
    align-items: start;
}

.google-badge {
    background: #fff;
    border: 1px solid #e3e9f3;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.google-g {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #4285f4;
    background: #eef4ff;
}

.google-badge strong {
    font-size: 0.9rem;
    color: #1f2c43;
}

.google-badge p {
    margin: 2px 0 0;
    font-size: 0.82rem;
    color: #4f6381;
}

.review-track {
    min-height: 110px;
}

.review {
    display: none;
}

.review.active {
    display: block;
}

.review-card p {
    margin: 0;
    color: #44566f;
    font-size: 0.86rem;
    line-height: 1.45;
}

.review-card p i {
    color: #f03b20;
}

.review-meta {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.review-meta .name {
    color: #2fa353;
    font-weight: 700;
    margin-right: 4px;
}

.review-meta i {
    color: #fcb002;
}

.review-dots {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.review-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 0;
    background: #c8d3e2;
    cursor: pointer;
    padding: 0;
}

.review-dot.active {
    width: 22px;
    border-radius: 999px;
    background: #31a354;
}

.hero-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn {
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 12px 18px;
}

.btn:hover {
    background: var(--primary-dark);
}

.btn.ghost {
    background: #fff;
    color: #111;
    border-color: var(--accent-red);
}

.callback-card {
    background: var(--accent-red);
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.25);
}

.callback-card h2 {
    margin: 0;
    font-size: 1rem;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    background: var(--primary);
    padding: 14px;
}

.callback-form {
    display: grid;
    gap: 10px;
    padding: 14px;
}

.callback-form input,
.callback-form select,
.callback-form button {
    width: 100%;
    border-radius: 9px;
    border: 1px solid var(--line);
    font: inherit;
    padding: 11px 12px;
}

.callback-form button {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    font-weight: 700;
    cursor: pointer;
}

.route-select {
    background: #f8fbff;
    border: 1px solid #d7e2ef;
    color: #1d2a3f;
    font-weight: 600;
}

.form-status {
    margin: 2px 0 0;
    font-size: 0.82rem;
    color: #1f8f57;
    min-height: 18px;
}

.form-status.error {
    color: #d23a2f;
}

section {
    padding: 56px 0;
}

section h2 {
    margin: 0 0 20px;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
    align-items: center;
}

.about p {
    color: var(--muted);
}

.counters {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.counters article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    text-align: center;
    padding: 16px 8px;
}

.counters img {
    width: 62px;
    height: 62px;
    margin: 0 auto 8px;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    mix-blend-mode: multiply;
}

.count {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.counters p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.services {
    padding: 95px 0 82px;
    background: linear-gradient(180deg, #f7fcf9 0%, #edf7f1 100%);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.content-heading h4 {
    text-align: center;
    margin: 0 0 14px;
    color: #454545;
    font-size: clamp(1.8rem, 3.2vw, 2.2rem);
    font-weight: 400;
    line-height: 1.1;
}

.content-heading h4 span {
    color: var(--accent-red);
    font-weight: 700;
}

.content-heading h4 strong {
    font-weight: 500;
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.service-box {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 0;
    align-items: stretch;
    background: #fff;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.20);
    margin-top: 14px;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    background: transparent;
    border: 0;
    padding: 0;
}

.service-box-text {
    font-size: 12px;
    padding: 14px;
}

.service-box-text h5 {
    color: #fff;
    display: inline-block;
    padding: 3px 15px;
    background: #31a354;
    margin: 0 0 8px;
    font-size: 1rem;
}

.service-box-text p {
    margin: 0 0 8px;
    text-align: justify;
    color: #3f4a5f;
    line-height: 1.45;
}

.service-box-text a {
    padding-left: 5px;
    padding-bottom: 5px;
    border-left: 2px solid var(--accent-red);
    border-bottom: 2px solid var(--accent-red);
    color: #000;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 18, 31, 0.62);
    display: grid;
    place-items: center;
    padding: 16px;
    z-index: 60;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.modal-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    width: min(760px, 96%);
    max-height: 90vh;
    overflow: auto;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #d7dfe9;
    box-shadow: 0 24px 48px rgba(10, 20, 37, 0.28);
    padding: 16px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: var(--accent-red);
    color: #fff;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
}

.modal-service {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 14px;
    align-items: start;
    margin-top: 8px;
}

.modal-service img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.modal-service h3 {
    margin: 0 0 8px;
}

.modal-service p {
    margin: 0 0 10px;
    color: #4c586e;
    line-height: 1.45;
}

.pricing-table-wrap {
    margin-top: 14px;
}

.pricing-table-wrap h4 {
    margin: 0 0 10px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    border: 1px solid #dae2ee;
    padding: 8px;
    text-align: left;
    font-size: 0.9rem;
}

.pricing-table th {
    background: #31a354;
    color: #fff;
}

.modal-cta {
    margin-top: 14px;
    border-top: 1px solid #e1e8f1;
    padding-top: 12px;
}

.modal-cta p {
    margin: 0 0 10px;
    color: #33445d;
}

.modal-cta-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.modal-cta-actions a {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 6px;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    background: var(--accent-red);
}

.modal-cta-actions a:last-child {
    background: #31a354;
}

.cta-strip {
    background: #e2381e;
    color: #fff;
}

.cta-wrap {
    display: grid;
    grid-template-columns: 200px 1fr auto 120px;
    align-items: center;
    gap: 16px;
}

.cta-photo {
    width: 200px;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.cta-wrap h3,
.cta-wrap p {
    margin: 0;
    color: #fff;
}

.cta-wrap p {
    margin-top: 6px;
    opacity: 0.93;
}

.qr-call-block {
    text-align: center;
}

.qr-call-image {
    width: 128px;
    height: 128px;
    border-radius: 2px;
    background: #fff;
    border: 0;
    margin: 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px 24px;
}

.process {
    background: #f9f9f9;
    box-shadow: inset 0 1px 0 #e6edf6, inset 0 -1px 0 #e6edf6;
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.addon-box {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 0;
    align-items: stretch;
    background: #fff;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.16);
}

.process-grid article {
    text-align: center;
    border-radius: 16px;
    border: 2px solid #cfe6d8;
    box-shadow: 0 10px 22px rgba(24, 40, 61, 0.08);
}

.process-card {
    position: relative;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 18px 14px 16px;
    background: #edfff3;
    border-color: #d7efe0;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.process-card.soft {
    background: #edfff3;
}

.process-card:nth-child(even) {
    background: #ffeeec;
    border-color: #f0d9d5;
}

.process-card::after {
    content: "\2192";
    position: absolute;
    right: -13px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #93a6c0;
    color: #1f2f46;
    font-size: 16px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 0 0 2px #ffffff;
    animation: arrow-pulse 2.4s ease-in-out infinite;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 28px rgba(22, 36, 58, 0.14);
}

.process-card:nth-child(4n)::after {
    display: none;
}

.process-card:last-child::after {
    display: none;
}

.process-icon-wrap {
    width: 96px;
    height: 96px;
    border-radius: 0;
    background: inherit;
    border: 0;
    display: grid;
    place-items: center;
    padding: 0;
}

.process-image {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: contain;
    margin-bottom: 0;
    mix-blend-mode: normal;
}

.process-grid h3,
.addon-grid h3 {
    margin: 0;
    font-size: 0.95rem;
}

.process-grid h3 {
    min-height: 42px;
    display: grid;
    place-items: center;
    line-height: 1.25;
    font-weight: 700;
}

.addons {
    background: #31a354;
    border-top: 0;
}

.addons h2 {
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.addon-image {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    object-position: center;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
}

.addon-box-text {
    font-size: 12px;
    padding: 14px;
}

.addon-box-text h5 {
    color: #fff;
    display: inline-block;
    padding: 3px 15px;
    background: #31a354;
    margin: 0 0 8px;
    font-size: 1rem;
}

.addon-box-text p {
    margin: 0;
    text-align: justify;
    color: #3f4a5f;
    line-height: 1.45;
}

footer {
    background: #ffffff;
    color: #2f3b4f;
    padding: 42px 0 18px;
    border-top: 1px solid #e4e9f2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 1fr 1.2fr;
    gap: 20px;
    align-items: start;
    justify-items: center;
}

footer h4 {
    margin: 0 0 12px;
    color: #f03b20;
    font-size: 1.35rem;
    font-weight: 700;
}

footer p {
    color: #687489;
    margin: 0 0 10px;
    line-height: 1.45;
}

.footer-brand {
    text-align: center;
    padding-top: 6px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 12px;
}

.footer-logo img {
    width: 145px;
    height: auto;
}

.footer-contact p {
    margin-bottom: 14px;
    text-align: center;
}

.footer-map {
    padding-top: 4px;
    width: 100%;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a {
    color: #687489;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: "";
}

.footer-links a:hover,
footer p a:hover {
    color: #2d3b52;
}

footer p strong {
    color: #31a354;
    font-weight: 700;
}

footer p a {
    color: #687489;
}

footer iframe {
    width: 100%;
    min-height: 150px;
    border: 0;
    border-radius: 6px;
}

.reveal-item {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal-item.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@keyframes arrow-pulse {
    0%,
    100% {
        transform: translateY(-50%) scale(1);
    }
    50% {
        transform: translateY(-50%) scale(1.04);
    }
}

@keyframes arrow-pulse-mobile {
    0%,
    100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.04);
    }
}

@media (max-width: 980px) {
    .nav-row {
        align-items: center;
        min-height: 72px;
        padding: 8px 0;
    }

    .menu-btn {
        display: inline-block;
        margin-left: auto;
        margin-top: 0;
        padding: 8px 12px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 82px;
        right: 4%;
        width: min(340px, 92%);
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 12px;
        box-shadow: var(--shadow);
        padding: 12px;
        flex-direction: column;
        gap: 12px;
        margin-top: 0;
        margin-left: 0;
        padding: 12px;
    }

    .nav-links.open {
        display: flex;
    }

    .banner-grid,
    .about-grid,
    .footer-grid,
    .service-grid,
    .cta-wrap {
        grid-template-columns: 1fr;
    }

    .services {
        padding: 70px 0 65px;
    }

    .callback-card {
        max-width: 540px;
        margin: 0 auto;
    }

    .top-information {
        position: static;
        margin-left: auto;
        order: 2;
        gap: 6px;
    }

    .top-information a span {
        display: none;
    }

    .top-information a {
        width: 34px;
        height: 34px;
        min-height: 34px;
        justify-content: center;
        padding: 0;
        border-radius: 8px;
    }

    .top-information a i {
        width: auto;
        font-size: 1rem;
    }

    .menu-btn {
        order: 3;
    }

    .google-review-sec {
        grid-template-columns: 1fr;
    }

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

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

    .cta-photo {
        width: 100%;
        max-width: 280px;
        height: 170px;
    }

    .qr-call-block {
        text-align: left;
    }

    .qr-call-image {
        margin: 0;
    }
}

@media (max-width: 640px) {
    .counters,
    .process-grid,
    .addon-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        gap: 24px;
    }

    .service-box {
        grid-template-columns: 1fr;
    }

    .service-box-text {
        text-align: center;
    }

    .service-box-text h5 {
        text-align: center;
    }

    .service-box-text p {
        text-align: center;
    }

    .service-box-text a {
        text-align: center;
        display: inline-block;
    }

    .addon-box {
        grid-template-columns: 1fr;
    }

    .addon-box-text {
        text-align: center;
        padding: 12px 10px 14px;
    }

    .addon-box-text p {
        text-align: center;
    }

    .process-card::after {
        display: grid;
        content: "\2193";
        left: 50%;
        right: auto;
        top: auto;
        bottom: -16px;
        transform: translateX(-50%);
        animation: arrow-pulse-mobile 3.4s ease-in-out infinite;
    }

    .process-card:nth-child(4n)::after {
        display: grid;
    }

    .process-card:last-child::after {
        display: none;
    }

    .modal-service {
        grid-template-columns: 1fr;
    }

    .modal-service img {
        height: 210px;
    }

    .pricing-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .floating-whatsapp {
        display: none;
    }

    .nav-row {
        min-height: 66px;
        gap: 8px;
        padding: 6px 0;
    }

    .logo img {
        width: 128px;
    }

    .top-information {
        position: static;
        margin-left: auto;
    }

    .banner {
        padding: 34px 0 28px;
        background-position: center;
    }

    .banner-copy {
        text-align: center;
    }

    .banner-copy p {
        margin-inline: auto;
    }

    .review-slider {
        text-align: left;
    }

    .hero-actions {
        justify-content: center;
    }

    .callback-card {
        margin-top: 8px;
    }

    .qr-call-block {
        text-align: center;
    }

    .qr-call-image {
        margin: 0 auto;
    }

    .footer-grid {
        gap: 12px;
    }
}

@media (max-width: 668px) {
    body {
        padding-bottom: 64px;
    }

    .mobile-numbers {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 70;
        background: #fff;
        border-top: 1px solid #dfe7f1;
        padding: 6px;
    }

    .mobile-numbers ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .mobile-numbers li {
        border-radius: 6px;
        text-align: center;
        font-weight: 700;
        overflow: hidden;
    }

    .mobile-numbers li:first-child {
        background: #229014;
    }

    .mobile-numbers li:last-child {
        background: #f03b20;
    }

    .mobile-numbers a {
        display: block;
        color: #fff;
        padding: 10px 8px;
        font-size: 0.95rem;
    }

    .mobile-numbers .fa {
        margin-right: 4px;
    }
}

/* Responsive refinements for device-wise layout */
@media (max-width: 1200px) {
    .container {
        width: min(1120px, 94%);
    }

    .banner-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .callback-card {
        max-width: 560px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .nav-row {
        min-height: 74px;
        align-items: center;
        gap: 10px;
    }

    .logo img {
        width: 146px;
    }

    .top-information {
        position: static;
        margin-left: auto;
        order: 2;
        gap: 6px;
    }

    .menu-btn {
        display: inline-block;
        order: 3;
        margin-left: 0;
    }

    .nav-links {
        top: 76px;
        width: min(360px, 94%);
    }

    .google-review-sec {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .review-track {
        min-height: 96px;
    }

    .about-grid,
    .service-grid,
    .addon-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-wrap {
        grid-template-columns: 1fr auto;
        gap: 12px;
    }

    .cta-photo {
        max-width: 320px;
        height: 186px;
    }

    .qr-call-block {
        justify-self: start;
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 44px 0;
    }

    .banner {
        padding: 28px 0 22px;
    }

    .banner-copy {
        text-align: center;
    }

    .banner-copy p {
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .service-box,
    .addon-box {
        grid-template-columns: 1fr;
    }

    .service-box-text,
    .addon-box-text {
        text-align: center;
    }

    .service-box-text p,
    .addon-box-text p {
        text-align: center;
    }

    .cta-wrap {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .qr-call-block {
        justify-self: center;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .process-card::after {
        display: grid;
        content: "\2193";
        left: 50%;
        right: auto;
        top: auto;
        bottom: -16px;
        transform: translateX(-50%);
        animation: arrow-pulse-mobile 3.4s ease-in-out infinite;
    }

    .process-card:last-child::after {
        display: none;
    }

    .footer-brand {
        text-align: center;
    }
}

@media (max-width: 576px) {
    body {
        padding-bottom: 64px;
    }

    .logo img {
        width: 126px;
    }

    .top-information a span {
        display: none;
    }

    .top-information a {
        width: 34px;
        height: 34px;
        min-height: 34px;
        padding: 0;
        border-radius: 8px;
    }

    .top-information a i {
        width: auto;
    }

    .review-card p {
        font-size: 0.83rem;
    }

    .modal-card {
        width: 100%;
        max-height: 92vh;
    }

    .modal-service img {
        height: 190px;
    }
}

@media (max-width: 420px) {
    .container {
        width: 94%;
    }

    .logo img {
        width: 116px;
    }

    .menu-btn {
        padding: 7px 10px;
        font-size: 0.8rem;
    }

    .btn {
        padding: 11px 14px;
        font-size: 0.9rem;
    }

    .callback-form input,
    .callback-form select,
    .callback-form button {
        padding: 10px 10px;
    }
}

/* Footer layout lock (reference-like arrangement across sizes) */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px 22px;
    }

    .footer-brand {
        text-align: left;
    }

    .footer-logo img {
        width: 138px;
    }

    .footer-map {
        grid-column: 1 / -1;
    }

    footer iframe {
        min-height: 170px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .footer-brand,
    .footer-links,
    .footer-contact,
    .footer-map {
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 8px;
    }

    .footer-map {
        padding-top: 0;
    }

    footer iframe {
        min-height: 150px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
