@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');:root {
    --navy: #061b2d;
    --navy-light: #102f47;
    --blue: #159ee8;
    --blue-dark: #0b78bb;
    --green: #25d366;
    --white: #ffffff;
    --light: #f4f8fb;
    --text: #1f2d3d;
    --muted: #64748b;
    --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    --hero-image: url("images/hero-background-optimized.jpeg");
}* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}html {
    scroll-behavior: smooth;
}body {
    font-family: 'Roboto', sans-serif;
    color: var(--text);
    background: var(--light);
    line-height: 1.6;
}body.lightbox-open {
    overflow: hidden;
}a {
    color: inherit;
}.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}/* HEADER */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(6, 27, 45, 0.96);
    z-index: 1000;
    transform: translateY(0);
    will-change: transform;
    transition: transform 0.32s ease, box-shadow 0.3s ease;
}header.scrolled {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}header.header-hidden {
    transform: translateY(-100%);
}nav {
    max-width: 1400px;
    margin: 0 auto;
    height: 86px;
    padding: 0 36px;
    display: flex;
    align-items: center;
    gap: 34px;
}.logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    color: var(--white);
    text-decoration: none;
    font-weight: 900;
    font-size: 1.15rem;
    margin-right: auto;
}.site-logo {
    width: clamp(72px, 8vw, 120px);
    height: auto;
    flex: 0 0 auto;
    object-fit: contain;
}.logo-wrap span {
    min-width: 0;
    overflow-wrap: normal;
}.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.25s ease;
}.nav-links a:hover {
    color: var(--blue);
}.nav-cta,
.cta-button {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--white);
    text-decoration: none;
    border: none;
    border-radius: 8px;
    padding: 15px 24px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(21, 158, 232, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}.nav-cta:hover,
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(21, 158, 232, 0.32);
}.hamburger {
    display: none;
    background: none;
    color: var(--white);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}/* HERO */

.hero {
    /* Hero image is designed for 1920x720 (8:3). */
    min-height: clamp(500px, 37.5vw, 720px);
    padding-top: 86px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background-color: #f7fbff;
    background-image: var(--hero-image);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(248, 252, 255, 0.98) 0%, rgba(248, 252, 255, 0.94) 38%, rgba(248, 252, 255, 0.45) 56%, rgba(248, 252, 255, 0) 74%),
        linear-gradient(180deg, rgba(6, 27, 45, 0.04) 0%, rgba(6, 27, 45, 0) 42%, rgba(6, 27, 45, 0.03) 100%);
    pointer-events: none;
}.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(6, 27, 45, 0.05) 0%, rgba(6, 27, 45, 0.00) 32%, rgba(6, 27, 45, 0.015) 100%);
    pointer-events: none;
}.eyebrow {
    color: var(--blue);
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
}.eyebrow.dark {
    color: var(--blue-dark);
}.secondary-button {
    color: var(--white);
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.38);
    border-radius: 8px;
    padding: 13px 22px;
    font-weight: 900;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}.secondary-button:hover {
    border-color: var(--blue);
    background: rgba(21, 158, 232, 0.14);
    transform: translateY(-2px);
}/* SHARED SECTIONS */

section {
    scroll-margin-top: 86px;
}.services,
.gallery,
.about,
.contact {
    padding: 88px 0;
}.services,
.about,
.process {
    background: var(--white);
}.section-heading {
    text-align: center;
    margin-bottom: 44px;
}.section-heading p {
    color: var(--blue-dark);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}.section-heading h2,
.about-text h2,
.contact-info h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--navy);
    line-height: 1.1;
}/* SERVICES */

.service-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}.card {
    background: var(--white);
    padding: 34px 26px;
    border-radius: 8px;
    text-align: center;
    min-width: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(6, 27, 45, 0.06);
    transition: transform 0.25s ease;
}.card:hover {
    transform: translateY(-8px);
}.card i {
    font-size: 2.8rem;
    color: var(--blue);
    margin-bottom: 18px;
}.card h3 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 12px;
    overflow-wrap: break-word;
}.card p {
    color: var(--muted);
    overflow-wrap: break-word;
}/* PROCESS */

.process {
    padding: 88px 0;
    border-top: 1px solid rgba(6, 27, 45, 0.06);
}.process-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 48px;
    align-items: center;
}.process-intro h2 {
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.08;
}.process-intro p:not(.eyebrow) {
    max-width: 540px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 1.06rem;
}.process-steps {
    display: grid;
    gap: 16px;
}.process-step {
    display: grid;
    grid-template-columns: 76px 1fr;
    column-gap: 20px;
    row-gap: 6px;
    align-items: start;
    padding: 24px;
    border-radius: 8px;
    background: var(--light);
    border: 1px solid rgba(6, 27, 45, 0.08);
}.process-step span {
    grid-row: span 2;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--navy);
    color: var(--blue);
    font-weight: 900;
    font-size: 1rem;
}.process-step h3 {
    color: var(--navy);
    font-size: 1.18rem;
    line-height: 1.2;
}.process-step p {
    color: var(--muted);
}/* GALLERY */

.gallery {
    background:
        radial-gradient(circle at 18% 12%, rgba(21, 158, 232, 0.08), transparent 30%),
        var(--light);
}.gallery-container {
    max-width: 1160px;
    margin: 0 auto;
}.gallery-lead {
    max-width: 760px;
    margin: -20px auto 24px;
    text-align: center;
    color: var(--muted);
    font-size: 1.08rem;
}.before-after-label {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--white);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 8px 18px rgba(6, 27, 45, 0.2);
}.before-label {
    background: rgba(6, 27, 45, 0.88);
}.after-label {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}.gallery-note {
    text-align: center;
    margin-top: 24px;
    color: var(--muted);
}.gallery-cta-row {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}.gallery-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--white);
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(21, 158, 232, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}.gallery-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(21, 158, 232, 0.32);
}@media (max-width: 768px) {.gallery-lead {
        margin-top: -16px;
        font-size: 1rem;
    }.before-after-label {
        min-width: 70px;
        padding: 7px 10px;
        font-size: 0.7rem;
    }
}/* ABOUT */

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}.about-text p {
    color: var(--muted);
    margin-top: 18px;
    font-size: 1.05rem;
}.about-stats {
    display: grid;
    gap: 18px;
}.stat {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    border-radius: 8px;
    padding: 28px;
    box-shadow: var(--shadow);
}.stat h3 {
    font-size: 2.8rem;
    color: var(--blue);
}.stat p {
    font-weight: 800;
}/* CONTACT */

.contact {
    position: relative;
    isolation: isolate;
    padding: clamp(76px, 8vw, 118px) 0;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fbfd 0%, #eef7fc 100%);
}.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background: url("images/service-area-coverage.svg") 76% 50% / min(860px, 62vw) auto no-repeat;
    opacity: 0.62;
    filter: saturate(1.03) contrast(1.04) brightness(1.02);
    transform: scale(1.025);
    pointer-events: none;
}.contact::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(244, 248, 251, 0.97) 0%, rgba(244, 248, 251, 0.88) 43%, rgba(244, 248, 251, 0.38) 100%),
        radial-gradient(circle at 16% 22%, rgba(21, 158, 232, 0.13), transparent 34%),
        radial-gradient(circle at 78% 30%, rgba(255, 255, 255, 0.2), transparent 26%);
    pointer-events: none;
}.contact-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 610px) minmax(280px, 1fr);
    gap: clamp(28px, 6vw, 78px);
    align-items: center;
    max-width: 1160px;
    min-height: 610px;
}.contact-info {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 610px;
    display: grid;
    gap: 24px;
    padding: clamp(24px, 3.6vw, 40px);
    border-radius: 8px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 28px 70px rgba(6, 27, 45, 0.16);
    backdrop-filter: blur(16px);
}.contact .eyebrow.dark {
    color: var(--blue-dark);
    margin-bottom: 10px;
}.contact-actions {
    margin-top: 0;
    padding-top: 24px;
    border-top: 1px solid rgba(6, 27, 45, 0.1);
    display: grid;
    gap: 14px;
}.contact-primary-cta {
    min-height: 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--green), #18b957);
    color: var(--white);
    text-decoration: none;
    font-size: 1.08rem;
    font-weight: 900;
    box-shadow: 0 16px 32px rgba(37, 211, 102, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}.contact-primary-cta i {
    font-size: 1.2rem;
}.contact-primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 44px rgba(37, 211, 102, 0.34);
}.contact-secondary-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}.contact-secondary-link {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(6, 27, 45, 0.1);
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(6, 27, 45, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}.contact-secondary-link i {
    width: 34px;
    height: 34px;
    min-width: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    font-size: 1.18rem;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(6, 27, 45, 0.1);
}.contact-secondary-link span {
    color: inherit;
}.contact-secondary-link.ig i::before {
    background: linear-gradient(45deg, #feda75 0%, #fa7e1e 25%, #d62976 55%, #962fbf 75%, #4f5bd5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}.contact-secondary-link.ig span {
    color: #c13584;
}.contact-secondary-link.ig:hover {
    border-color: rgba(214, 41, 118, 0.28);
    background: rgba(255, 247, 252, 0.96);
}.contact-secondary-link.email i {
    color: var(--blue);
    background: rgba(21, 158, 232, 0.12);
}.contact-secondary-link.email span {
    color: var(--navy);
}.contact-secondary-link.email:hover {
    border-color: rgba(21, 158, 232, 0.28);
    background: rgba(246, 251, 255, 0.96);
}.contact-secondary-link.fb i {
    color: #1877f2;
}.contact-secondary-link.fb span {
    color: #1877f2;
}.contact-secondary-link.fb:hover {
    border-color: rgba(24, 119, 242, 0.3);
    background: rgba(245, 249, 255, 0.96);
}.contact-secondary-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(6, 27, 45, 0.14);
}.map-pin-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-weight: 900;
}.map-pin-badge i {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--blue);
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(21, 158, 232, 0.24);
}/* FOOTER */

