/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.salem-bath-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.form-message {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.4;
}

.form-message--error {
    color: #b42318;
}

.form-field--invalid,
.custom-select.form-field--invalid .custom-select__trigger {
    border-color: #b42318 !important;
    box-shadow: 0 0 0 1px rgba(180, 35, 24, 0.18);
}

.btn:disabled {
    opacity: 0.72;
    cursor: not-allowed;
}

:root {
    --color-primary: #013e87;
    --color-dark: #212121;
    --color-bg-light: #f2f2f0;
    --color-bg-card: #f7f7f7;
    --color-footer: #32332e;
    --color-white: #ffffff;
    --color-gold: #e0b24a;
    --color-border: #bfb8b0;
    --color-black: #000000;
    --font-main: 'Roboto', sans-serif;
    --font-heading: 'Bodoni Moda', serif;
    --container-width: 1920px;
    --container-padding: 0 100px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-dark);
    background: var(--color-white);
    overflow-x: hidden;
}

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

ul, ol {
    list-style: none;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 52px;
    padding: 0 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.btn:hover {
    opacity: 0.85;
}

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

.btn--outline {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

.btn--outline-white {
    background: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
}

.btn--full {
    width: 100%;
}

.btn__icon {
    width: 20px;
    height: 20px;
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
    padding: 0 100px;
    max-width: 1920px;
    margin: 0 auto;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__logo-icon {
    width: 40px;
    height: 44px;
}

.header__logo-text {
    display: flex;
    flex-direction: column;
}

.header__logo-name {
    font-size: 22px;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1.2;
}

.header__logo-sub {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-primary);
    letter-spacing: 5.04px;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header__nav-link {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-dark);
    position: relative;
    padding-bottom: 3px;
}

.header__nav-link--active {
    color: var(--color-primary);
}

.header__nav-link--active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-primary);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header__phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
}

.header__phone-icon {
    width: 20px;
    height: 20px;
}


.header__burger {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.header__burger img {
    width: 28px;
    height: 28px;
}

/* ===== HERO ===== */
.hero {
    background: var(--color-bg-light);
    position: relative;
    overflow: hidden;
}

.hero__container {
    display: flex;
    align-items: center;
    max-width: 1920px;
    margin: 0 auto;
    min-height: 720px;
    padding: 0 0 0 100px;
}

.hero__content {
    flex: 1;
    max-width: 581px;
    padding-right: 40px;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 58px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.hero__text {
    font-size: 16px;
    line-height: 1.375;
    color: var(--color-dark);
    margin-bottom: 50px;
}

.hero__buttons {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero__image {
    flex: 1;
    max-width: 900px;
    align-self: stretch;
    position: relative;
    overflow: hidden;
    margin-left: auto;
}

.hero__image img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--color-bg-light);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.trust-bar__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1920px;
    margin: 0 auto;
    padding: 36px 100px;
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trust-bar__icon {
    width: 40px;
    height: 60px;
    object-fit: contain;
}

.trust-bar__icon--bbb {
    width: 38px;
    height: 60px;
}

.trust-bar__text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.trust-bar__text strong {
    font-size: 18px;
    font-weight: 500;
}

.trust-bar__text span {
    font-size: 16px;
    color: var(--color-dark);
}

.trust-bar__divider {
    width: 1px;
    height: 60px;
    background: var(--color-border);
}

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
    overflow: hidden;
}

.services__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0;
}

.services__header {
    text-align: center;
    margin-bottom: 100px;
    padding: 0 20px;
}

