:root {
    --blue: #005cac;
    --yellow: #f9a918;
    --green: #79ce13;
    --light-bg: #eaf2f5;
    --text: #505b66;
    --dark: #211d1e;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    background: var(--light-bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.35;
    overflow-x: hidden;
}

body.modal-open {
    padding-right: 0 !important;
}

.modal-open .site-header,
.modal-open .floating-whatsapp,
.modal-open .floating-top {
    padding-right: 0 !important;
}

.modal {
    overflow-x: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.modal-dialog {
    margin-left: auto;
    margin-right: auto;
}

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

a {
    text-decoration: none;
}

.top-line {
    height: 8px;
    background: var(--blue);
}

.site-header {
    background: #f7f7f7;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}

.navbar {
    min-height: 48px;
    padding: 0;
}

.nav-brand-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 12px;
    align-items: center;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 4px 0;
}

.navbar-brand img {
    width: 74px;
}

.nav-estimate-cta {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    padding: 7px 16px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(130, 198, 37, 0.24);
}

.nav-estimate-cta:hover {
    color: #fff;
    transform: translateY(-1px);
}

.social-links {
    gap: 15px;
}

.social-links a {
    color: #6b6b6b;
    font-size: 18px;
}

.navbar-nav {
    gap: 4px;
}

.nav-link {
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
    padding: 18px 12px;
    text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
    color: var(--yellow);
}

.container-narrow {
    width: min(100% - 32px, 990px);
    margin-inline: auto;
}

.hero-section {
    position: relative;
    display: grid;
    grid-template-columns: 29.2% 70.8%;
    min-height: 650px;
    margin-top: 56px;
    background: #fff;
    overflow: hidden;
}

.hero-logo-panel {
    display: grid;
    place-items: center;
    padding: 40px;
    background:
        linear-gradient(135deg, rgba(230, 230, 230, 0.55) 25%, transparent 25%) -20px 0 / 80px 80px,
        linear-gradient(225deg, rgba(230, 230, 230, 0.55) 25%, transparent 25%) -20px 0 / 80px 80px,
        #f7f7f7;
}

.hero-logo {
    width: min(72%, 270px);
}

.hero-image {
    position: relative;
    min-height: 650px;
    background: #0b5571;
}

.hero-image img,
.image-slot img,
.service-image img,
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-copy {
    position: absolute;
    top: 13%;
    left: 7.5%;
    max-width: 560px;
    color: #fff;
}

.hero-copy h1 {
    margin: 0;
    color: var(--yellow);
    font-size: clamp(30px, 3.35vw, 48px);
    font-weight: 300;
    line-height: 1;
}

.hero-title-line {
    display: block;
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.65s ease,
        transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-title-accent {
    color: var(--yellow);
    font-weight: 800;
}

.hero-copy.is-in-view .hero-title-line {
    opacity: 1;
    transform: translateY(0);
}

.hero-copy.is-in-view .hero-title-line:nth-child(2) {
    transition-delay: 0.14s;
}

.hero-copy.is-in-view .hero-title-line:nth-child(3) {
    transition-delay: 0.28s;
}

.scroll-animate {
    opacity: 0;
    transform: translateY(54px);
    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.scroll-animate.from-left {
    transform: translateX(-54px);
}

.scroll-animate.from-right {
    transform: translateX(54px);
}

.scroll-animate.zoom-in {
    transform: scale(0.94);
}

.scroll-animate.is-in-view {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.scroll-animate.animate-delay-1 {
    transition-delay: 0.08s;
}

.scroll-animate.animate-delay-2 {
    transition-delay: 0.16s;
}

.scroll-animate.animate-delay-3 {
    transition-delay: 0.24s;
}

.scroll-animate.animate-delay-4 {
    transition-delay: 0.32s;
}

.estimate-ribbon {
    position: absolute;
    right: 0;
    bottom: -1px;
    z-index: 5;
    min-width: 430px;
    padding: 16px 48px;
    border-radius: 32px 0 0 32px;
    background: var(--green);
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    text-align: center;
}

.estimate-ribbon.is-sticky {
    position: fixed;
    top: var(--sticky-top, 56px);
    right: 0;
    bottom: auto;
    z-index: 1040;
}

.page-section {
    padding: 70px 0 0;
}

.about-section {
    padding-top: 135px;
}

.image-slot,
.service-card,
.gallery-item {
    overflow: hidden;
    border-radius: 18px;
}

.rounded-image {
    height: 320px;
}

.section-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 225px;
    min-height: 43px;
    margin: 0 0 30px;
    border-radius: 999px;
    background: var(--yellow);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
}

.copy-block {
    max-width: 455px;
    font-size: 16px;
    font-weight: 600;
    text-align: justify;
}

.copy-block p {
    margin-bottom: 22px;
}

.why-section {
    padding-top: 74px;
}

.why-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.why-card {
    display: flex;
    width: calc((100% - 60px) / 4);
    min-width: 210px;
    min-height: 190px;
    padding: 34px 30px 28px;
    border: 1px solid #e6edf1;
    border-radius: 8px;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0, 73, 148, 0.03);
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.why-card i {
    margin-bottom: 26px;
    color: var(--blue);
    font-size: 46px;
    line-height: 1;
    transition: color 0.2s ease;
}

.why-card h3 {
    max-width: 170px;
    margin: 0 0 10px;
    color: #1e1e22;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.12;
    transition: color 0.2s ease;
}

.why-card p {
    margin: 0;
    color: #8c98a2;
    font-size: 13px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.why-card:hover,
.why-card:focus-within {
    border-color: var(--blue);
    background: var(--blue);
    transform: translateY(-4px);
    box-shadow: 0 16px 28px rgba(0, 73, 148, 0.16);
}

.why-card:hover i,
.why-card:focus-within i {
    color: #fff;
}

.why-card:hover h3,
.why-card:hover p,
.why-card:focus-within h3,
.why-card:focus-within p {
    color: #fff;
}

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

.service-card {
    position: relative;
    background: #fff;
    box-shadow: 0 2px 10px rgba(31, 63, 80, 0.06);
    cursor: pointer;
    transition:
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.service-card:hover,
.service-card:focus-visible {
    box-shadow: 0 12px 24px rgba(0, 73, 148, 0.18);
    transform: translateY(-4px);
    outline: none;
}

.service-image {
    height: 240px;
}

.service-icon {
    position: absolute;
    top: 201px;
    left: 50%;
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    transform: translateX(-50%);
    border: 5px solid #fff;
    border-radius: 50%;
    background: #eef7fb;
}

.service-icon img {
    width: 51px;
    height: 51px;
    object-fit: contain;
}

.service-body {
    min-height: 205px;
    padding: 57px 36px 30px;
    text-align: center;
}

.service-body h3 {
    margin-bottom: 25px;
    color: #222;
    font-size: 18px;
    font-weight: 800;
}

.service-body p {
    margin-bottom: 25px;
    font-size: 12px;
    font-weight: 600;
    text-align: justify;
}

.service-link {
    border: 0;
    background: transparent;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    padding: 0;
}

.service-card-wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 57% 43%;
    min-height: 245px;
}

.service-card-wide .service-image {
    height: 100%;
}

.service-card-wide .service-icon {
    top: 50%;
    left: 57%;
}

.service-card-wide .service-body {
    display: flex;
    min-height: auto;
    padding: 45px 42px;
    flex-direction: column;
    justify-content: center;
}

.gallery-carousel {
    position: relative;
    display: grid;
    min-height: 500px;
    place-items: center;
}

.gallery-strip {
    position: relative;
    width: min(100%, 940px);
    height: 455px;
    outline: none;
    perspective: 1200px;
}

.gallery-item {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(56vw, 520px);
    height: 455px;
    margin: 0;
    border-radius: 38px;
    box-shadow: 0 16px 28px rgba(0, 64, 118, 0.22);
    cursor: pointer;
    opacity: 0;
    overflow: hidden;
    transform: translateX(-50%) scale(0.55);
    transition:
        opacity 0.35s ease,
        transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 0.35s ease,
        z-index 0.35s step-end;
    will-change: transform, opacity;
}

.gallery-item img {
    pointer-events: none;
}

.gallery-item.is-active {
    z-index: 5;
    opacity: 1;
    filter: none;
    transform: translateX(-50%) translateZ(80px) scale(1);
}

.gallery-item.is-prev {
    z-index: 4;
    opacity: 0.95;
    filter: saturate(0.9);
    transform: translateX(calc(-50% - 230px)) rotateY(46deg) scale(0.78);
}

.gallery-item.is-next {
    z-index: 4;
    opacity: 0.95;
    filter: saturate(0.9);
    transform: translateX(calc(-50% + 230px)) rotateY(-46deg) scale(0.78);
}

.gallery-item.is-far-prev {
    z-index: 3;
    opacity: 0.72;
    filter: saturate(0.75) brightness(0.92);
    transform: translateX(calc(-50% - 405px)) rotateY(58deg) scale(0.58);
}

.gallery-item.is-far-next {
    z-index: 3;
    opacity: 0.72;
    filter: saturate(0.75) brightness(0.92);
    transform: translateX(calc(-50% + 405px)) rotateY(-58deg) scale(0.58);
}

.gallery-control {
    position: absolute;
    top: 50%;
    z-index: 8;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    transform: translateY(-50%);
    border: 0;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    box-shadow: 0 8px 18px rgba(0, 73, 148, 0.24);
}

.gallery-control:hover,
.gallery-control:focus-visible {
    background: var(--yellow);
}

.gallery-lightbox .modal-content {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #f8f8f8;
}

.gallery-lightbox .modal-header {
    border-bottom: 0;
    padding: 16px 20px 0;
}

.gallery-lightbox .modal-title {
    color: var(--blue);
    font-size: 18px;
    font-weight: 800;
}

.gallery-lightbox .modal-body {
    padding: 18px 20px 20px;
}

.gallery-lightbox-image {
    width: 100%;
    max-height: min(78vh, 820px);
    border-radius: 12px;
    object-fit: contain;
    background: #eaf2f5;
}

.service-popup .modal-dialog {
    max-width: min(100% - 32px, 1120px);
}

.service-popup .modal-content {
    border: 0;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
    width: 100%;
}

.service-popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 10;
}

.service-popup-board {
    position: relative;
    min-height: 630px;
    padding: 66px 50px 52px;
    background: var(--light-bg);
    overflow: hidden;
    max-width: 100%;
}

.popup-mark {
    position: absolute;
    display: block;
    width: 410px;
    height: 34px;
    background: transparent;
}

.popup-mark-top {
    top: 0;
    left: 0;
}

.popup-mark-bottom {
    right: 0;
    bottom: 0;
}

.popup-mark::before,
.popup-mark::after {
    content: "";
    position: absolute;
    display: block;
}

.popup-mark-top::before {
    top: 0;
    left: 84px;
    width: 336px;
    height: 10px;
    background: var(--blue);
}

.popup-mark-top::after {
    top: 0;
    left: 0;
    width: 148px;
    height: 22px;
    background: var(--yellow);
}

.popup-mark-bottom::before {
    right: 0;
    bottom: 0;
    width: 140px;
    height: 10px;
    background: var(--blue);
}

.popup-mark-bottom::after {
    right: 0;
    bottom: 0;
    width: 214px;
    height: 22px;
    background: var(--yellow);
}

.service-popup-head {
    display: grid;
    grid-template-columns: 1.05fr 1.25fr 0.88fr;
    gap: 48px;
    align-items: start;
}

.service-popup-title-wrap {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 24px;
    align-items: start;
}

.service-popup-icon {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.service-popup-title {
    margin: 0;
    color: #1e1e22;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;
    line-height: 0.98;
}

.service-popup-text {
    margin: 0;
    color: #1e1e22;
    font-size: clamp(17px, 1.8vw, 22px);
    line-height: 1.18;
    text-align: justify;
}

.service-popup-logo {
    display: flex;
    justify-content: center;
}

.service-popup-logo img {
    width: min(100%, 210px);
}

.service-popup-main {
    display: grid;
    grid-template-columns: 1fr 248px;
    gap: 36px;
    align-items: center;
    margin-top: 36px;
}

.service-popup-mosaic {
    display: grid;
    grid-template-columns: 1.05fr 0.78fr 1.05fr;
    grid-template-rows: 132px 132px 132px;
    gap: 6px;
    min-height: 408px;
}

.service-popup-mosaic .tile {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #d8e4e9;
    cursor: pointer;
}

.service-popup-mosaic .tile-a {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.service-popup-mosaic .tile-b {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.service-popup-mosaic .tile-c {
    grid-column: 1 / 3;
    grid-row: 2 / 4;
}

.service-popup-mosaic .tile-d {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
}

.service-popup-mosaic .tile-e {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
}

.service-popup-cta {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.05;
    text-align: center;
}

.service-popup-cta:hover {
    color: #fff;
}

.gallery-prev {
    left: -8px;
}

.gallery-next {
    right: -8px;
}

.reviews-container {
    width: min(100% - 32px, 1052px);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 43px;
    align-items: stretch;
}

.review-card {
    position: relative;
    display: flex;
    min-height: 377px;
    padding: 84px 50px 94px;
    border: 9px solid var(--blue);
    border-radius: 29px;
    background: #f8f8f8;
    color: #5f656b;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 14px rgba(0, 73, 148, 0.25);
}

.review-card::before {
    content: none;
}

.review-card::after {
    content: none;
}

.quote-mark {
    position: absolute;
    top: 30px;
    left: 42px;
    color: #d7d7d7;
    font-size: 56px;
    line-height: 1;
}

.review-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
}

.review-card strong {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    display: inline-flex;
    min-width: 178px;
    max-width: calc(100% - 72px);
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    border-top-right-radius: 15px;
    background: var(--blue);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    overflow-wrap: anywhere;
}

.faq-section {
    padding-bottom: 24px;
}

.service-areas-section {
    padding-top: 64px;
}

.service-areas-panel {
    display: grid;
    gap: 24px;
    max-width: 960px;
    margin: 34px auto 0;
    text-align: center;
}

.service-areas-panel h3 {
    margin: 0 0 12px;
    color: #1f2e37;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 800;
}

.service-areas-panel p {
    max-width: 760px;
    margin: 0 auto;
    color: #50626d;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.65;
}

.area-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.area-pills span {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border: 2px solid rgba(0, 94, 184, 0.18);
    border-radius: 999px;
    background: #fff;
    color: var(--blue);
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(0, 94, 184, 0.08);
}

.hours-block {
    display: grid;
    gap: 6px;
    justify-items: center;
    color: #41525d;
    font-weight: 700;
}

.hours-block strong {
    color: var(--dark);
    font-size: 18px;
}

.faq-container {
    width: min(100% - 32px, 900px);
}

.faq-accordion {
    display: grid;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
    border: 3px solid var(--blue);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 16px rgba(0, 73, 148, 0.08);
}

.faq-item .accordion-button {
    min-height: 64px;
    background: #fff;
    color: #1e1e22;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) {
    background: var(--blue);
    color: #fff;
}

.faq-item .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 92, 172, 0.18);
}

.faq-item .accordion-button::after {
    filter: none;
}

.faq-item .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.faq-item .accordion-body {
    padding: 22px 24px;
    color: #505b66;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.contact-footer {
    position: relative;
    margin-top: 90px;
    padding: 70px 0 45px;
    background: var(--dark);
    color: #c7c7c7;
}

.footer-pill {
    position: absolute;
    top: -24px;
    left: 50%;
    margin: 0;
    transform: translateX(-50%);
}

.footer-content {
    display: grid;
    grid-template-columns: 210px minmax(170px, max-content) minmax(260px, max-content);
    gap: 35px;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    display: grid;
    min-height: 150px;
    place-items: center;
    background: transparent;
}

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

.contact-item {
    display: flex;
    min-height: 64px;
    gap: 16px;
    align-items: center;
    margin: 0;
    padding-left: 28px;
    border-left: 1px solid #747474;
    color: #cfcfcf;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
}

.contact-item span {
    white-space: nowrap;
}

.contact-item i {
    display: grid;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    place-items: center;
    flex: 0 0 38px;
    background: var(--blue);
    color: #49a1e8;
    font-size: 20px;
}

.floating-whatsapp,
.floating-top {
    position: fixed;
    z-index: 1040;
}

.floating-whatsapp,
.floating-top {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border-radius: 50%;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        opacity 0.2s ease;
}

.floating-whatsapp {
    left: 22px;
    bottom: 22px;
    background: var(--blue);
    color: #fff;
    font-size: 34px;
    box-shadow: 0 10px 20px rgba(0, 92, 172, 0.26);
}

.floating-top {
    right: 22px;
    bottom: 22px;
    border: 2px solid rgba(0, 92, 172, 0.28);
    background: rgba(255, 255, 255, 0.22);
    color: rgba(0, 92, 172, 0.7);
    font-size: 24px;
    backdrop-filter: blur(4px);
}

.floating-whatsapp:hover,
.floating-top:hover {
    color: #fff;
    transform: translateY(-3px);
}

.floating-top:hover {
    background: rgba(0, 92, 172, 0.7);
}

.estimate-page main {
    padding-top: 56px;
}

.estimate-hero {
    padding: 78px 0 52px;
    background:
        linear-gradient(90deg, rgba(234, 242, 245, 0.92), rgba(234, 242, 245, 0.72)),
        #eaf2f5;
}

.estimate-hero-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 54px;
    align-items: center;
}

.estimate-eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 9px 24px;
    border-radius: 999px;
    background: var(--yellow);
    color: #fff;
    font-weight: 800;
}

.estimate-hero h1 {
    max-width: 720px;
    margin: 0 0 18px;
    color: #1e1e22;
    font-size: clamp(42px, 6vw, 74px);
    font-weight: 800;
    line-height: 0.95;
}

.estimate-hero p {
    max-width: 650px;
    margin: 0;
    color: #3e4b55;
    font-size: 19px;
    font-weight: 600;
}

.estimate-trust {
    display: grid;
    gap: 18px;
    padding: 28px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(0, 73, 148, 0.12);
}

.estimate-trust img {
    width: 190px;
    margin-inline: auto;
}

.estimate-trust ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.estimate-trust li {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #24313b;
    font-weight: 800;
}

.estimate-trust i {
    color: var(--blue);
}

.estimate-section {
    padding: 54px 0 92px;
}

.estimate-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 34px;
    align-items: start;
}