.site-footer {
    background: var(--navy);
    color: var(--white);
    padding: 54px 20px 36px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}.footer-inner {
    display: grid;
    justify-items: center;
    gap: 22px;
}.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}.footer-brand img {
    width: 110px;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}.footer-brand h3 {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.2;
}.footer-brand p {
    color: rgba(255, 255, 255, 0.72);
    margin-top: 6px;
}.footer-links,
.footer-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
}.footer-links a,
.footer-actions a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    opacity: 0.88;
    transition: color 0.25s ease, opacity 0.25s ease;
}.footer-actions a {
    font-size: 0.95rem;
}.footer-links a:hover,
.footer-actions a:hover {
    color: var(--blue);
    opacity: 1;
}.footer-copy {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
    margin-top: 24px;
}.mobile-call-bar {
    display: none;
}/* LIGHTBOX */

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow-y: auto;
    background: rgba(3, 12, 20, 0.94);
}.lightbox.active {
    display: flex;
}.lightbox-panel {
    position: relative;
    width: min(1180px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: clamp(20px, 3vw, 30px);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}.lightbox-header {
    padding-right: 58px;
}.lightbox-counter {
    color: var(--blue-dark);
    font-weight: 900;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}.lightbox-header h3 {
    margin-top: 6px;
    color: var(--navy);
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    line-height: 1.1;
}.lightbox-header p:not(.lightbox-counter) {
    max-width: 760px;
    margin-top: 8px;
    color: var(--muted);
}.lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(6, 27, 45, 0.2);
}.lightbox-comparison {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}.lightbox-image-card {
    position: relative;
    margin: 0;
    padding: 14px;
    border-radius: 8px;
    background: var(--light);
    border: 1px solid rgba(6, 27, 45, 0.08);
    overflow: hidden;
}.lightbox-image-card img {
    width: 100%;
    max-height: min(62vh, 620px);
    display: block;
    object-fit: contain;
    border-radius: 16px;
    background: var(--white);
}.lightbox-footer {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 14px;
}.lightbox-nav-btn,
.lightbox .lightbox-prev,
.lightbox .lightbox-next {
    position: static;
    width: auto;
    height: auto;
    min-height: 48px;
    padding: 12px 18px;
    border: none;
    border-radius: 999px;
    background: var(--navy);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(6, 27, 45, 0.18);
}.lightbox-prev {
    justify-self: start;
}.lightbox-next {
    justify-self: end;
}.lightbox-estimate-link {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--green), #18b957);
    color: var(--white);
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.22);
}@media (max-width: 768px) {.lightbox {
        padding: 12px;
        align-items: flex-start;
    }.lightbox-panel {
        max-height: none;
        border-radius: 8px;
        padding: 18px;
    }.lightbox-header {
        padding-right: 48px;
    }.lightbox-comparison {
        grid-template-columns: 1fr;
    }.lightbox-image-card img {
        max-height: 58vh;
    }.lightbox-footer {
        grid-template-columns: 1fr;
    }.lightbox-prev,
    .lightbox-next,
    .lightbox-estimate-link {
        width: 100%;
        justify-self: stretch;
    }
}/* RESPONSIVE */

@media (max-width: 1000px) {
    .nav-cta {
        display: none;
    }

    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-grid {
        grid-template-columns: 1fr;
    }

    .gallery-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
}@media (max-width: 768px) {nav {
        height: 76px;
        padding: 0 18px;
    }.site-logo {
        width: 54px;
        height: auto;
    }.logo-wrap {
        gap: 10px;
        max-width: calc(100% - 54px);
    }.logo-wrap span {
        font-size: clamp(0.82rem, 4.2vw, 0.95rem);
        line-height: 1.25;
    }.hamburger {
        display: block;
    }.nav-links {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        background: var(--navy);
        padding: 20px;
        flex-direction: column;
        gap: 18px;
        box-shadow: var(--shadow);
    }.nav-links.active {
        display: flex;
    }.hero {
        min-height: clamp(380px, 62vh, 560px);
        padding-top: 76px;
        background-position: 64% center;
        align-items: flex-end;
    }.hero::before {
        background:
            linear-gradient(180deg, rgba(248, 252, 255, 0.2) 0%, rgba(248, 252, 255, 0.74) 42%, rgba(248, 252, 255, 0.98) 100%),
            linear-gradient(90deg, rgba(248, 252, 255, 0.96), rgba(248, 252, 255, 0.35));
    }.services,
    .gallery,
    .process,
    .about,
    .contact {
        padding: 64px 0;
    }.service-cards {
        grid-template-columns: 1fr;
    }.process-step {
        grid-template-columns: 1fr;
    }.process-step span {
        grid-row: auto;
    }.gallery-display {
        min-height: 320px;
        padding: 10px;
    }.gallery-display img {
        max-height: 310px;
    }.gallery-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }.gallery-thumbnail {
        height: 92px;
    }.contact::before {
        opacity: 0.38;
        background-position: center;
    }.contact::after {
        background:
            linear-gradient(180deg, rgba(244, 248, 251, 0.97) 0%, rgba(244, 248, 251, 0.88) 100%),
            radial-gradient(circle at 18% 18%, rgba(21, 158, 232, 0.12), transparent 36%);
    }.contact-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 18px;
        padding: 0 16px;
    }.contact-info {
        padding: 24px 18px;
        border-radius: 8px;
    }.contact-info {
        gap: 20px;
    }.contact-secondary-actions {
        grid-template-columns: 1fr;
    }.footer-brand img {
        width: 92px;
    }.footer-links,
    .footer-actions {
        gap: 16px;
    }.mobile-call-bar {
        position: fixed;
        left: 14px;
        right: 14px;
        bottom: 14px;
        z-index: 2500;
        min-height: 58px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        border-radius: 8px;
        background: linear-gradient(135deg, var(--green), #18b957);
        color: var(--white);
        text-decoration: none;
        font-weight: 900;
        opacity: 0;
        pointer-events: none;
        transform: translateY(12px);
        box-shadow: 0 18px 36px rgba(6, 27, 45, 0.24);
        transition: opacity 0.24s ease, transform 0.24s ease;
    }.mobile-call-bar.is-visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }body {
        padding-bottom: 78px;
    }.lightbox-prev {
        left: 10px;
    }.lightbox-next {
        right: 10px;
    }
}@media (prefers-reduced-motion: reduce) {html {
        scroll-behavior: auto;
    }
}/* CONTACT REFINEMENT OVERRIDES
   Keeps the existing map/card brand style while making the review area more compact
   and the phone CTA more visually dominant. */

.contact {
    padding: clamp(64px, 7vw, 96px) 0;
}.contact::after {
    background:
        linear-gradient(90deg, rgba(244, 248, 251, 0.98) 0%, rgba(244, 248, 251, 0.9) 42%, rgba(244, 248, 251, 0.42) 100%),
        radial-gradient(circle at 18% 22%, rgba(21, 158, 232, 0.12), transparent 32%),
        radial-gradient(circle at 76% 30%, rgba(255, 255, 255, 0.2), transparent 26%);
}.contact-grid {
    grid-template-columns: minmax(0, 680px) minmax(260px, 1fr);
    gap: clamp(28px, 5vw, 68px);
    max-width: 1220px;
    min-height: 560px;
}.contact-info {
    max-width: 680px;
    gap: 20px;
    padding: clamp(24px, 3.1vw, 38px);
    background: rgba(255, 255, 255, 0.95);
}.contact .eyebrow.dark {
    margin-bottom: 8px;
}.contact-actions {
    padding-top: 22px;
}.contact-primary-cta {
    min-height: 68px;
    font-size: 1.1rem;
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.3);
}.contact-primary-cta:hover {
    box-shadow: 0 24px 48px rgba(37, 211, 102, 0.36);
}.contact-secondary-actions {
    gap: 12px;
}.contact-secondary-link {
    min-height: 56px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 18px rgba(6, 27, 45, 0.08);
}.contact-secondary-link i {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 1.12rem;
    box-shadow: 0 4px 10px rgba(6, 27, 45, 0.08);
}.contact-secondary-link:hover {
    box-shadow: 0 14px 28px rgba(6, 27, 45, 0.12);
}.map-pin-badge i {
    width: 34px;
    height: 34px;
    min-width: 34px;
}@media (max-width: 1000px) {.contact-grid {
        grid-template-columns: 1fr;
        max-width: 760px;
        min-height: auto;
    }.contact-info {
        max-width: none;
    }
}@media (max-width: 768px) {.contact-grid {
        gap: 18px;
        padding: 0 16px;
    }.contact-info {
        gap: 18px;
        padding: 22px 16px;
    }.contact-secondary-actions {
        grid-template-columns: 1fr;
    }
}@media (max-width: 480px) {.contact-primary-cta {
        min-height: 64px;
        font-size: 1rem;
    }
}/* ANNOTATION UPDATES */