.services__subtitle {
    font-size: 16px;
    color: var(--color-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.services__title {
    font-family: var(--font-heading);
    font-size: 58px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-dark);
}

.services__list {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

/* Service Card */
.service-card {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-right: 100px;
}

.service-card--reverse {
    flex-direction: row-reverse;
    padding-right: 0;
    padding-left: 100px;
}

.service-card__image {
    position: relative;
    width: 730px;
    height: 540px;
    flex-shrink: 0;
    margin-left: -40px;
}

/* Decorative gray rectangle - top (aligned with image left edge) */
.service-card__image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    width: 495px;
    height: 420px;
    background: var(--color-bg-card);
    border-radius: 8px;
}

/* Decorative gray rectangle - bottom right (peeks out on right) */
.service-card__image::after {
    content: '';
    position: absolute;
    top: 140px;
    left: 235px;
    width: 495px;
    height: 300px;
    background: var(--color-bg-card);
    border-radius: 8px;
}

.service-card__image-bg {
    position: absolute;
    top: 115px;
    left: 85px;
    width: 555px;
    height: 425px;
    border-radius: 20px;
    overflow: hidden;
    filter: blur(80px);
    opacity: 1;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.service-card__image img {
    position: absolute;
    top: 65px;
    left: 40px;
    width: 630px;
    height: 445px;
    object-fit: cover;
    border-radius: 8px;
    z-index: 2;
}

/* Reverse card - mirror decorative elements */
.service-card--reverse .service-card__image {
    margin-left: 0;
    margin-right: -40px;
}

.service-card--reverse .service-card__image::before {
    left: auto;
    right: 40px;
}

.service-card--reverse .service-card__image::after {
    left: auto;
    right: 235px;
}

.service-card--reverse .service-card__image-bg {
    left: auto;
    right: 85px;
}

.service-card--reverse .service-card__image img {
    left: auto;
    right: 40px;
}

.service-card__content {
    flex: 1;
    max-width: 500px;
}

.service-card__label {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 4.8px;
    margin-bottom: 16px;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 40px;
}

.service-card__text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    margin-bottom: 40px;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: var(--color-primary);
    transition: gap 0.3s;
}

.service-card__link:hover {
    gap: 24px;
}

.service-card__link img {
    width: 48px;
    height: 24px;
}

/* ===== GALLERY ===== */
.gallery {
    padding: 100px 0;
    overflow: hidden;
}

.gallery__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 100px;
}

.gallery__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.gallery__header-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.gallery__controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gallery__subtitle {
    font-size: 16px;
    color: var(--color-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.gallery__title {
    font-family: var(--font-heading);
    font-size: 58px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-dark);
}

.gallery__slider {
    position: relative;
    overflow: hidden;
}

.gallery__track {
    display: flex;
    transition: transform 0.5s ease;
    cursor: grab;
}

.gallery__track:active {
    cursor: grabbing;
}

.gallery__slide {
    position: relative;
    flex-shrink: 0;
    height: 445px;
    overflow: hidden;
    padding: 0 10px;
    box-sizing: border-box;
}

.gallery__project {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.gallery__project-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

.gallery__project-track img {
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.gallery__photo-arrow {
    position: absolute;
    top: 222px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 10;
    transition: opacity 0.3s;
}

.gallery__photo-arrow:hover {
    opacity: 0.8;
}

.gallery__photo-arrow--left {
    left: calc(50% - 410px);
}

.gallery__photo-arrow--right {
    right: calc(50% - 410px);
}

.gallery__photo-arrow svg {
    width: 40px;
    height: 40px;
}

.gallery__bottom {
    max-width: 50%;
    margin: 20px auto 0;
    padding: 0;
}

.gallery__caption {
    font-size: 16px;
    color: var(--color-dark);
    text-align: left;
}

.gallery__progress {
    width: 100%;
    height: 1px;
    background: var(--color-border);
    margin-top: 12px;
}

.gallery__arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s;
    background: none;
    border: none;
    padding: 0;
}

.gallery__arrow svg {
    width: 50px;
    height: 50px;
}

.gallery__arrow .gallery__arrow-bg {
    r: 24;
    fill: #ffffff;
    stroke: #013E87;
    stroke-width: 2;
    transition: fill 0.3s;
}

.gallery__arrow .gallery__arrow-icon {
    fill: #013E87;
    transition: fill 0.3s;
}

.gallery__arrow:hover .gallery__arrow-bg {
    fill: #013E87;
}

.gallery__arrow:hover .gallery__arrow-icon {
    fill: #ffffff;
}


.gallery__counter {
    font-size: 16px;
    color: var(--color-dark);
}

/* ===== REVIEWS ===== */
.reviews {
    padding: 100px 0;
    background: var(--color-bg-light);
}

.reviews__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.reviews__header {
    margin-bottom: 80px;
}

.reviews__subtitle {
    font-size: 16px;
    color: var(--color-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.reviews__title {
    font-family: var(--font-heading);
    font-size: 58px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-dark);
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Review Card */
.review-card {
    background: var(--color-white);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}

.review-card__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-card__quote {
    width: 24px;
    height: 20px;
    margin-bottom: 28px;
}

.review-card__stars {
    display: flex;
    gap: 4px;
}

.review-card__star {
    color: var(--color-gold);
    font-size: 20px;
    line-height: 1;
}

.review-card__star--empty {
    opacity: 0.3;
}

.review-card__text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-dark);
    margin-top: 8px;
}

.review-card__footer {
    margin-top: 40px;
}

.review-card__divider {
    width: 100%;
    height: 1px;
    background: var(--color-border);
    margin-bottom: 20px;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 24px;
}

.review-card__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-bg-light);
    overflow: hidden;
}

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