.estimate-form {
    position: relative;
    padding: 34px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(0, 73, 148, 0.1);
}

.estimate-progress {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 28px;
}

.estimate-progress span {
    height: 8px;
    border-radius: 999px;
    background: #d9e5eb;
}

.estimate-progress span.is-active {
    background: var(--blue);
}

.estimate-step {
    display: none;
    margin: 0;
    padding: 0;
    border: 0;
}

.estimate-step.is-active {
    display: block;
}

.estimate-step legend {
    margin-bottom: 10px;
    color: #1e1e22;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    line-height: 1;
}

.estimate-step-copy {
    max-width: 660px;
    margin: 0 0 24px;
    color: #60707a;
    font-weight: 600;
}

.estimate-option-grid,
.estimate-check-grid,
.estimate-fields-two {
    display: grid;
    gap: 16px;
}

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

.estimate-option-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 18px 0;
}

.estimate-option-grid.compact .estimate-option {
    width: 100%;
}

.estimate-check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 20px;
}

.estimate-fields-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.estimate-option input,
.estimate-check-grid input {
    position: absolute;
    opacity: 0;
}

.estimate-option span,
.estimate-check-grid span {
    display: flex;
    width: 100%;
    min-height: 64px;
    gap: 12px;
    align-items: center;
    padding: 16px 18px;
    border: 2px solid #dbe7ec;
    border-radius: 14px;
    background: #f8fbfc;
    color: #26323a;
    font-weight: 800;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.estimate-option i {
    color: var(--blue);
    font-size: 22px;
}

.estimate-option input:checked + span,
.estimate-check-grid input:checked + span {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff;
}

.estimate-option input:checked + span i {
    color: #fff;
}

.estimate-field {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.estimate-field label {
    color: #26323a;
    font-weight: 800;
}

.estimate-field input,
.estimate-field select,
.estimate-field textarea {
    width: 100%;
    min-height: 52px;
    padding: 13px 14px;
    border: 2px solid #dbe7ec;
    border-radius: 12px;
    background: #fff;
    color: #27343d;
    font: inherit;
}

.estimate-field textarea {
    resize: vertical;
}

.estimate-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 18px;
}

.estimate-next,
.estimate-submit,
.estimate-back {
    min-height: 48px;
    padding: 12px 24px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
}

.estimate-next,
.estimate-submit {
    background: var(--green);
    color: #fff;
}

.estimate-back {
    background: #e9f0f4;
    color: var(--blue);
}

.estimate-side {
    display: grid;
    gap: 16px;
    padding: 28px;
    border-radius: 18px;
    background: #1f1d1e;
    color: #dbe3e7;
}

.estimate-side h2 {
    margin: 0;
    color: #fff;
    font-size: 26px;
    font-weight: 800;
}

.estimate-side p {
    margin: 0;
    font-weight: 600;
}

.estimate-side-card {
    display: grid;
    gap: 6px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.estimate-side-card strong {
    color: var(--yellow);
}

@media (max-width: 991.98px) {
    .nav-link {
        padding: 12px 0;
        font-size: 15px;
    }

    .hero-section {
        grid-template-columns: 1fr;
        min-height: auto;
        margin-top: 64px;
    }

    .hero-logo-panel {
        min-height: 260px;
    }

    .hero-image {
        min-height: 490px;
    }

    .hero-copy {
        top: 34px;
        left: 32px;
        right: 26px;
    }

    .estimate-ribbon {
        min-width: min(72%, 390px);
        font-size: 21px;
    }

    .estimate-ribbon.is-sticky {
        top: var(--sticky-top, 64px);
    }

    .about-section {
        padding-top: 92px;
    }

    .section-pill {
        margin-inline: auto;
    }

    .copy-block {
        max-width: none;
        text-align: left;
    }

    .services-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        max-width: 720px;
        margin-inline: auto;
    }

    .why-card {
        width: calc((100% - 20px) / 2);
    }

    .reviews-grid {
        gap: 34px;
        max-width: 330px;
        margin-inline: auto;
    }

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

    .service-card-wide .service-image {
        height: 240px;
    }

    .service-card-wide .service-icon {
        top: 201px;
        left: 50%;
    }

    .gallery-carousel {
        min-height: 430px;
    }

    .gallery-strip {
        height: 380px;
    }

    .gallery-item {
        width: min(72vw, 420px);
        height: 380px;
    }

    .gallery-item.is-prev {
        transform: translateX(calc(-50% - 145px)) rotateY(45deg) scale(0.72);
    }

    .gallery-item.is-next {
        transform: translateX(calc(-50% + 145px)) rotateY(-45deg) scale(0.72);
    }

    .gallery-item.is-far-prev,
    .gallery-item.is-far-next {
        opacity: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-logo {
        width: 210px;
        margin-inline: auto;
    }

    .service-popup-board {
        padding: 48px 28px 34px;
    }

    .service-popup .modal-dialog {
        width: min(760px, calc(100% - 32px));
        max-width: 760px;
        margin-inline: auto;
    }

    .popup-mark {
        width: 320px;
    }

    .popup-mark-top::before {
        left: 62px;
        width: 260px;
    }

    .popup-mark-top::after {
        width: 112px;
    }

    .popup-mark-bottom::before {
        width: 112px;
    }

    .popup-mark-bottom::after {
        width: 166px;
    }

    .service-popup-head {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .service-popup-title-wrap {
        grid-template-columns: 58px 1fr;
    }

    .service-popup-icon {
        width: 50px;
        height: 50px;
    }

    .service-popup-logo {
        justify-content: flex-start;
    }

    .service-popup-logo img {
        width: 150px;
    }

    .service-popup-main {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-popup-cta {
        width: min(100%, 330px);
        justify-self: center;
    }

    .contact-item {
        justify-content: center;
        padding: 0;
        border-left: 0;
    }

    .estimate-hero-grid,
    .estimate-layout {
        grid-template-columns: 1fr;
    }

    .estimate-trust {
        max-width: 380px;
    }

    .estimate-side {
        order: -1;
    }
}

@media (max-width: 575.98px) {
    .container-narrow,
    .reviews-container {
        width: min(100% - 24px, 990px);
    }

    .hero-logo-panel {
        min-height: 220px;
    }

    .hero-image {
        min-height: 380px;
    }

    .hero-copy h1 {
        font-size: 27px;
    }

    .estimate-ribbon {
        position: relative;
        right: auto;
        bottom: auto;
        display: block;
        min-width: 0;
        width: 100%;
        padding: 14px 20px;
        border-radius: 0;
        font-size: 16px;
    }

    .estimate-ribbon.is-sticky {
        position: fixed;
        top: var(--sticky-top, 64px);
        right: 0;
        bottom: auto;
        width: 100%;
        border-radius: 0;
    }

    .page-section,
    .about-section {
        padding-top: 58px;
    }

    .rounded-image,
    .service-image,
    .service-card-wide .service-image {
        height: 210px;
    }

    .service-icon,
    .service-card-wide .service-icon {
        top: 171px;
    }

    .service-body,
    .service-card-wide .service-body {
        padding-inline: 24px;
    }

    .why-card {
        width: min(100%, 320px);
    }

    .gallery-carousel {
        min-height: 380px;
    }

    .gallery-strip {
        height: 330px;
    }

    .gallery-item {
        width: min(82vw, 310px);
        height: 330px;
        border-radius: 28px;
    }

    .gallery-item.is-prev {
        transform: translateX(calc(-50% - 92px)) rotateY(44deg) scale(0.68);
    }

    .gallery-item.is-next {
        transform: translateX(calc(-50% + 92px)) rotateY(-44deg) scale(0.68);
    }

    .gallery-prev {
        left: 0;
    }

    .gallery-next {
        right: 0;
    }

    .review-card {
        min-height: 377px;
        padding: 78px 36px 90px;
    }

    .contact-footer {
        margin-top: 70px;
    }

    .service-popup .modal-dialog {
        width: calc(100% - 18px);
        max-width: 540px;
        margin-inline: auto;
    }

    .service-popup-board {
        min-height: auto;
        padding: 42px 16px 28px;
    }

    .service-popup-close {
        top: 12px;
        right: 12px;
    }

    .popup-mark {
        width: 230px;
        height: 24px;
    }

    .popup-mark-top::before {
        left: 46px;
        width: 184px;
        height: 8px;
    }

    .popup-mark-top::after {
        width: 84px;
        height: 16px;
    }

    .popup-mark-bottom::before {
        width: 82px;
        height: 8px;
    }

    .popup-mark-bottom::after {
        width: 126px;
        height: 16px;
    }

    .service-popup-title-wrap {
        grid-template-columns: 44px 1fr;
        gap: 14px;
    }

    .service-popup-icon {
        width: 38px;
        height: 38px;
    }

    .service-popup-title {
        font-size: 34px;
    }

    .service-popup-text {
        font-size: 16px;
        text-align: left;
    }

    .service-popup-mosaic {
        grid-template-rows: 92px 92px 92px;
        min-height: 288px;
    }

    .service-popup-cta {
        min-height: 62px;
        font-size: 22px;
    }

    .floating-whatsapp,
    .floating-top {
        width: 50px;
        height: 50px;
        bottom: 16px;
    }

    .floating-whatsapp {
        left: 16px;
        font-size: 30px;
    }

    .floating-top {
        right: 16px;
        font-size: 21px;
    }

    .estimate-page main {
        padding-top: 64px;
    }

    .estimate-hero {
        padding: 44px 0 34px;
    }

    .estimate-hero h1 {
        font-size: 40px;
    }

    .estimate-form {
        padding: 22px;
    }

    .estimate-option-grid,
    .estimate-option-grid.compact,
    .estimate-check-grid,
    .estimate-fields-two {
        grid-template-columns: 1fr;
    }

    .estimate-actions {
        flex-direction: column-reverse;
    }

    .estimate-next,
    .estimate-submit,
    .estimate-back {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-title-line,
    .scroll-animate,
    .gallery-item {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