.gallery {
    background:
        linear-gradient(180deg, #f7fbfe 0%, #e7f5fc 100%);
}.gallery .section-heading {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}.gallery-lead {
    max-width: 830px;
    margin-bottom: 30px;
    font-size: 1.12rem;
    line-height: 1.7;
}.contact {
    background: linear-gradient(180deg, #f8fbfd 0%, #eef8fd 100%);
}.contact::before {
    background: url("images/service-area-coverage.svg") 76% 50% / min(860px, 62vw) auto no-repeat;
    opacity: 1;
    filter: none;
    transform: none;
}.contact::after {
    background:
        linear-gradient(90deg, rgba(248, 251, 253, 0.98) 0%, rgba(248, 251, 253, 0.9) 38%, rgba(248, 251, 253, 0.18) 100%),
        radial-gradient(circle at 20% 18%, rgba(21, 158, 232, 0.08), transparent 32%);
}.contact-grid {
    grid-template-columns: minmax(0, 650px) minmax(300px, 1fr);
    align-items: center;
}.contact-info {
    gap: 18px;
    border: 1px solid rgba(21, 158, 232, 0.12);
}.contact-service-panel {
    display: grid;
    gap: 18px;
    padding: clamp(24px, 3vw, 34px);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(239, 249, 255, 0.96));
    border: 1px solid rgba(21, 158, 232, 0.18);
    box-shadow: 0 18px 40px rgba(6, 27, 45, 0.08);
}.contact-service-header {
    display: flex;
    align-items: center;
    gap: 14px;
}.contact-service-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    box-shadow: 0 12px 24px rgba(21, 158, 232, 0.22);
}.contact-service-kicker {
    color: var(--blue-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}.contact-service-panel h3 {
    color: var(--navy);
    font-size: clamp(1.65rem, 2.6vw, 2.25rem);
    line-height: 1.08;
}.contact-service-panel p:not(.contact-service-kicker) {
    color: #55728d;
    font-weight: 700;
    line-height: 1.6;
}.contact-service-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}.contact-service-list span {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(21, 158, 232, 0.13);
    color: var(--navy);
    font-size: 0.86rem;
    font-weight: 900;
}.contact-service-list i {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(21, 158, 232, 0.1);
    color: var(--blue-dark);
}.contact-secondary-actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}.contact-secondary-link {
    border-radius: 8px;
}.contact-secondary-link.whatsapp i {
    color: #25d366;
    background: rgba(37, 211, 102, 0.13);
}.contact-secondary-link.whatsapp span {
    color: #128c4a;
}.contact-secondary-link.whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.3);
    background: rgba(242, 255, 247, 0.96);
}.contact-secondary-link.ig {
    border-color: rgba(214, 41, 118, 0.18);
    background: rgba(255, 250, 253, 0.96);
}.contact-secondary-link.ig i {
    color: #ffffff;
    background: radial-gradient(circle at 30% 107%, #fdf497 0 5%, #fdf497 6% 14%, #fd5949 35%, #d6249f 60%, #285aeb 100%);
    box-shadow: 0 10px 24px rgba(214, 41, 118, 0.28);
}.contact-secondary-link.ig i::before {
    background: none;
    background-clip: border-box;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}.contact-secondary-link.ig span {
    color: #c13584;
}.contact-secondary-link.ig:hover {
    border-color: rgba(214, 41, 118, 0.35);
    background: #ffffff;
}.contact-secondary-link.whatsapp {
    border-color: rgba(37, 211, 102, 0.2);
    background: rgba(245, 255, 249, 0.96);
}.contact-secondary-link.whatsapp i {
    color: #ffffff;
    background: #25d366;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.24);
}.contact-secondary-link.whatsapp span {
    color: #128c4a;
}.contact-secondary-link.email {
    border-color: rgba(0, 120, 212, 0.18);
    background: rgba(246, 251, 255, 0.96);
}.contact-secondary-link.email i {
    color: #ffffff;
    background: #0078d4;
    box-shadow: 0 10px 24px rgba(0, 120, 212, 0.22);
}.contact-secondary-link.email span {
    color: var(--navy);
}.contact-secondary-link.fb {
    border-color: rgba(24, 119, 242, 0.18);
    background: rgba(245, 249, 255, 0.96);
}.contact-secondary-link.fb i {
    color: #ffffff;
    background: #1877f2;
    box-shadow: 0 10px 24px rgba(24, 119, 242, 0.24);
}.contact-secondary-link.fb span {
    color: #1877f2;
}.contact-secondary-link.email:hover,
.contact-secondary-link.fb:hover,
.contact-secondary-link.whatsapp:hover {
    background: #ffffff;
}@media (max-width: 1000px) {.contact::before {
        background-position: center bottom;
        background-size: min(840px, 110vw) auto;
        opacity: 0.5;
    }.contact-grid {
        grid-template-columns: 1fr;
        max-width: 760px;
        min-height: auto;
    }.contact-info {
        max-width: none;
    }.contact-service-list {
        grid-template-columns: 1fr;
    }.contact-secondary-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}@media (max-width: 768px) {.contact {
        padding-top: 76px;
    }.contact::before {
        background-position: center bottom;
        background-size: 820px auto;
        opacity: 0.28;
    }.contact-info {
        gap: 18px;
    }.contact-service-panel {
        padding: 18px 14px;
    }.contact-service-header {
        align-items: flex-start;
    }.contact-secondary-actions {
        grid-template-columns: 1fr;
    }
}/* HERO: extra small screens */
@media (max-width: 520px) {
    .hero {
        min-height: 420px;
        background-position: left center;
    }

    .hero::before {
        background-position: left center;
        filter: saturate(1.06) contrast(1.05) brightness(1.03);
    }

    .hero::after {
        background: linear-gradient(180deg, rgba(6, 27, 45, 0.04) 0%, rgba(6, 27, 45, 0.00) 100%);
    }
}/* GALLERY SLIDESHOW */

.gallery-slideshow {
    max-width: 1180px;
    margin: 42px auto 0;
}.gallery-stage {
    position: relative;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 54px;
    gap: 16px;
    align-items: center;
}.gallery-main-comparison {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 16px;
    border: 1px solid rgba(21, 158, 232, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 56px rgba(6, 27, 45, 0.13);
    cursor: zoom-in;
}.gallery-main-panel {
    position: relative;
    min-height: clamp(440px, 54vw, 620px);
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #e7f3fa;
    border: 1px solid rgba(6, 27, 45, 0.12);
}.gallery-main-panel img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}.gallery-arrow {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(6, 27, 45, 0.1);
    border-radius: 50%;
    background: var(--white);
    color: var(--navy);
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(6, 27, 45, 0.12);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}.gallery-arrow:hover {
    transform: translateY(-2px);
    background: #eef8fe;
    box-shadow: 0 18px 38px rgba(6, 27, 45, 0.16);
}.gallery-slideshow-footer {
    display: grid;
    gap: 16px;
    margin-top: 18px;
}.gallery-slideshow-counter {
    justify-self: center;
    color: var(--blue-dark);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}.gallery-thumbnail-track {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 10px;
}.gallery-thumbnail-button {
    position: relative;
    height: 92px;
    padding: 0;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    opacity: 0.68;
    box-shadow: 0 8px 18px rgba(6, 27, 45, 0.08);
    transition: opacity 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}.gallery-thumbnail-button img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}.gallery-thumbnail-button.active,