.review-card__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-card__name {
    font-size: 20px;
    font-weight: 500;
}

.review-card__location {
    font-size: 16px;
    color: var(--color-dark);
}

/* ===== SERVICE AREA ===== */
.service-area {
    padding: 100px 0;
}

.service-area__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.service-area__subtitle {
    font-size: 16px;
    color: var(--color-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.service-area__row {
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.service-area__info {
    flex: 1;
}

.service-area__title {
    font-family: var(--font-heading);
    font-size: 58px;
    font-weight: 400;
    color: var(--color-dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

.service-area__text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    margin-bottom: 40px;
}

.service-area__cities {
    display: flex;
    gap: 70px;
}

.service-area__column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-area__city {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 500;
}

.service-area__city img {
    width: 24px;
    height: 24px;
}

.service-area__map {
    flex-shrink: 0;
}

.service-area__map img {
    width: 597px;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}

/* ===== CTA ===== */
.cta {
    padding: 100px 0;
    background: var(--color-bg-light);
}

.cta__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 40px 80px;
    align-items: start;
}

.cta__title {
    grid-column: 1;
    grid-row: 1;
    font-family: var(--font-heading);
    font-size: 58px;
    font-weight: 400;
    color: var(--color-dark);
    line-height: 1.3;
}

.cta__content {
    grid-column: 1;
    grid-row: 2;
}

.cta__form-wrapper {
    grid-column: 2;
    grid-row: 1 / 3;
}

.cta__contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.cta__contact-item {
    font-size: 24px;
    font-weight: 500;
    color: var(--color-dark);
}

.cta__social {
    display: flex;
    gap: 30px;
}

.cta__social-link {
    font-size: 16px;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 0.64px;
    transition: color 0.3s;
}

.cta__social-link:hover {
    color: var(--color-primary);
}

.cta__form-wrapper {
    width: 100%;
    max-width: 580px;
}

.cta__form-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.cta__input {
    width: 100%;
    padding: 18px 25px;
    background: var(--color-white);
    border-radius: 8px;
    font-size: 16px;
    color: var(--color-dark);
}

.cta__input::placeholder {
    color: #9CA3AF;
}

.cta__form-submit {
    display: flex;
    align-items: center;
    gap: 40px;
}

.cta__disclaimer {
    font-size: 16px;
    color: var(--color-dark);
    line-height: 1.4;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-footer);
    color: var(--color-white);
    font-weight: 400;
    padding: 60px 0 40px;
}

.footer__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
}

.footer__top {
    display: flex;
    flex-direction: column;
}

.footer__row {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 280px;
}

.footer__logo img {
    height: 84px;
    width: auto;
}

.footer__tagline {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.6;
}

.footer__col {
    display: flex;
    flex-direction: column;
}

.footer__col-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.footer__col--serving .footer__cities {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__city {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-white);
}

.footer__city img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
}

.footer__contact-item img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.footer__col--license {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer__license-title {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.footer__license-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__shield {
    width: 28px;
    height: 28px;
}

.footer__license-info {
    display: flex;
    flex-direction: column;
}

.footer__license-info strong {
    font-size: 18px;
    font-weight: 500;
}

.footer__license-info span {
    font-size: 14px;
    font-weight: 300;
}


.footer__bottom {
    margin-top: 40px;
}

.footer__divider {
    width: 100%;
    height: 1px;
    background: var(--color-bg-light);
    margin-bottom: 20px;
}

.footer__copyright {
    font-size: 14px;
    font-weight: 300;
    color: var(--color-white);
    opacity: 0.8;
}

/* ===== RESPONSIVE - MOBILE ===== */
/* ===== TABLET BREAKPOINT ===== */
/* ===== RESPONSIVE - INTERMEDIATE ===== */
@media (max-width: 1200px) {
    .header__container {
        padding: 0 30px;
    }

    .trust-bar__container {
        padding: 36px 30px;
    }

    .trust-bar__divider {
        margin: 0 20px;
    }

    .service-area__row {
        flex-direction: column;
        gap: 30px;
    }

    .service-area__info {
        display: contents;
    }

    .service-area__title {
        order: 1;
    }

    .service-area__map {
        order: 2;
        width: 100%;
    }

    .service-area__text {
        order: 3;
    }

    .service-area__cities {
        order: 4;
    }

    .service-area__map img {
        width: 70%;
        height: auto;
    }

    .cta__social {
        gap: 22px;
    }

    .cta__social-link {
        font-size: 14px;
    }

    /* Service cards 80% scale */
    .service-card__image {
        width: 584px;
        height: 432px;
        margin-left: -32px;
    }

    .service-card__image::before {
        left: 32px;
        width: 396px;
        height: 336px;
    }

    .service-card__image::after {
        top: 112px;
        left: 188px;
        width: 396px;
        height: 240px;
    }

    .service-card__image-bg {
        top: 92px;
        left: 68px;
        width: 444px;
        height: 340px;
    }

    .service-card__image img {
        top: 52px;
        left: 32px;
        width: 504px;
        height: 356px;
    }

    .service-card--reverse .service-card__image {
        margin-left: 0;
        margin-right: -32px;
    }

    .service-card--reverse .service-card__image::before {
        left: auto;
        right: 32px;
    }

    .service-card--reverse .service-card__image::after {
        left: auto;
        right: 188px;
    }

    .service-card--reverse .service-card__image-bg {
        left: auto;
        right: 68px;
    }

    .service-card--reverse .service-card__image img {
        left: auto;
        right: 32px;
    }

    .gallery__slide {
        height: 340px;
    }

    .gallery__photo-arrow {
        top: 170px;
    }

    .gallery__photo-arrow--left {
        left: calc(50% - 280px);
    }

    .gallery__photo-arrow--right {
        right: calc(50% - 280px);
    }
}

@media (max-width: 1050px) {
    .header__nav {
        display: none;
    }

    .header__actions {
        display: none;
    }

    .header__burger {
        display: flex;
    }
}

@media (max-width: 900px) {
    .trust-bar__container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
        padding: 36px 30px;
    }

    .trust-bar__divider {
        display: none;
    }

    /* Services at 900px - column layout */
    .services__container {
        padding: 0 30px;
    }

    .service-card {
        flex-direction: column;
        gap: 30px;
        padding-right: 0;
        padding-left: 0;
    }

    .service-card--reverse {
        flex-direction: column;
        padding-left: 0;
    }

    .service-card__image {
        width: calc(100% + 30px);
        height: 430px;
        margin-left: -30px;
        margin-right: 0;
        overflow: visible;
    }

    .service-card--reverse .service-card__image {
        margin-left: -30px;
        margin-right: 0;
    }

    .service-card__image::before {
        display: block;
        width: 65%;
        height: 65%;
        top: -4%;
        left: 0;
        right: auto;
        border-radius: 4px;
    }

    .service-card__image::after {
        display: block;
        width: 65%;
        height: 65%;
        left: 25%;
        right: auto;
        top: 25%;
        bottom: auto;
        border-radius: 4px;
    }

    .service-card--reverse .service-card__image::before {
        right: auto;
        left: 0;
    }

    .service-card--reverse .service-card__image::after {
        left: 25%;
        right: auto;
    }

    .service-card__image-bg {
        display: block;
        width: 60%;
        height: 55%;
        top: auto;
        bottom: 10%;
        left: 20%;
        right: auto;
        filter: blur(30px);
        opacity: 0.8;
        border-radius: 4px;
    }

    .service-card--reverse .service-card__image-bg {
        left: 20%;
        right: auto;
    }

    .service-card--reverse .service-card__image img {
        left: 0;
        right: auto;
    }

    .service-card__image img {
        position: absolute;
        top: 10%;
        left: 0;
        width: 82%;
        height: 80%;
        z-index: 2;
        border-radius: 4px;
    }
}

@media (max-width: 1024px) {
    .hero__container {
        gap: 30px;
        padding: 0 0 0 40px;
        min-height: 500px;
    }

    .hero__content {
        padding-left: 0;
    }

    .hero__title {
        font-size: 42px;
    }

    .service-card {
        gap: 40px;
    }

    .service-card__content {
        padding: 30px;
    }

    .service-card__title {
        font-size: 36px;
    }

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

    .service-area__row {
        gap: 40px;
    }

    .cta__container {
        gap: 40px;
    }

    .footer__row {
        flex-wrap: wrap;
        gap: 30px;
    }
}

/* ===== MOBILE BREAKPOINT ===== */
@media (max-width: 768px) {
    :root {
        --container-padding: 0 16px;
    }

    /* Header Mobile */
    .header__container {
        height: 100px;
        padding: 0 16px;
    }

    .header__nav {
        display: none;
    }

    .header__actions {
        display: none;
    }

    .header__burger {
        display: flex;
    }

    /* Hero Mobile */
    .hero__container {
        flex-direction: column;
        padding: 0;
        gap: 0;
        min-height: auto;
    }

    .hero__content {
        display: contents;
    }

    .hero__title {
        font-size: 32px;
        line-height: 1.3;
        order: 1;
        padding: 30px 16px 20px;
    }

    .hero__image {
        order: 2;
        max-width: 100%;
        width: 100%;
        height: 286px;
        border-radius: 8px;
        display: block;
        flex: none;
        align-self: auto;
        margin-left: 0;
        padding: 0 16px;
    }

    .hero__image img {
        position: relative;
        width: 100%;
        height: 286px;
        border-radius: 8px;
        object-fit: cover;
    }

    .hero__text {
        font-size: 16px;
        margin-bottom: 0;
        order: 3;
        padding: 20px 16px 30px;
    }

    .hero__buttons {
        display: flex;
        flex-direction: row;
        gap: 16px;
        align-items: center;
        order: 4;
        padding: 0 16px 30px;
        width: 100%;
        box-sizing: border-box;
    }

    .hero__buttons .btn {
        display: flex;
        justify-content: center;
        height: 52px;
        font-size: 14px;
        padding: 0;
        flex: 1 1 0;
        min-width: 0;
        width: 50%;
    }

    /* Trust Bar Mobile - keep 2-col grid from 900px */
    .trust-bar {
        overflow-x: visible;
    }

    .trust-bar__container {
        padding: 36px 16px;
    }

    /* Services Mobile */
    .services {
        padding: 60px 0;
        overflow: hidden;
    }

    .services__container {
        padding: 0 16px;
    }

    .services__header {
        margin-bottom: 40px;
        text-align: left;
    }

    .services__subtitle {
        text-align: center;
    }

    .services__title {
        font-size: 36px;
        line-height: 1.3;
    }

    .services__list {
        gap: 50px;
    }

    .service-card__image {
        width: calc(100% + 16px);
        margin-left: -16px;
    }

    .service-card--reverse .service-card__image {
        margin-left: -16px;
    }


    .service-card__title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .service-card__text {
        margin-bottom: 20px;
    }

    /* Gallery Mobile */
    .gallery {
        padding: 60px 0;
    }

    .gallery__container {
        padding: 0 16px;
    }

    .gallery__title {
        font-size: 36px;
    }

    .gallery__slide {
        height: 193px;
        padding: 0 6px;
    }

    .gallery__controls {
        display: none;
    }

    .gallery__photo-arrow {
        width: 30px;
        height: 30px;
        top: 96px;
    }

    .gallery__photo-arrow svg {
        width: 30px;
        height: 30px;
    }

    .gallery__photo-arrow .gallery__photo-arrow-bg {
        display: none;
    }

    .gallery__photo-arrow svg path {
        fill: white;
    }

    .gallery__photo-arrow--left {
        left: calc(50% - 170px);
    }

    .gallery__photo-arrow--right {
        right: calc(50% - 170px);
    }

    .gallery__bottom {
        max-width: 70%;
    }

    .gallery__progress {
        width: 100%;
    }

    /* Reviews Mobile */
    .reviews {
        padding: 60px 0;
    }

    .reviews__container {
        padding: 0 16px;
    }

    .reviews__title {
        font-size: 36px;
    }

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

    .review-card {
        min-height: auto;
        border-radius: 4px;
    }

    /* Service Area Mobile */
    .service-area {
        padding: 60px 0;
    }

    .service-area__container {
        padding: 0 16px;
    }

    .service-area__row {
        flex-direction: column;
        gap: 30px;
    }

    .service-area__info {
        display: contents;
    }

    .service-area__title {
        font-size: 36px;
        order: 1;
    }

    .service-area__map {
        order: 2;
    }

    .service-area__text {
        order: 3;
    }

    .service-area__cities {
        order: 4;
    }

    .service-area__map img {
        width: 85%;
        height: auto;
        border-radius: 4px;
    }

    /* CTA Mobile */
    .cta {
        padding: 60px 0;
    }

    .cta__container {
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding: 0 16px;
    }

    .cta__title {
        font-size: 36px;
    }

    .cta__form-wrapper {
        max-width: 100%;
    }

    .cta__form-fields {
        margin-bottom: 16px;
    }

    .cta__form-submit {
        flex-direction: column;
        gap: 12px;
    }

    .cta__form-submit .btn {
        width: 100%;
    }

    .cta__disclaimer {
        text-align: center;
        font-weight: 300;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 0 30px;
    }

    .footer__container {
        padding: 0 16px;
    }

    .footer__row {
        flex-direction: column;
        gap: 30px;
    }

    .footer__brand {
        max-width: 100%;
    }

    .footer__col--serving .footer__cities {
        display: grid;
        grid-template-columns: auto auto;
        grid-template-rows: auto auto auto;
        grid-auto-flow: column;
        gap: 12px;
        column-gap: 70px;
    }

    .footer__bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer__copyright {
        text-align: center;
        font-weight: 300;
        font-size: 14px;
        line-height: 16px;
        max-width: 170px;
        margin: 0 auto;
    }

    /* Modal Mobile - see below after base modal styles */
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 300;
    align-items: center;
    justify-content: center;
}

.modal--active {
    display: flex;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal--visible .modal__overlay {
    opacity: 1;
}

.modal__content {
    position: relative;
    background: var(--color-white);
    border-radius: 8px;
    width: 750px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.modal--visible .modal__content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.2s;
}

.modal__close:hover {
    opacity: 0.6;
}

.modal__title {
    font-family: var(--font-main);
    font-size: 48px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 16px;
    max-width: 495px;
}

.modal__subtitle {
    font-size: 20px;
    font-weight: 400;
    color: var(--color-dark);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 421px;
}

.modal__form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    max-width: 650px;
}

.modal__field {
    width: 100%;
}

.modal__field input {
    width: 100%;
    padding: 22px 25px;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-main);
    color: var(--color-dark);
    outline: none;
    transition: border-color 0.2s;
}