.gallery-thumbnail-button:hover {
    opacity: 1;
    transform: translateY(-2px);
    border-color: var(--blue);
}.gallery-main-comparison:focus-visible,
.gallery-arrow:focus-visible,
.gallery-thumbnail-button:focus-visible {
    outline: 3px solid rgba(21, 158, 232, 0.55);
    outline-offset: 3px;
}@media (max-width: 1000px) {.gallery-stage {
        grid-template-columns: 1fr;
    }.gallery-arrow {
        position: absolute;
        top: 50%;
        z-index: 3;
        transform: translateY(-50%);
    }.gallery-arrow:hover {
        transform: translateY(calc(-50% - 2px));
    }.gallery-arrow-prev {
        left: 12px;
    }.gallery-arrow-next {
        right: 12px;
    }.gallery-thumbnail-track {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}@media (max-width: 768px) {.gallery-slideshow {
        margin-top: 30px;
    }.gallery-main-comparison {
        padding: 10px;
        gap: 10px;
    }.gallery-main-panel {
        min-height: 340px;
    }.gallery-arrow {
        width: 46px;
        height: 46px;
    }.gallery-thumbnail-track {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
    }.gallery-thumbnail-button {
        height: 76px;
    }
}@media (max-width: 520px) {.gallery-main-comparison {
        grid-template-columns: 1fr;
    }.gallery-main-panel {
        min-height: 310px;
    }.gallery-thumbnail-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* CONTACT FINAL LAYOUT */

.contact {
    background:
        linear-gradient(180deg, #f8fbfd 0%, #eef8fd 100%),
        radial-gradient(circle at 18% 18%, rgba(21, 158, 232, 0.1), transparent 34%);
}

.contact::before {
    background: none;
    opacity: 0;
}

.contact::after {
    background:
        linear-gradient(90deg, rgba(248, 251, 253, 0.98) 0%, rgba(248, 251, 253, 0.86) 43%, rgba(248, 251, 253, 0.45) 100%),
        radial-gradient(circle at 22% 20%, rgba(21, 158, 232, 0.1), transparent 34%);
}

.contact-grid {
    grid-template-columns: minmax(0, 600px) minmax(360px, 1fr);
    align-items: stretch;
    gap: clamp(30px, 4.6vw, 64px);
    max-width: 1260px;
}

.contact-info {
    max-width: 600px;
    align-content: center;
    gap: 22px;
    padding: clamp(24px, 3vw, 34px);
}

.contact-service-panel {
    gap: 18px;
    padding: clamp(24px, 3.2vw, 36px);
}

.contact-service-panel h3 {
    max-width: 440px;
}

.contact-service-panel p:not(.contact-service-kicker) {
    max-width: 500px;
}

.contact-actions {
    padding-top: 0;
    border-top: 0;
}

@media (max-width: 1000px) {
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 760px;
    }

    .contact-info {
        max-width: none;
    }
}

@media (max-width: 768px) {
}

/* STABILITY PATCH */

.site-logo {
    width: auto;
    height: 58px;
    max-width: 122px;
    display: block;
    object-fit: contain;
}

.logo-wrap {
    min-height: 86px;
}

.footer-brand img {
    width: 120px;
    max-width: 120px;
    height: auto;
    display: block;
    object-fit: contain;
}

.contact {
    padding: clamp(72px, 7vw, 104px) 0;
}

.contact-grid {
    grid-template-columns: minmax(0, 620px) minmax(420px, 1fr);
    align-items: center;
}

.contact-info {
    max-width: 620px;
}

@media (max-width: 1000px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .site-logo {
        height: 48px;
        max-width: 104px;
    }

    .logo-wrap {
        min-height: 76px;
    }
}

/* HERO + REVIEWS FINAL PASS */

.hero {
    align-items: center;
    background-position: center center;
}

.hero::before {
    background:
        linear-gradient(90deg, rgba(248, 252, 255, 0.62) 0%, rgba(248, 252, 255, 0.34) 34%, rgba(248, 252, 255, 0.04) 64%),
        linear-gradient(180deg, rgba(6, 27, 45, 0.02), rgba(6, 27, 45, 0));
}

.reviews-panel {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 22px;
    padding: clamp(24px, 3vw, 34px);
    border-radius: 8px;
    background:
        radial-gradient(circle at top right, rgba(21, 158, 232, 0.16), transparent 34%),
        linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    box-shadow: 0 26px 64px rgba(6, 27, 45, 0.18);
}

.reviews-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.reviews-kicker {
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.reviews-header h3 {
    margin-top: 4px;
    font-size: clamp(1.45rem, 2.3vw, 2rem);
    line-height: 1.1;
}

.reviews-rating {
    display: grid;
    justify-items: end;
    gap: 4px;
    min-width: 96px;
    color: #ffc107;
    font-weight: 900;
}

.reviews-rating strong {
    color: var(--white);
    font-size: 1.05rem;
}

@media (max-width: 1000px) {
}

@media (max-width: 768px) {
    .hero {
        align-items: flex-end;
        background-position: 62% center;
    }

    .reviews-header {
        display: grid;
    }

.reviews-rating {
    justify-items: start;
    }
}

/* CONTACT SINGLE-CARD FINAL PASS */

.contact {
    padding: clamp(70px, 7vw, 104px) 0;
    background:
        radial-gradient(circle at 20% 15%, rgba(21, 158, 232, 0.12), transparent 34%),
        linear-gradient(180deg, #f8fbfd 0%, #eef8fd 100%);
}

.contact::before,
.contact::after {
    display: none;
}

.contact-grid {
    display: block;
    max-width: 920px;
    min-height: 0;
}

.contact-info {
    max-width: none;
    margin: 0 auto;
    padding: clamp(24px, 3.4vw, 42px);
    gap: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(21, 158, 232, 0.16);
    box-shadow: 0 26px 68px rgba(6, 27, 45, 0.14);
}

.contact-service-panel {
    padding: clamp(22px, 3vw, 34px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(237, 249, 255, 0.96));
}

.contact-service-header {
    align-items: flex-start;
}

.contact-service-panel h3 {
    max-width: 620px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.contact-service-panel p:not(.contact-service-kicker) {
    max-width: 760px;
    font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.contact-service-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-actions {
    padding-top: 0;
    border-top: 0;
}

.contact-primary-cta {
    min-height: 72px;
}

.contact-secondary-actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 768px) {
    .contact-grid {
        padding: 0 16px;
    }

    .contact-info {
        padding: 20px 16px;
    }

    .contact-service-list,
    .contact-secondary-actions {
        grid-template-columns: 1fr;
    }

    .contact-primary-cta {
        min-height: 64px;
    }
}

@media (max-width: 768px) {
}

/* HEADER + HERO IMAGE FINAL FIX */

.logo-wrap {
    min-height: 0;
    gap: 12px;
}

.site-logo {
    width: auto;
    height: 54px;
    max-width: 96px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.18));
}

.hero {
    display: block;
    min-height: 0;
    height: clamp(300px, 30vw, 430px);
    margin-top: 86px;
    padding: 0;
    overflow: hidden;
    background: #ffffff;
}

.hero-banner-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

@media (max-width: 768px) {
    .site-logo {
        height: 44px;
        max-width: 78px;
    }

    .hero {
        margin-top: 76px;
        height: clamp(230px, 48vw, 340px);
    }
}

/* REVIEWS + FOOTER FINAL LAYOUT */

.about {
    padding: clamp(72px, 8vw, 110px) 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(21, 158, 232, 0.09), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
}

.about-grid {
    display: block;
    max-width: 1120px;
}

.reviews-panel {
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    align-items: start;
    column-gap: clamp(24px, 4vw, 44px);
    row-gap: 24px;
    padding: clamp(26px, 3.2vw, 42px);
}

.reviews-header {
    grid-column: 1 / -1;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand img {
    width: 104px;
    max-width: 104px;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.26));
}

@media (max-width: 900px) {
    .reviews-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }

    .reviews-panel {
        padding: 22px 18px;
    }

    .footer-brand img {
        width: 86px;
        max-width: 86px;
    }
}

/* MOBILE POLISH FINAL PASS */

section {
    scroll-margin-top: 104px;
}

.contact-service-panel {
    max-width: 760px;
    margin: 0 auto;
}

.contact-service-panel h3 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.contact-service-panel p:not(.contact-service-kicker) {
    max-width: 680px;
}

.contact-service-list span {
    text-align: left;
}

@media (max-width: 768px) {
    section {
        scroll-margin-top: 88px;
    }

    .hero {
        height: auto;
        margin-top: 76px;
        overflow: hidden;
        background: #ffffff;
    }

    .hero-banner-img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center center;
    }

    .about {
        padding: 44px 0;
    }

    .about-grid {
        padding: 0 16px;
    }

    .reviews-panel {
        gap: 16px;
        padding: 20px 16px;
        border-radius: 8px;
    }

    .reviews-header {
        display: grid;
        gap: 10px;
        padding-bottom: 12px;
    }

    .reviews-kicker {
        font-size: 0.68rem;
        letter-spacing: 0.1em;
    }

    .reviews-header h3 {
        font-size: 1.35rem;
    }

    .reviews-rating {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        min-width: 0;
        font-size: 0.95rem;
    }

    .contact {
        padding: 48px 0 58px;
    }

    .contact-grid {
        padding: 0 16px;
    }

    .contact-info {
        padding: 16px;
        gap: 18px;
    }

    .contact-service-panel {
        gap: 16px;
        padding: 18px 16px;
    }

    .contact-service-header {
        display: grid;
        grid-template-columns: 46px 1fr;
        gap: 12px;
    }

    .contact-service-icon {
        width: 46px;
        height: 46px;
        border-radius: 8px;
    }

    .contact-service-panel h3 {
        font-size: 1.55rem;
        line-height: 1.12;
    }

    .contact-service-panel p:not(.contact-service-kicker) {
        font-size: 0.98rem;
        line-height: 1.55;
    }

    .contact-service-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contact-service-list span {
        min-height: 52px;
        justify-content: flex-start;
        padding: 12px;
    }

    .contact-primary-cta {
        min-height: 60px;
        border-radius: 8px;
        font-size: 1rem;
    }

    .contact-secondary-actions {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .contact-secondary-link {
        min-height: 54px;
        padding: 10px;
        font-size: 0.92rem;
    }
}

@media (max-width: 460px) {
    .contact-secondary-actions {
        grid-template-columns: 1fr;
    }
}

/* SEO INTRO STRIP */

.hero-intro {
    padding: clamp(28px, 4vw, 42px) 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(6, 27, 45, 0.08);
}

.hero-intro-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
}

.hero-intro h1 {
    max-width: 760px;
    margin-top: 4px;
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3.15rem);
    line-height: 1.08;
}