.modal__field input:focus {
    border-color: var(--color-primary);
}

.modal__field input::placeholder {
    color: #9CA3AF;
}

.modal__field.custom-select {
    width: 100%;
}

.modal__submit {
    width: 100%;
    height: 68px;
    padding: 0 40px;
    margin-top: 8px;
}

.modal__disclaimer {
    font-size: 16px;
    color: var(--color-dark);
    line-height: 1.4;
    margin-top: 4px;
    max-width: 263px;
    text-align: center;
    align-self: center;
}

/* ===== CUSTOM SELECT ===== */
.custom-select {
    position: relative;
    width: 100%;
}

.custom-select__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 25px;
    background: var(--color-white);
    border-radius: 8px;
    font-size: 16px;
    color: #9CA3AF;
    cursor: pointer;
    user-select: none;
}

.modal__field.custom-select .custom-select__trigger {
    padding: 22px 25px;
    border: 1px solid #e3e3e3;
    transition: border-color 0.2s;
}

.modal__field.custom-select .custom-select__trigger:hover {
    border-color: var(--color-primary);
}

.custom-select__arrow {
    display: flex;
    align-items: center;
    transition: transform 0.2s;
}

.custom-select--open .custom-select__arrow {
    transform: rotate(180deg);
}

.custom-select__value--selected {
    color: var(--color-dark);
}

.custom-select__dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: var(--color-white);
    border-radius: 8px;
    padding: 4px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    z-index: 10;
}

.custom-select--open .custom-select__dropdown {
    display: block;
}

.custom-select__option {
    padding: 5px 25px;
    font-size: 16px;
    color: var(--color-dark);
    cursor: pointer;
    line-height: 22px;
    text-align: left;
    transition: background 0.15s, color 0.15s;
}

.custom-select__option:hover,
.custom-select__option--active {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ===== Mobile Nav Overlay ===== */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: #32332E;
    z-index: 200;
    flex-direction: column;
    padding: 28px 16px 40px;
    display: flex;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-nav--active {
    transform: translateX(0);
}

.mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.mobile-nav__logo-icon {
    filter: brightness(0) invert(1);
}

.mobile-nav__logo-name,
.mobile-nav__logo-sub {
    color: #fff;
}

.mobile-nav__close {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-nav__links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.mobile-nav__link {
    font-family: var(--font-main);
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    line-height: 42px;
    text-decoration: none;
}

.mobile-nav__footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mobile-nav__contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav__contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

.mobile-nav__contact-icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.mobile-nav__divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.mobile-nav__copyright {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    line-height: 16px;
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 550px) {
    .trust-bar__container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 16px;
    }

    .trust-bar__item {
        text-align: center;
        align-items: center;
        flex-direction: column;
        gap: 16px;
    }

    .trust-bar__text {
        align-items: center;
    }

    .service-card__image {
        height: 280px;
    }

    .service-card__image::before {
        height: 55%;
        top: -2%;
    }

    .service-area__map img {
        width: 100%;
    }

    .gallery__slide {
        height: 180px;
    }

    .gallery__photo-arrow {
        top: 90px;
    }

    .gallery__photo-arrow--left {
        left: 10px;
    }

    .gallery__photo-arrow--right {
        left: 250px;
        right: auto;
    }
}

/* ===== MODAL MOBILE ===== */
@media (max-width: 768px) {
    .modal__overlay {
        display: none;
    }

    .modal__content {
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        padding: 70px 16px 40px;
        justify-content: flex-start;
    }

    .modal__close {
        top: 16px;
        right: 16px;
    }

    .modal__title {
        font-size: 24px;
        font-weight: 600;
        line-height: 1.6;
        max-width: 248px;
        margin-bottom: 6px;
    }

    .modal__subtitle {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.6;
        max-width: 248px;
        margin-bottom: 40px;
    }

    .modal__form {
        gap: 10px;
        max-width: 326px;
        width: 100%;
    }

    .modal__field input {
        padding: 16px 20px;
        font-size: 14px;
    }

    .modal__field.custom-select .custom-select__trigger {
        padding: 16px 20px;
        font-size: 14px;
    }

    .modal__submit {
        height: 56px;
        font-size: 16px;
        margin-top: 0;
    }

    .modal__disclaimer {
        font-size: 14px;
        font-weight: 300;
        max-width: 227px;
        line-height: 16px;
    }
}