.hero-intro p:not(.eyebrow) {
    max-width: 720px;
    margin-top: 12px;
    color: #55728d;
    font-size: 1.08rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .hero-intro {
        padding: 26px 0 32px;
    }

    .hero-intro-inner {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hero-intro h1 {
        font-size: 1.85rem;
    }

    .hero-intro p:not(.eyebrow) {
        font-size: 1rem;
    }

    .hero-intro .cta-button {
        width: 100%;
    }
}


/* Final hero pseudo-element guard */
.hero::before,
.hero::after {
    display: none;
}

/* COHESIVE FINAL PAGE PASS */

:root {
    --section-pad: clamp(64px, 7vw, 104px);
    --card-radius: 8px;
    --soft-border: 1px solid rgba(21, 158, 232, 0.14);
}

body {
    background: #f7fbfd;
}

.services,
.gallery,
.process,
.about,
.contact {
    padding-top: var(--section-pad);
    padding-bottom: var(--section-pad);
}

.section-heading {
    margin-bottom: clamp(28px, 4vw, 44px);
}

.section-heading p,
.eyebrow,
.reviews-kicker,
.contact-service-kicker {
    color: var(--blue-dark);
    letter-spacing: 0.12em;
}

.card,
.gallery-container,
.contact-info,
.contact-service-panel,
.testimonial-card {
    border-radius: var(--card-radius);
}

.hero-intro {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.services {
    background: #ffffff;
}

.gallery {
    background:
        radial-gradient(circle at 50% 0%, rgba(21, 158, 232, 0.12), transparent 36%),
        #f3faff;
}

.process {
    background: #ffffff;
}

.static-reviews {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 1180px;
    gap: 26px;
}

.static-reviews .reviews-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

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

.testimonial-card {
    display: grid;
    align-content: space-between;
    gap: 20px;
    min-height: 250px;
    margin: 0;
    padding: clamp(18px, 2.5vw, 26px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
}

.testimonial-card blockquote {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(0.98rem, 1.2vw, 1.08rem);
    line-height: 1.62;
    font-weight: 700;
}

.testimonial-card figcaption {
    display: grid;
    gap: 4px;
}

.testimonial-card strong {
    color: var(--white);
    font-size: 1rem;
}

.testimonial-card span {
    color: rgba(255, 255, 255, 0.68);
    font-weight: 800;
}

.contact-info {
    border: var(--soft-border);
}

.contact-service-panel {
    border: var(--soft-border);
}

.contact-secondary-link {
    border-radius: var(--card-radius);
}

@media (max-width: 900px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .static-reviews .reviews-header {
        align-items: start;
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: 54px;
    }

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-intro h1,
    .section-heading h2 {
        font-size: clamp(1.85rem, 9vw, 2.45rem);
    }

    .static-reviews {
        padding: 20px 16px;
    }

    .static-reviews .reviews-header {
        display: grid;
        gap: 10px;
        padding-bottom: 14px;
    }

    .reviews-rating {
        justify-items: start;
    }

    .testimonial-card {
        min-height: auto;
        padding: 18px;
    }

    .testimonial-card blockquote {
        font-size: 0.96rem;
        line-height: 1.55;
    }
}

/* STATIC LAUNCH POLISH
   Final overrides for the cleaned, non-interactive review version. */

:root {
    --surface: #ffffff;
    --surface-soft: #f6fbff;
    --ink: #071d30;
    --ink-muted: #58728c;
    --line-soft: rgba(21, 158, 232, 0.16);
    --section-space: clamp(56px, 6.5vw, 92px);
}

body {
    color: var(--ink);
    background: #f7fbfd;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.container {
    width: min(100%, 1240px);
}

header {
    background: rgba(6, 27, 45, 0.98);
}

nav {
    height: 84px;
}

.logo-wrap {
    gap: 12px;
    min-height: 84px;
}

.site-logo {
    width: auto;
    height: 52px;
    max-width: 96px;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.18));
}

.logo-wrap span {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.hero {
    display: block;
    margin-top: 84px;
    padding: 0;
    min-height: 0;
    height: auto;
    overflow: hidden;
    background: #eaf6ff;
    line-height: 0;
}

.hero-banner-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.hero-intro {
    padding: clamp(24px, 3.8vw, 40px) 0;
    background: var(--surface);
    border-bottom: 1px solid rgba(6, 27, 45, 0.08);
}

.hero-intro-inner {
    display: block;
    max-width: 860px;
    text-align: center;
}

.hero-intro h1 {
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.06;
    color: var(--ink);
}

.hero-intro p:not(.eyebrow) {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 10px;
    color: var(--ink-muted);
    font-weight: 700;
    line-height: 1.55;
}

.services,
.gallery,
.process,
.about,
.contact {
    padding: var(--section-space) 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto clamp(30px, 4vw, 46px);
}

.section-heading h2 {
    letter-spacing: 0;
}

.service-cards,
.process-steps,
.testimonial-grid,
.contact-secondary-actions {
    align-items: stretch;
}

.card,
.process-step,
.gallery-shell,
.contact-info,
.contact-service-panel,
.testimonial-card {
    border-radius: 8px;
    border: 1px solid rgba(6, 27, 45, 0.08);
    box-shadow: 0 18px 42px rgba(6, 27, 45, 0.08);
}

.about {
    background:
        linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.about-grid {
    display: block;
    max-width: 1120px;
}

.reviews-panel.static-reviews {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: clamp(24px, 3.2vw, 38px);
    background:
        linear-gradient(135deg, #073252 0%, #0b4974 100%);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: 0 26px 58px rgba(6, 27, 45, 0.18);
}

.static-reviews .reviews-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.reviews-kicker {
    color: #4ec3ff;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
}

.static-reviews .reviews-header h3 {
    margin-top: 6px;
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    line-height: 1.08;
    color: var(--white);
}

.reviews-rating {
    display: grid;
    justify-items: end;
    gap: 2px;
    min-width: 110px;
    color: #ffc928;
    font-weight: 900;
}

.reviews-rating strong {
    color: var(--white);
    font-size: 1.15rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 820px;
    margin: 0 auto;
}

.review-rotator {
    position: relative;
    min-height: 300px;
}

.testimonial-card {
    display: none;
    align-content: space-between;
    gap: 18px;
    min-height: 300px;
    margin: 0;
    padding: clamp(24px, 3vw, 38px);
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    box-shadow: none;
}

.testimonial-card.is-active {
    display: grid;
    animation: reviewFadeIn 0.45s ease both;
}

.testimonial-card blockquote {
    color: #274258;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-weight: 700;
    line-height: 1.55;
}

.testimonial-card figcaption {
    display: grid;
    gap: 3px;
    padding-top: 14px;
    border-top: 1px solid rgba(6, 27, 45, 0.08);
}

.testimonial-card figcaption strong {
    color: var(--ink);
    font-size: 1rem;
}

.testimonial-card figcaption span {
    color: var(--ink-muted);
    font-weight: 800;
    font-size: 0.92rem;
}

@keyframes reviewFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact {
    background:
        radial-gradient(circle at 50% 0%, rgba(21, 158, 232, 0.12), transparent 34%),
        #f6fbff;
}

.contact-grid {
    display: block;
    max-width: 920px;
    min-height: 0;
}

.contact-info {
    display: grid;
    gap: 22px;
    padding: clamp(22px, 3vw, 34px);
    background: rgba(255, 255, 255, 0.96);
    border-color: var(--line-soft);
}

.contact-service-panel {
    max-width: none;
    margin: 0;
    padding: clamp(22px, 3vw, 32px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 248, 255, 0.96));
    box-shadow: none;
}

.contact-service-header {
    align-items: flex-start;
}

.contact-service-panel h3 {
    max-width: 560px;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    letter-spacing: 0;
}

.contact-service-panel p:not(.contact-service-kicker) {
    max-width: 720px;
    color: var(--ink-muted);
    font-size: 1.02rem;
    line-height: 1.58;
}

.contact-service-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-service-list span {
    min-height: 58px;
    border-radius: 8px;
    background: #ffffff;
}

.contact-primary-cta {
    border-radius: 999px;
}

.contact-secondary-link {
    min-height: 58px;
    border-radius: 8px;
}

.site-footer {
    padding: 48px 20px 32px;
}

.footer-brand img {
    width: auto;
    height: 72px;
    max-width: 128px;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.24));
}

@media (max-width: 1020px) {
    .service-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 768px) {
    nav {
        height: 76px;
        padding: 0 20px;
    }

    .logo-wrap {
        min-height: 76px;
        gap: 10px;
    }

    .site-logo {
        height: 46px;
        max-width: 82px;
    }

    .logo-wrap span {
        font-size: clamp(0.9rem, 4vw, 1rem);
        line-height: 1.15;
    }

    .hero {
        margin-top: 76px;
    }

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .service-cards,
    .contact-secondary-actions,
    .contact-service-list {
        grid-template-columns: 1fr;
    }

    .static-reviews .reviews-header {
        display: grid;
        align-items: start;
        gap: 10px;
    }

    .reviews-rating {
        justify-items: start;
    }

    .testimonial-card {
        min-height: auto;
        padding: 22px 18px;
    }

    .review-rotator {
        min-height: 330px;
    }

    .contact-grid {
        padding-left: 18px;
        padding-right: 18px;
    }

    .contact-service-header {
        display: grid;
        grid-template-columns: 46px 1fr;
        gap: 12px;
    }

    .contact-service-icon {
        width: 46px;
        height: 46px;
    }

    .contact-primary-cta {
        width: 100%;
    }

    .footer-brand img {
        height: 62px;
        max-width: 112px;
    }
}

@media (max-width: 480px) {
    .hero-intro h1,
    .section-heading h2 {
        font-size: clamp(1.8rem, 10vw, 2.3rem);
    }

    .reviews-panel.static-reviews,
    .contact-info {
        padding: 18px 14px;
    }
}

/* TWO-UP REVIEWS + CONTACT REDESIGN */

.reviews-panel.static-reviews {
    max-width: 1120px;
    padding: clamp(24px, 3vw, 34px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 249, 255, 0.96));
    color: var(--ink);
    border: 1px solid rgba(21, 158, 232, 0.18);
    box-shadow: 0 24px 54px rgba(6, 27, 45, 0.1);
}

.static-reviews .reviews-header {
    border-bottom: 1px solid rgba(6, 27, 45, 0.08);
}

.static-reviews .reviews-header h3 {
    color: var(--ink);
}

.reviews-rating strong {
    color: var(--ink);
}

.two-up-rotator {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: none;
    min-height: 250px;
}

.two-up-rotator .testimonial-card {
    display: none;
    min-height: 250px;
    padding: clamp(22px, 2.4vw, 30px);
    background: #ffffff;
    border: 1px solid rgba(21, 158, 232, 0.14);
    box-shadow: 0 14px 34px rgba(6, 27, 45, 0.08);
}

.two-up-rotator .testimonial-card.is-active {
    display: grid;
}

.two-up-rotator .testimonial-card blockquote {
    font-size: clamp(1rem, 1.35vw, 1.16rem);
    line-height: 1.62;
}

.contact-info {
    max-width: 980px;
    padding: clamp(22px, 3vw, 34px);
}

.contact-service-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.75fr);
    gap: clamp(20px, 3vw, 34px);
    align-items: center;
    padding: clamp(24px, 3vw, 34px);
    background: #ffffff;
    border: 1px solid rgba(21, 158, 232, 0.16);
}

.contact-service-header {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.contact-service-panel > p {
    grid-column: 1;
    margin-left: 72px;
}

.contact-service-list {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.contact-service-list span {
    min-height: 64px;
    padding: 14px 16px;
    background: #f6fbff;
    border: 1px solid rgba(21, 158, 232, 0.14);
    box-shadow: none;
}

@media (max-width: 900px) {
    .two-up-rotator,
    .contact-service-panel {
        grid-template-columns: 1fr;
    }

    .contact-service-panel > p {
        margin-left: 0;
    }

    .contact-service-list {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .reviews-panel.static-reviews {
        padding: 20px 16px;
    }

    .two-up-rotator {
        min-height: 0;
    }

    .two-up-rotator .testimonial-card {
        min-height: auto;
    }
}

/* PAGE BACKGROUND CONSISTENCY PASS */
body {
    background: #f7fbfd;
}

.hero-intro,
.services,
.process,
.gallery,
.about,
.contact {
    background: #f7fbfd;
}

.hero-intro,
.services,
.process,
.gallery,
.about {
    border-bottom: 1px solid rgba(6, 27, 45, 0.06);
}

.contact::before,
.contact::after {
    display: none;
}

.services .card,
.process-step,
.gallery-shell,
.reviews-panel.static-reviews,
.contact-info {
    background: #ffffff;
}

.gallery,
.about,
.contact {
    overflow: hidden;
}

/* SHORT HERO BANNER PASS */
:root {
    --hero-image: url("images/hero-banner-wide.jpeg");
}

.hero {
    height: auto;
    margin-top: 84px;
    background: #eaf6ff;
    line-height: 0;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
}

@media (min-width: 1500px) {
    .hero {
        max-height: 620px;
    }
}

@media (max-width: 768px) {
    .hero {
        margin-top: 76px;
    }

    .hero-banner-img {
        object-position: center center;
    }
}

/* HERO CROP FIX */
#home {
    scroll-margin-top: 96px;
}

.hero {
    display: block;
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: visible;
    background: #eaf6ff;
}

.hero-banner-img {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
    aspect-ratio: 1717 / 540;
    object-fit: contain;
    object-position: center center;
}

.hero-banner-picture {
    display: block;
    width: 100%;
    line-height: 0;
}

.services {
    padding-top: clamp(56px, 6vw, 82px);
}

@media (max-width: 768px) {
    #home {
        scroll-margin-top: 84px;
    }

    .hero {
        background: #eef8ff;
    }

    .hero-banner-img {
        aspect-ratio: 1920 / 720;
        object-fit: contain;
        object-position: center center;
    }
}

/* REVIEW MESSAGE BUBBLE PASS */
.reviews-panel.static-reviews {
    max-width: 1120px;
    padding: clamp(8px, 2vw, 18px);
    background: transparent;
    border: 0;
    box-shadow: none;
}

.static-reviews .reviews-header {
    margin-bottom: clamp(18px, 3vw, 28px);
    padding: 0;
    border-bottom: 0;
}

.static-reviews .reviews-header h3 {
    color: var(--ink);
}

.static-reviews .reviews-kicker {
    color: var(--blue);
}

.reviews-rating strong {
    color: var(--ink);
}

.two-up-rotator {
    gap: clamp(18px, 3vw, 28px);
    min-height: 0;
}

.two-up-rotator .testimonial-card {
    position: relative;
    min-height: 0;
    padding: clamp(22px, 2.8vw, 32px);
    background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
    border: 1px solid rgba(21, 158, 232, 0.14);
    border-radius: 28px 28px 28px 10px;
    box-shadow: 0 18px 42px rgba(6, 27, 45, 0.09);
}

.two-up-rotator .testimonial-card:nth-child(even) {
    border-radius: 28px 28px 10px 28px;
}

.two-up-rotator .testimonial-card::after {
    content: "";
    position: absolute;
    left: 26px;
    bottom: -11px;
    width: 22px;
    height: 22px;
    background: #f5fbff;
    border-right: 1px solid rgba(21, 158, 232, 0.14);
    border-bottom: 1px solid rgba(21, 158, 232, 0.14);
    transform: rotate(45deg);
    box-shadow: 10px 10px 20px rgba(6, 27, 45, 0.04);
}

.two-up-rotator .testimonial-card:nth-child(even)::after {
    right: 26px;
    left: auto;
}

.two-up-rotator .testimonial-card blockquote {
    max-width: 60ch;
    color: #214765;
    font-size: clamp(0.98rem, 1.2vw, 1.12rem);
    line-height: 1.58;
    font-weight: 700;
}

.two-up-rotator .testimonial-card figcaption {
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid rgba(6, 27, 45, 0.08);
}

.two-up-rotator .testimonial-card figcaption strong {
    color: var(--ink);
}

.two-up-rotator .testimonial-card figcaption span {
    color: #55728d;
}

@media (max-width: 900px) {
    .static-reviews .reviews-header {
        display: grid;
        gap: 10px;
    }

    .reviews-rating {
        justify-items: start;
    }

    .two-up-rotator {
        grid-template-columns: 1fr;
    }

    .two-up-rotator .testimonial-card,
    .two-up-rotator .testimonial-card:nth-child(even) {
        border-radius: 24px 24px 24px 10px;
    }

    .two-up-rotator .testimonial-card:nth-child(even)::after {
        right: auto;
        left: 26px;
    }
}

/* REVIEW / CONTACT BACKGROUND BLEND */
.about {
    padding-bottom: clamp(72px, 9vw, 132px);
    background:
        radial-gradient(circle at 50% 18%, rgba(21, 158, 232, 0.08), transparent 36%),
        linear-gradient(180deg, #eef8ff 0%, #f5fbff 72%, #f7fbfd 100%);
    border-bottom: 0;
}

.about::after {
    content: "";
    display: block;
    height: clamp(28px, 5vw, 70px);
    margin-bottom: calc(clamp(28px, 5vw, 70px) * -1);
    background: linear-gradient(180deg, rgba(247, 251, 253, 0), #f7fbfd);
    pointer-events: none;
}

.contact {
    background:
        radial-gradient(circle at 50% 0%, rgba(21, 158, 232, 0.07), transparent 34%),
        #f7fbfd;
}

.reviews-panel.static-reviews {
    position: relative;
    z-index: 1;
}

/* PAGE-WIDE BLENDING PASS */
html {
    scroll-behavior: smooth;
    background: #f7fbfd;
}

body {
    background:
        radial-gradient(circle at 18% 18%, rgba(21, 158, 232, 0.08), transparent 30rem),
        radial-gradient(circle at 84% 46%, rgba(21, 158, 232, 0.07), transparent 34rem),
        linear-gradient(180deg, #ffffff 0%, #f6fbff 26%, #f7fbfd 58%, #f5fbff 100%);
}

.services,
.process,
.gallery,
.about,
.contact {
    position: relative;
    border-bottom: 0 !important;
    background: transparent !important;
}

.services::after,
.process::after,
.gallery::after,
.about::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: clamp(70px, 9vw, 130px);
    background: linear-gradient(180deg, rgba(247, 251, 253, 0), rgba(247, 251, 253, 0.92));
    pointer-events: none;
    z-index: 0;
}

.services > .container,
.process > .container,
.gallery > .container,
.about > .container,
.contact > .container {
    position: relative;
    z-index: 1;
}

.services {
    padding-bottom: clamp(58px, 6vw, 86px);
}

.process,
.gallery,
.about {
    padding-top: clamp(58px, 6vw, 88px);
    padding-bottom: clamp(58px, 6vw, 88px);
}

.contact {
    padding-top: clamp(58px, 6vw, 88px);
    padding-bottom: clamp(72px, 7vw, 110px);
    background:
        radial-gradient(circle at 50% 0%, rgba(21, 158, 232, 0.07), transparent 36rem) !important;
}

.reviews-panel.static-reviews {
    background: transparent !important;
}

.contact-info {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 254, 255, 0.96)) !important;
}

@media (max-width: 768px) {
    .services,
    .process,
    .gallery,
    .about,
    .contact {
        padding-top: 52px;
        padding-bottom: 58px;
    }

    .services::after,
    .process::after,
    .gallery::after,
    .about::after {
        height: 74px;
    }
}

/* CONTACT TRUST AREA FINAL PASS */
.section-anchor {
    display: block;
    height: 1px;
    margin-top: -1px;
    scroll-margin-top: 96px;
}

.contact-grid {
    max-width: 1180px;
}

.contact-info {
    max-width: 1180px;
    gap: clamp(22px, 3vw, 34px);
    padding: clamp(22px, 3vw, 34px) !important;
    border: 1px solid rgba(21, 158, 232, 0.13);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 253, 255, 0.96)) !important;
    box-shadow: 0 26px 70px rgba(6, 27, 45, 0.12);
}

.contact-reviews {
    width: 100%;
    max-width: none;
    padding: clamp(8px, 1.6vw, 14px) !important;
}

.contact-reviews .reviews-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: clamp(18px, 2.4vw, 26px);
}

.contact-reviews .reviews-header h3 {
    max-width: 700px;
    font-size: clamp(1.7rem, 3vw, 2.65rem);
    line-height: 1.08;
}

.contact-reviews .reviews-rating {
    align-self: flex-start;
    padding: 12px 14px;
    border: 1px solid rgba(21, 158, 232, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.62);
}

.contact-reviews .two-up-rotator {
    gap: clamp(16px, 2.2vw, 24px);
}

.contact-reviews .testimonial-card {
    background:
        linear-gradient(180deg, #ffffff 0%, #f7fcff 100%);
}

.contact-actions {
    display: grid;
    gap: clamp(16px, 2vw, 20px);
    padding-top: 0;
}

.contact-primary-cta {
    max-width: none;
    min-height: 74px;
    border-radius: 999px;
}

.contact-secondary-actions {
    gap: clamp(12px, 1.8vw, 18px);
}

.contact-secondary-link {
    min-height: 68px;
    border-radius: 8px;
}

@media (max-width: 900px) {
    .contact-reviews .reviews-header {
        display: grid;
    }

    .contact-reviews .reviews-rating {
        justify-self: start;
    }
}

@media (max-width: 768px) {
    .section-anchor {
        scroll-margin-top: 84px;
    }

    .contact-info {
        padding: 18px 14px !important;
    }

    .contact-reviews .reviews-header h3 {
        font-size: clamp(1.45rem, 7vw, 2rem);
    }

    .contact-primary-cta {
        min-height: 68px;
    }
}

/* CONTACT OPEN LAYOUT PASS */
.contact {
    background:
        radial-gradient(circle at 50% 8%, rgba(21, 158, 232, 0.12), transparent 34rem),
        linear-gradient(180deg, rgba(247, 251, 253, 0) 0%, rgba(238, 248, 255, 0.72) 52%, rgba(247, 251, 253, 0) 100%) !important;
}

.contact-grid {
    max-width: 1160px;
}

.contact-info {
    max-width: 1160px;
    padding: 0 !important;
    border: 0;
    background: transparent !important;
    box-shadow: none;
}

.contact-reviews {
    padding: 0 !important;
    background: transparent !important;
    border: 0;
    box-shadow: none;
}

.contact-reviews .reviews-header {
    margin-bottom: clamp(24px, 3vw, 36px);
    padding: 0;
}

.contact-reviews .reviews-header h3 {
    max-width: 760px;
}

.contact-reviews .reviews-rating {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.contact-reviews .two-up-rotator {
    gap: clamp(22px, 3vw, 34px);
}

.contact-reviews .testimonial-card {
    border: 1px solid rgba(21, 158, 232, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 252, 255, 0.9));
    box-shadow: 0 22px 48px rgba(6, 27, 45, 0.1);
}

.contact-actions {
    max-width: 1060px;
    margin: clamp(32px, 4vw, 48px) auto 0;
}

.contact-primary-cta {
    box-shadow: 0 18px 42px rgba(37, 211, 102, 0.26);
}

.contact-secondary-actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-secondary-link {
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 28px rgba(6, 27, 45, 0.08);
}

@media (max-width: 900px) {
    .contact-secondary-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .contact {
        background:
            radial-gradient(circle at 50% 8%, rgba(21, 158, 232, 0.12), transparent 24rem),
            #f7fbfd !important;
    }

    .contact-info {
        padding: 0 !important;
    }

    .contact-actions {
        margin-top: 28px;
    }
}

@media (max-width: 520px) {
    .contact-secondary-actions {
        grid-template-columns: 1fr;
    }
}

/* FINAL MOBILE RESPONSIVE PASS */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

.contact-secondary-link,
.contact-primary-cta,
.nav-cta,
.gallery-cta-button {
    border-radius: 18px;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 0 !important;
    }

    .mobile-call-bar {
        display: none !important;
    }

    header {
        position: sticky !important;
        top: 0;
        z-index: 1000;
    }

    nav {
        min-height: 88px !important;
        height: 88px !important;
        padding: 10px 18px !important;
        align-items: center !important;
    }

    .logo-wrap {
        gap: 10px !important;
        min-width: 0;
    }

    .site-logo {
        width: 72px !important;
        max-width: 72px !important;
        height: auto !important;
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .logo-wrap span {
        max-width: 190px;
        font-size: clamp(1rem, 4.2vw, 1.32rem) !important;
        line-height: 1.1 !important;
        white-space: normal !important;
    }

    .hamburger {
        display: inline-flex !important;
        width: 46px !important;
        height: 46px !important;
        align-items: center;
        justify-content: center;
        font-size: 1.85rem !important;
    }

    .nav-cta {
        display: none !important;
    }

    .nav-links {
        top: 88px !important;
        max-height: calc(100vh - 88px);
        overflow-y: auto;
    }

    .hero {
        min-height: 0 !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #eef8ff !important;
        overflow: hidden !important;
    }

    .hero-banner-picture {
        display: block !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        background: #c9eaff !important;
        overflow: hidden !important;
    }

    .hero-banner-img {
        display: block !important;
        width: 100% !important;
        max-width: none !important;
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: auto !important;
        object-fit: contain !important;
        object-position: center top !important;
        opacity: 1 !important;
        filter: none !important;
    }

    section,
    .services,
    .process,
    .gallery,
    .contact {
        padding-top: 44px !important;
        padding-bottom: 48px !important;
    }

    .container {
        width: min(100% - 32px, 1120px) !important;
    }

    .section-heading {
        margin-bottom: 28px !important;
    }

    .section-heading p,
    .eyebrow,
    .reviews-kicker {
        font-size: 0.78rem !important;
        letter-spacing: 0.16em !important;
    }

    .section-heading h2,
    .process-intro h2,
    .reviews-header h3 {
        font-size: clamp(2.15rem, 10vw, 3.1rem) !important;
        line-height: 1.04 !important;
    }

    .service-cards {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .card {
        min-height: 0 !important;
        padding: 26px 20px !important;
        border-radius: 18px !important;
        text-align: center !important;
        box-shadow: 0 14px 34px rgba(2, 28, 47, 0.08) !important;
    }

    .card i {
        font-size: 2.45rem !important;
        margin-bottom: 16px !important;
    }

    .card h3 {
        font-size: 1.35rem !important;
        line-height: 1.25 !important;
    }

    .card p {
        font-size: 1rem !important;
        line-height: 1.55 !important;
    }

    .process-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .process-intro {
        max-width: 100% !important;
    }

    .process-intro p:not(.eyebrow) {
        font-size: 1.02rem !important;
        line-height: 1.65 !important;
    }

    .process-steps {
        gap: 14px !important;
    }

    .process-step {
        padding: 18px !important;
        gap: 14px !important;
        border-radius: 16px !important;
    }

    .process-step span {
        width: 52px !important;
        height: 52px !important;
        flex: 0 0 52px !important;
        border-radius: 12px !important;
    }

    .gallery-lead,
    .gallery-note {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }

    .gallery-slideshow {
        padding: 14px !important;
        border-radius: 18px !important;
    }

    .gallery-main-comparison,
    .project-image-pair {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .project-image-frame,
    .gallery-main-image {
        border-radius: 14px !important;
        overflow: hidden !important;
    }

    .contact {
        margin: 0 !important;
        background:
            radial-gradient(circle at 50% 0%, rgba(191, 229, 255, 0.68), transparent 44%),
            linear-gradient(180deg, #f8fcff 0%, #eef8ff 42%, #f8fcff 100%) !important;
    }

    .contact-grid,
    .contact-info {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 26px !important;
    }

    .contact-reviews {
        padding: 0 !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    .contact-reviews .reviews-header {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        margin-bottom: 22px !important;
    }

    .contact-reviews .reviews-rating {
        justify-self: start !important;
        min-width: 0 !important;
    }

    .contact-reviews .two-up-rotator {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        max-width: none !important;
    }

    .contact-reviews .testimonial-card,
    .contact-reviews .testimonial-card:nth-child(even) {
        width: 100% !important;
        min-height: 0 !important;
        padding: 22px 18px !important;
        border-radius: 18px !important;
        justify-self: stretch !important;
        transform: none !important;
    }

    .contact-reviews .testimonial-card::after {
        width: 26px !important;
        height: 26px !important;
        bottom: -10px !important;
        left: 22px !important;
    }

    .contact-reviews .testimonial-card:nth-child(even)::after {
        right: 22px !important;
        left: auto !important;
    }

    .contact-reviews .testimonial-card blockquote {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }

    .contact-actions {
        width: 100% !important;
        max-width: 460px !important;
        margin: 8px auto 0 !important;
        padding: 0 !important;
        border-left: 0 !important;
        background: transparent !important;
    }

    .contact-primary-cta {
        width: 100% !important;
        max-width: none !important;
        min-height: 58px !important;
        border-radius: 999px !important;
        font-size: 1rem !important;
    }

    .contact-secondary-actions {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-top: 14px !important;
    }

    .contact-secondary-link {
        min-height: 56px !important;
        padding: 12px 16px !important;
        border-radius: 16px !important;
        justify-content: flex-start !important;
    }

    .site-footer {
        padding-top: 42px !important;
        padding-bottom: 34px !important;
    }

    .footer-inner,
    .footer-links,
    .footer-actions {
        gap: 16px !important;
    }

    .footer-brand img {
        width: 92px !important;
        max-width: 92px !important;
        height: auto !important;
    }
}

@media (max-width: 430px) {
    nav {
        min-height: 78px !important;
        height: 78px !important;
        padding: 8px 14px !important;
    }

    .site-logo {
        width: 62px !important;
        max-width: 62px !important;
    }

    .logo-wrap span {
        max-width: 160px;
        font-size: 1.02rem !important;
    }

    .hamburger {
        width: 42px !important;
        height: 42px !important;
        font-size: 1.65rem !important;
    }

    .nav-links {
        top: 78px !important;
    }

    .container {
        width: min(100% - 24px, 1120px) !important;
    }

    .section-heading h2,
    .process-intro h2,
    .reviews-header h3 {
        font-size: clamp(2rem, 10.5vw, 2.6rem) !important;
    }

    .card {
        padding: 24px 16px !important;
    }

    .contact-reviews .testimonial-card blockquote {
        font-size: 0.96rem !important;
    }

    .contact-secondary-link span,
    .contact-primary-cta span {
        font-size: 0.96rem !important;
    }
}

/* Final hero/contact polish */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-banner-picture {
    position: relative;
    z-index: 0;
}

.hero::before {
    content: "";
    display: block !important;
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 13% 18%, rgba(248, 252, 255, 0.82) 0%, rgba(248, 252, 255, 0.62) 23%, rgba(248, 252, 255, 0.24) 40%, rgba(248, 252, 255, 0) 58%),
        linear-gradient(90deg, rgba(248, 252, 255, 0.38) 0%, rgba(248, 252, 255, 0.24) 28%, rgba(248, 252, 255, 0) 48%);
}

.contact-primary-cta,
.contact-secondary-link {
    border-radius: 999px !important;
}

/* Keep the hero crisp while only lightly reducing left-side clutter */
.hero::before {
    background:
        radial-gradient(ellipse at 9% 15%, rgba(248, 252, 255, 0.34) 0%, rgba(248, 252, 255, 0.18) 28%, rgba(248, 252, 255, 0) 52%),
        linear-gradient(90deg, rgba(248, 252, 255, 0.16) 0%, rgba(248, 252, 255, 0.06) 28%, rgba(248, 252, 255, 0) 48%);
}

@media (max-width: 768px) {
    .hero::before {
        display: none !important;
    }
}

.hero::before {
    display: none !important;
}

/* FINAL: REVIEW + CONTACT POLISH */
.contact {
    padding-top: clamp(34px, 4.5vw, 58px) !important;
    padding-bottom: clamp(46px, 5vw, 76px) !important;
    background:
        radial-gradient(circle at 50% 10%, rgba(21, 158, 232, 0.1), transparent 34rem),
        linear-gradient(180deg, #f7fbfd 0%, #eef8fc 48%, #f7fbfd 100%) !important;
}

.contact .contact-grid {
    max-width: 1080px !important;
}

.contact-info {
    max-width: 980px !important;
    gap: clamp(22px, 3vw, 34px) !important;
}

.contact-reviews {
    max-width: 980px;
    margin: 0 auto;
}

.contact-reviews .reviews-header {
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: end !important;
    gap: 24px;
    margin-bottom: clamp(22px, 3vw, 34px) !important;
}

.contact-reviews .reviews-header h3 {
    max-width: 580px !important;
    font-size: clamp(2rem, 4vw, 3.35rem) !important;
}

.contact-reviews .reviews-rating {
    align-self: end;
    justify-self: end;
    min-width: 82px !important;
    text-align: center;
    margin-bottom: 8px;
}

.contact-reviews .two-up-rotator {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: clamp(18px, 2.2vw, 28px) !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

.contact-reviews .testimonial-card {
    min-height: 236px !important;
    padding: clamp(24px, 2.7vw, 34px) !important;
    border-radius: 18px 28px 28px 18px !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 253, 255, 0.92)) !important;
    box-shadow: 0 18px 42px rgba(6, 27, 45, 0.1) !important;
}

.contact-reviews .testimonial-card.is-active {
    transform: none !important;
}

.contact-reviews .testimonial-card:nth-child(even) {
    border-radius: 28px 18px 18px 28px !important;
}

.contact-reviews .testimonial-card blockquote {
    font-size: clamp(1rem, 1.2vw, 1.13rem) !important;
    line-height: 1.55 !important;
}

.contact-actions {
    max-width: 900px !important;
    display: grid !important;
    gap: 18px !important;
}

.contact-primary-cta {
    max-width: 580px !important;
    min-height: 58px !important;
}

.contact-secondary-actions {
    max-width: 900px !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

.contact-secondary-link {
    min-height: 54px !important;
    padding: 10px 14px !important;
    border-radius: 6px !important;
}

@media (max-width: 900px) {
    .contact-reviews .reviews-header {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .contact-reviews .reviews-header h3 {
        max-width: 680px !important;
        margin-right: auto;
        margin-left: auto;
    }

    .contact-reviews .reviews-rating {
        justify-self: center;
        margin-bottom: 0;
    }

    .contact-reviews .two-up-rotator {
        grid-template-columns: 1fr !important;
        max-width: 640px !important;
    }

    .contact-secondary-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 560px) {
    .contact-secondary-actions {
        grid-template-columns: 1fr !important;
    }

    .contact-primary-cta,
    .contact-secondary-link {
        width: 100%;
    }
}

/* REVIEW ROTATOR MOTION */
.contact-reviews .testimonial-card.is-active {
    animation: reviewBubbleIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.contact-reviews .testimonial-card.is-exiting {
    display: grid;
    pointer-events: none;
    animation: reviewBubbleOut 0.36s ease both;
}

@keyframes reviewBubbleIn {
    from {
        opacity: 0;
        filter: blur(3px);
    }

    to {
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes reviewBubbleOut {
    from {
        opacity: 1;
        filter: blur(0);
    }

    to {
        opacity: 0;
        filter: blur(3px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-reviews .testimonial-card.is-active,
    .contact-reviews .testimonial-card.is-exiting {
        animation: none;
    }
}

/* FINAL: CONTACT LINKS UNDER REVIEWS */
.contact-info {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: clamp(28px, 4vw, 46px) !important;
    max-width: 1120px;
    margin: 0 auto;
}

.contact-reviews {
    width: 100%;
}

.contact-reviews .two-up-rotator {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: none !important;
}

.contact-reviews .testimonial-card,
.contact-reviews .testimonial-card:nth-child(even) {
    width: auto !important;
    justify-self: stretch !important;
}

.contact-actions {
    width: 100%;
    max-width: 1120px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    border-left: 0 !important;
    background: transparent !important;
    justify-self: stretch !important;
}

.contact-primary-cta {
    width: min(100%, 720px);
    max-width: 720px !important;
    margin: 0 auto !important;
}

.contact-secondary-actions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

.contact-secondary-link {
    justify-content: center !important;
}

@media (max-width: 980px) {
    .contact-reviews .two-up-rotator {
        grid-template-columns: 1fr !important;
    }

    .contact-secondary-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 520px) {
    .contact-secondary-actions {
        grid-template-columns: 1fr !important;
    }
}

/* CONTACT ACTIONS BELOW REVIEWS */
.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 1120px;
    gap: clamp(28px, 3.6vw, 44px);
}

.contact-reviews .two-up-rotator {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
}

.contact-reviews .testimonial-card:nth-child(even) {
    justify-self: stretch;
    width: auto;
}

.contact-actions {
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    border-left: 0;
    background: transparent;
}

.contact-primary-cta {
    max-width: 720px;
    margin: 0 auto;
}

.contact-secondary-actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 1120px;
    margin: 0 auto;
}

.contact-secondary-link {
    justify-content: center;
}

@media (max-width: 980px) {
    .contact-reviews .two-up-rotator {
        grid-template-columns: 1fr;
    }

    .contact-secondary-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .contact-secondary-actions {
        grid-template-columns: 1fr;
    }
}

/* CONTACT TRUST COMPOSITION FIX */
.contact {
    padding-top: clamp(42px, 5vw, 72px);
    padding-bottom: clamp(58px, 6vw, 92px);
    overflow: visible;
}

.contact-info {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.72fr);
    align-items: center;
    gap: clamp(28px, 4vw, 54px);
}

.contact-reviews {
    overflow: visible;
}

.contact-reviews .reviews-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    margin-bottom: clamp(18px, 2.4vw, 28px);
}

.contact-reviews .reviews-header h3 {
    max-width: 620px;
    font-size: clamp(1.85rem, 3.4vw, 3rem);
    line-height: 1.04;
}

.contact-reviews .reviews-rating {
    min-width: 86px;
    padding-top: 6px;
}

.contact-reviews .two-up-rotator {
    grid-template-columns: 1fr;
    max-width: 650px;
    overflow: visible;
}

.contact-reviews .testimonial-card {
    min-height: 0;
    padding: clamp(24px, 3vw, 34px);
}

.contact-reviews .testimonial-card:nth-child(even) {
    justify-self: end;
    width: min(100%, 610px);
}

.contact-actions {
    width: 100%;
    max-width: 360px;
    margin: 0;
    justify-self: stretch;
    align-self: center;
    padding: clamp(20px, 2.6vw, 30px);
    border-left: 1px solid rgba(21, 158, 232, 0.15);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.42));
}

.contact-primary-cta {
    min-height: 68px;
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
}

.contact-secondary-actions {
    grid-template-columns: 1fr;
}

.contact-secondary-link {
    min-height: 62px;
    justify-content: flex-start;
    padding: 12px 16px;
}

@media (min-width: 1100px) {
    .contact-reviews .testimonial-card:nth-child(odd).is-active {
        transform: translateX(18px);
    }

    .contact-reviews .testimonial-card:nth-child(even).is-active {
        transform: translateX(-18px);
    }
}

@media (max-width: 980px) {
    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-actions {
        max-width: none;
        padding: 0;
        border-left: 0;
        background: transparent;
    }

    .contact-secondary-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .contact {
        padding-top: 42px;
    }

    .contact-reviews .reviews-header {
        grid-template-columns: 1fr;
    }

    .contact-reviews .two-up-rotator {
        max-width: none;
    }

    .contact-reviews .testimonial-card:nth-child(even) {
        justify-self: stretch;
        width: auto;
    }
}

@media (max-width: 520px) {
    .contact-secondary-actions {
        grid-template-columns: 1fr;
    }
}
