/*
Theme Name: Renovation Mario
Theme URI: https://renovationmario.com/
Author: Free33
Description: Lightweight WordPress theme migrated from the Tilda landing page for Super Mario renovation services in Dubai.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
Text Domain: renovation-mario
*/

@font-face {
    font-family: 'Toxigenesis';
    src: url('assets/fonts/Toxigenesis_W00_Regu.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('assets/fonts/manrope-300.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('assets/fonts/manrope-400.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('assets/fonts/manrope-500.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('assets/fonts/manrope-600.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('assets/fonts/manrope-700.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --t-headline-font: 'Toxigenesis', Arial, sans-serif;
    --t-text-font: 'Manrope', Arial, sans-serif;
    --landing-container: 1200px;
    --landing-h1-size: 50px;
    --landing-h1-line: 1.15;
    --landing-h2-size: 50px;
    --landing-h2-line: 1.15;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    background: #0f0f0f;
    color: #fff;
    font-family: 'Manrope', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
}

img {
    max-width: 100%;
    height: auto;
    border: 0;
}

.site-page {
    overflow: hidden;
    background: #0f0f0f;
}

.landing-container {
    width: min(100% - 40px, var(--landing-container));
    margin-right: auto;
    margin-left: auto;
}

.site-page section {
    scroll-margin-top: 96px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.landing-header {
    position: absolute;
    top: 18px;
    left: 50%;
    z-index: 50;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) auto;
    align-items: center;
    gap: 26px;
    width: min(100% - 40px, 1160px);
    transform: translateX(-50%);
}

.landing-header__logo {
    display: block;
    width: 105px;
}

.landing-header__logo img,
.landing-header__messenger img {
    display: block;
    width: 100%;
    height: auto;
}

.landing-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
}

.landing-header__menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.landing-header__nav a,
.landing-header__menu a {
    color: #fff;
    font: 400 18px/1.55 'Manrope', Arial, sans-serif;
    transition: opacity .2s ease;
}

.landing-header__nav a:hover,
.landing-header__menu a:hover {
    opacity: .72;
}

.landing-header__toggle {
    display: none;
}

.landing-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.landing-header__messenger {
    display: block;
    flex: 0 0 40px;
    width: 40px;
}

.landing-header__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    min-width: 146px;
    padding: 0 18px;
    border: 1px solid #fff;
    border-radius: 555px;
    color: #fff;
    font: 400 14px/1.55 'Manrope', Arial, sans-serif;
    backdrop-filter: blur(24px);
    transition: background-color .2s ease, color .2s ease;
}

.landing-header__phone:hover {
    background: #fff;
    color: #0f0f0f;
}

.language-switcher {
    display: flex;
    flex: 0 0 auto;
    gap: 6px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 999px;
    background: rgba(0, 0, 0, .28);
    backdrop-filter: blur(18px);
}

.language-switcher a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 30px;
    padding: 0 9px;
    border-radius: 999px;
    color: #fff;
    font: 500 12px/1 'Manrope', Arial, sans-serif;
}

.language-switcher a.is-active {
    background: #fff;
    color: #0f0f0f;
}

@media screen and (max-width: 1199px) {
    :root {
        --landing-container: 960px;
        --landing-h1-size: 43px;
        --landing-h2-size: 43px;
    }

    .landing-header {
        top: 25px;
        grid-template-columns: 110px minmax(0, 1fr) auto;
        gap: 18px;
        width: min(100% - 20px, 940px);
    }

    .landing-header__logo {
        width: 89px;
    }

    .landing-header__nav {
        gap: 28px;
    }

    .landing-header__menu {
        gap: 28px;
    }

    .landing-header__nav a,
    .landing-header__menu a {
        font-size: 17px;
    }
}

@media screen and (max-width: 959px) {
    :root {
        --landing-container: 640px;
        --landing-h1-size: 29px;
        --landing-h1-line: 1.35;
        --landing-h2-size: 29px;
        --landing-h2-line: 1.2;
    }

    .landing-header {
        top: 10px;
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 12px;
        width: min(100% - 20px, 620px);
    }

    .landing-header__logo {
        width: 79px;
    }

    .landing-header__toggle {
        display: inline-flex;
        position: relative;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        width: 40px;
        height: 40px;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, .45);
        border-radius: 999px;
        background: rgba(0, 0, 0, .28);
        backdrop-filter: blur(18px);
        cursor: pointer;
    }

    .landing-header__toggle span {
        display: block;
        width: 17px;
        height: 2px;
        border-radius: 99px;
        background: #fff;
        transition: transform .2s ease, opacity .2s ease;
    }

    .landing-header.is-menu-open .landing-header__toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .landing-header.is-menu-open .landing-header__toggle span:nth-child(2) {
        opacity: 0;
    }

    .landing-header.is-menu-open .landing-header__toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .landing-header__nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        width: min(240px, calc(100vw - 108px));
        padding: 10px;
        border: 1px solid rgba(255, 255, 255, .24);
        border-radius: 20px;
        background: rgba(15, 15, 15, .88);
        backdrop-filter: blur(24px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity .2s ease, transform .2s ease;
    }

    .landing-header__menu {
        display: grid;
        gap: 0;
    }

    .landing-header.is-menu-open .landing-header__nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .landing-header__nav a,
    .landing-header__menu a {
        padding: 11px 12px;
        border-radius: 12px;
        font-size: 15px;
    }

    .landing-header__nav a:hover,
    .landing-header__menu a:hover {
        background: rgba(255, 255, 255, .1);
        opacity: 1;
    }

    .landing-header__actions {
        justify-self: end;
    }

    .landing-header__phone {
        height: 36px;
        min-width: 132px;
        padding: 0 14px;
        font-size: 13px;
    }

    .landing-header__messenger {
        flex-basis: 36px;
        width: 36px;
    }
}

@media screen and (max-width: 640px) {
    .landing-header {
        top: 10px;
        width: min(100% - 16px, 360px);
        gap: 8px;
    }

    .landing-header__logo {
        width: 69px;
    }

    .landing-header__toggle {
        width: 34px;
        height: 34px;
        gap: 4px;
    }

    .landing-header__toggle span {
        width: 15px;
    }

    .landing-header.is-menu-open .landing-header__toggle span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .landing-header.is-menu-open .landing-header__toggle span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .landing-header__actions {
        gap: 6px;
    }

    .landing-header__messenger {
        flex-basis: 32px;
        width: 32px;
    }

    .landing-header__phone {
        height: 32px;
        min-width: 0;
        padding: 0 10px;
        font-size: 11px;
    }

    .language-switcher {
        gap: 4px;
        padding: 3px;
    }

    .language-switcher a {
        min-width: 28px;
        height: 26px;
        padding: 0 7px;
        font-size: 11px;
    }

    .landing-header__nav {
        width: min(220px, calc(100vw - 93px));
    }

    .landing-header__nav a,
    .landing-header__menu a {
        font-size: 13px;
    }
}

@media screen and (max-width: 639px) {
    :root {
        --landing-container: min(90vw, 420px);
        --landing-h1-size: 27px;
        --landing-h1-line: 1.3;
        --landing-h2-size: 27px;
    }

    .landing-container {
    }
}

.landing-header--inner {
    position: relative;
    top: auto;
    left: auto;
    margin: 18px auto 0;
    transform: none;
}

.landing-badge {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 39px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, .58);
    border-radius: 999px;
    background: rgba(255, 255, 255, .25);
    color: #fff;
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
}

.landing-badge--icon {
    justify-content: flex-start;
    min-height: 46px;
    gap: 12px;
    padding: 0 17px;
    border-color: rgba(255, 255, 255, .34);
    background: rgba(255, 255, 255, .15);
    font-size: 14px;
    font-weight: 700;
}

.landing-badge__icon {
    position: relative;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #f20d0d;
}

.landing-badge__icon::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 3px;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

@media screen and (max-width: 959px) {
    .landing-badge {
        min-height: 31px;
        padding: 0 12px;
        font-size: 12px;
    }

    .landing-badge--icon {
        min-height: 39px;
        gap: 8px;
        padding: 0 12px;
        font-size: 12px;
    }

    .landing-badge__icon {
        flex-basis: 16px;
        width: 16px;
        height: 16px;
    }

    .landing-badge__icon::after {
        left: 5px;
        top: 3px;
        width: 5px;
        height: 8px;
    }
}

@media screen and (max-width: 639px) {
    .landing-badge {
        min-height: 25px;
        padding: 0 9px;
        font-size: 10px;
    }

    .landing-badge--icon {
        min-height: 32px;
        gap: 7px;
        padding: 0 10px;
        font-size: 11px;
    }

    .landing-badge__icon {
        flex-basis: 15px;
        width: 15px;
        height: 15px;
    }

    .landing-badge__icon::after {
        left: 4px;
        top: 2px;
        width: 5px;
        height: 8px;
    }
}

.landing-gallery {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
    background: #111;
}

.landing-gallery img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: cover;
    display: block;
    object-position: center;
}

.landing-gallery__slide, .lightbox-trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
}

.landing-gallery__slide {
    position: absolute;
    inset: 0;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}

.landing-gallery__slide.is-active {
    opacity: 1;
    visibility: visible;
}

.landing-gallery__nav {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 50%;
    background: rgba(0, 0, 0, .38);
    color: #fff;
    font-size: 0;
    transform: translateY(-50%);
    cursor: pointer;
}

.landing-gallery__nav::before,
.site-lightbox__nav::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}

.landing-gallery__nav--prev::before,
.site-lightbox__nav--prev::before {
    transform: translateX(2px) rotate(-135deg);
}

.landing-gallery__nav--next::before,
.site-lightbox__nav--next::before {
    transform: translateX(-2px) rotate(45deg);
}

.landing-gallery__nav--prev {
    left: 10px;
}

.landing-gallery__nav--next {
    right: 10px;
}

.landing-gallery__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    z-index: 4;
    display: flex;
    justify-content: center;
    gap: 7px;
}

.landing-gallery__dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .54);
    cursor: pointer;
}

.landing-gallery__dot.is-active {
    background: #fff;
}

.hero-section {
    position: relative;
    min-height: 765px;
    overflow: hidden;
    background: url('assets/img/img-bg-hero.webp') center / cover no-repeat #0f0f0f;
    color: #fff;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .54) 42%, rgba(0, 0, 0, .28) 100%),
            rgba(0, 0, 0, .22);
    pointer-events: none;
}

.hero-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 147px;
    background-image: linear-gradient(0turn, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .67) 73%);
    opacity: .8;
    pointer-events: none;
}

.hero-section__container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 40px;
    min-height: inherit;
    padding: 0 0 130px;
}

.hero-section__content {
    display: grid;
    gap: 34px;
}

.hero-section__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-section__badges .landing-badge {
    width: auto;
    min-width: 191px;
}

.hero-section__text .subtitle {
    max-width: 571px;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.hero-section__points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 640px;
    margin-top: 28px;
}

.hero-section__points li {
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .38);
}

.hero-section h1 {
    max-width: 571px;
    margin: 0;
    color: #fff;
    font: 600 var(--landing-h1-size)/var(--landing-h1-line) var(--t-headline-font);
}

.hero-section__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 270px;
    height: 65px;
    padding: 0 30px;
    border-radius: 555px;
    background: #fff;
    color: #000;
    font: 500 17px/1 var(--t-text-font);
    transition: background-color .2s ease, transform .2s ease;
}

.hero-section__button:hover {
    background: #f2eee5;
    transform: translateY(-1px);
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stats-item {
    display: grid;
    justify-items: center;
    gap: 24px;
    text-align: center;
    font: 600 24px/1.25 var(--t-text-font);
}

.stats-item img {
    width: 130px;
    height: 87px;
    object-fit: contain;
}

@media screen and (max-width: 1199px) {
    .hero-section {
        min-height: 616px;
    }

    .hero-section__container {
        padding-bottom: 100px;
    }

    .hero-section__button {
        min-width: 230px;
        height: 50px;
    }
}

@media screen and (max-width: 959px) {
    .hero-section {
        min-height: 496px;
    }

    .hero-section__container {
        grid-template-columns: 1fr;
        align-content: end;
        align-items: start;
        gap: 26px;
        padding-bottom: 125px;
    }

    .hero-section__content {
        gap: 26px;
    }

    .hero-section h1 {
        max-width: 360px;
    }

    .hero-section__button {
        min-width: 190px;
        height: 47px;
        font-size: 14px;
    }
}

@media screen and (max-width: 639px) {
    .hero-section {
        min-height: 100svh;
        background-image: url('assets/img/img-bg-hero-sm.webp');
    }

    .hero-section__overlay {
        opacity: .45;
    }

    .hero-section::before {
        background:
                linear-gradient(180deg, rgba(0, 0, 0, .76) 0%, rgba(0, 0, 0, .58) 44%, rgba(0, 0, 0, .78) 100%),
                rgba(0, 0, 0, .24);
    }

    .hero-section__container {
        padding-bottom: 10svh;
        padding-top: 80px;
    }

    .hero-section__points {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 20px;
    }

    .hero-section__badges {
        gap: 5px;
    }

    .hero-section__badges .landing-badge {
        min-width: 0;
    }

    .hero-section__button {
        min-width: 170px;
        height: 45px;
        font-size: 13px;
    }
}

.services-section {
    background: #0f0f0f;
    color: #fff;
    padding: 75px 0 60px;
}


.services-title {
    margin: 0 auto 70px;
    text-align: center;
    font: 600 var(--landing-h2-size)/var(--landing-h2-line) var(--t-headline-font);
}

.services-list {
    display: grid;
    gap: 80px;
}

.service-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 36px;
}

.service-card--reversed .service-card__gallery {
    order: 2;
}

.service-card--reversed .service-card__content {
    order: 1;
}

.service-card__gallery {
    min-height: 384px;
    border-radius: 12px;
    overflow: hidden;
}

.service-card__gallery .landing-gallery {
    height: 100%;
    min-height: inherit;
}

.service-card__gallery .landing-gallery img {
    width: 100%;
    height: 100%;
    max-height: none;
}

.service-card__content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.service-card__content .landing-badge {
    width: auto;
    min-width: 169px;
    min-height: 39px;
    margin-bottom: 32px;
}

.service-card__content h3 {
    margin: 0;
    color: #f90303;
    font: 600 35px/1.15 var(--t-text-font);
}

.service-card__content p {
    margin: 25px 0 28px;
    max-width: 520px;
    color: #fff;
    font: 400 16px/1.55 var(--t-text-font);
}

.service-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 55px;
    margin-top: 34px;
    padding: 0 28px;
    border-radius: 555px;
    background: #f90303;
    color: #fff;
    font: 600 16px/1 var(--t-text-font);
    transition: background-color .2s ease, transform .2s ease;
}

.service-card__button:hover {
    background: #d90000;
    transform: translateY(-1px);
}

.service-card__options {
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.service-card__options li {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font: 400 16px/1.35 var(--t-text-font);
}

.service-card__options li::before {
    content: "";
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    background: url('assets/img/icon-success.png') center / contain no-repeat;
}

.service-card__options li::after {
    content: "";
    position: absolute;
    left: 35px;
    right: 0;
    bottom: -3px;
    height: 1px;
    background: rgba(255, 255, 255, .42);
}

@media screen and (max-width: 959px) {
    .services-section {
        padding: 60px 0;
    }

    .services-title {
        margin-bottom: 42px;
    }

    .services-list {
        gap: 58px;
    }

    .service-card {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .service-card--reversed .service-card__gallery,
    .service-card__gallery {
        order: 1;
    }

    .service-card--reversed .service-card__content,
    .service-card__content {
        order: 2;
    }

    .service-card__gallery {
        min-height: 320px;
    }

    .service-card__content h3 {
        font-size: 30px;
    }
}

@media screen and (max-width: 639px) {
    .services-list {
        gap: 48px;
    }

    .service-card__gallery {
        min-height: 260px;
    }

    .service-card__content .landing-badge {
        margin-bottom: 22px;
    }

    .service-card__content h3 {
        font-size: 27px;
    }

    .service-card__content p {
        margin-top: 18px;
        font-size: 14px;
    }

    .service-card__button {
        min-width: 170px;
        height: 48px;
        margin-top: 26px;
        font-size: 14px;
    }

    .service-card__options {
        margin-top: 26px;
    }

    .service-card__options li {
        font-size: 14px;
    }
}

.landing-form {
    display: grid;
    gap: 15px;
    width: 100%;
}

.landing-form label {
    display: block;
}

.landing-form input:not([type="submit"]),
.landing-form textarea,
.landing-form select {
    width: 100%;
    height: 50px;
    padding: 0 20px;
    border: 1px solid #c9c9c9;
    border-radius: 30px;
    background: #fff;
    color: #000;
    font: 400 14px/1.33 'Manrope', Arial, sans-serif;
}

.landing-form input:focus-visible,
.landing-form textarea:focus-visible,
.landing-form select:focus-visible {
    outline-color: #f90303;
}

.landing-form button,
.landing-form input[type="submit"],
.wpcf7 .wpcf7-submit {
    width: 100%;
    height: 55px;
    border: 0;
    border-radius: 30px;
    background: #000;
    color: #fff;
    font: 600 17px/1 'Manrope', Arial, sans-serif;
    cursor: pointer;
    transition: opacity .2s ease, transform .2s ease;
}

.landing-form button:hover,
.landing-form input[type="submit"]:hover,
.wpcf7 .wpcf7-submit:hover {
    transform: translateY(-1px);
}

.landing-form button:disabled,
.landing-form input[type="submit"]:disabled,
.wpcf7 .wpcf7-submit:disabled {
    cursor: wait;
    opacity: .62;
    transform: none;
}

.wpcf7-form-control-wrap {
    display: block;
}

.wpcf7-not-valid {
    border-color: #b00020 !important;
}

.wpcf7-not-valid-tip {
    display: block;
    margin-top: 6px;
    color: #b00020;
    font: 500 12px/1.35 var(--t-text-font);
}

.wpcf7 form .wpcf7-response-output {
    margin: 0;
    padding: 0;
    border: 0;
    color: #333;
    font: 500 13px/1.35 var(--t-text-font);
}

.wpcf7 form.sent .wpcf7-response-output {
    color: #146b2e;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    color: #b00020;
}

.form-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.cf7-form-shell .wpcf7 {
    width: 100%;
}

.form-message {
    min-height: 18px;
    margin: -2px 0 0;
    color: #333;
    font: 500 13px/1.35 var(--t-text-font);
}

.form-message.is-success {
    color: #146b2e;
}

.form-message.is-error {
    color: #b00020;
}

.landing-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, .62);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
}

.landing-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.landing-modal__dialog {
    position: relative;
    width: min(100%, 460px);
    padding: 38px;
    border-radius: 28px;
    background: #f2eee5;
    color: #0f0f0f;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .42);
    transform: translateY(14px);
    transition: transform .2s ease;
}

.landing-modal.is-open .landing-modal__dialog {
    transform: translateY(0);
}

.landing-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #0f0f0f;
    color: #fff;
    font: 400 28px/1 Arial, sans-serif;
    cursor: pointer;
}

.landing-modal h2 {
    margin: 0;
    font: 600 34px/1.12 var(--t-headline-font);
}

.landing-modal p {
    margin: 14px 0 24px;
    font: 400 16px/1.45 var(--t-text-font);
}

.landing-modal__form {
    gap: 12px;
}

.has-modal body {
    overflow: hidden;
}

.content-section {
    position: relative;
}

.lightbox-trigger {
    height: 100%;
}

.lightbox-trigger img {
    transition: transform .25s ease;
}

.lightbox-trigger:hover img {
    transform: scale(1.02);
}

.site-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px;
    background: rgba(0, 0, 0, .88);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
}

.site-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.site-lightbox__image {
    max-width: min(1120px, 90vw);
    max-height: 88vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 22px 80px rgba(0, 0, 0, .45);
}

.site-lightbox__close, .site-lightbox__nav {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 50%;
    background: rgba(0, 0, 0, .45);
    color: #fff;
    cursor: pointer;
}

.site-lightbox__close {
    top: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
    font: 300 34px/1 Arial, sans-serif;
}

.site-lightbox__nav {
    top: 50%;
    width: 52px;
    height: 52px;
    font-size: 0;
    transform: translateY(-50%);
}

.site-lightbox__nav::before {
    width: 14px;
    height: 14px;
    border-width: 3px;
}

.site-lightbox__nav--prev {
    left: 22px;
}

.site-lightbox__nav--next {
    right: 22px;
}

.has-lightbox body {
    overflow: hidden;
}

.contacts-section {
    position: relative;
    overflow: hidden;
}

.contacts-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('assets/img/img-bg-contacts.webp') center / cover no-repeat;
    opacity: .9;
}


.contacts-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 398px;
    align-items: center;
    gap: 70px;
    min-height: 630px;
    padding: 80px 0;
}

.contacts-copy h2 {
    max-width: 572px;
    margin: 0;
    color: #fff;
    font: 600 var(--landing-h2-size)/var(--landing-h2-line) var(--t-headline-font);
}

.contacts-copy p {
    max-width: 375px;
    margin: 35px 0 0;
    color: #fff;
    font: 400 20px/1.45 var(--t-text-font);
}

.contacts-form {
    width: 100%;
    padding: 34px;
    border-radius: 28px;
    background: rgba(242, 238, 229, .92);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
    backdrop-filter: blur(12px);
}

@media screen and (max-width: 959px) {
    .contacts-container {
        grid-template-columns: 1fr;
        gap: 34px;
        min-height: 0;
        padding: 64px 0;
    }

    .contacts-copy h2,
    .contacts-copy p {
        max-width: 520px;
    }

    .contacts-copy p {
        margin-top: 20px;
        font-size: 17px;
    }

    .contacts-form {
        max-width: 398px;
    }
}

@media screen and (max-width: 639px) {
    .contacts-container {
        padding: 52px 0;
    }

    .contacts-copy p {
        font-size: 15px;
    }

    .contacts-form {
        padding: 22px;
        border-radius: 22px;
    }
}

.landing-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
    padding: 24px max(20px, calc((100% - 1160px) / 2)) 30px;
    background: #0f0f0f;
    color: #fff;
}

.landing-footer__logo {
    display: block;
    width: 105px;
}

.landing-footer__logo img,
.landing-footer__socials img {
    display: block;
    width: 100%;
    height: auto;
}

.landing-footer__schedule {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.landing-footer__schedule a {
    color: #fff;
    font: 500 18px/1.35 'Manrope', Arial, sans-serif;
}

.landing-footer__schedule span {
    color: #fff;
    font: 400 16px/1.35 'Manrope', Arial, sans-serif;
    opacity: .88;
}

.landing-footer__socials {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.landing-footer__socials a {
    display: block;
    width: 40px;
    transition: opacity .2s ease;
}

.landing-footer__socials a:hover {
    opacity: .72;
}

.inner-page {
    min-height: 60vh;
}

.inner-page__section {
    padding: 72px 0 96px;
}

.inner-page__content {
    max-width: 860px;
    color: #fff;
}

.inner-page__content h1 {
    margin: 0 0 32px;
    font: 600 var(--landing-h1-size)/var(--landing-h1-line) var(--t-headline-font);
}

.inner-page__content h2,
.inner-page__content h3 {
    margin: 36px 0 16px;
    font-family: var(--t-headline-font);
    font-weight: 600;
    line-height: 1.2;
}

.inner-page__content p,
.inner-page__content li {
    color: rgba(255, 255, 255, .86);
    font: 400 17px/1.65 var(--t-text-font);
}

.inner-page__content a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media screen and (max-width: 960px) {
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .stats-section {
        padding: 54px 0
    }

    .landing-footer {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 18px;
        padding-top: 32px;
    }

    .landing-footer__socials {
        justify-content: center;
    }
}

@media screen and (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-item {
        font-size: 18px
    }

    .landing-gallery__nav {
        width: 30px;
        height: 30px;
    }

    .site-lightbox {
        padding: 18px
    }

    .site-lightbox__close {
        top: 12px;
        right: 12px
    }

    .site-lightbox__nav {
        width: 42px;
        height: 42px;
    }

    .site-lightbox__nav--prev {
        left: 10px
    }

    .site-lightbox__nav--next {
        right: 10px
    }

    .landing-footer {
        padding-inline: 20px;
    }

    .landing-footer__logo {
        width: 88px;
    }

    .landing-footer__schedule a {
        font-size: 16px;
    }

    .landing-footer__schedule span {
        font-size: 14px;
    }
}

.check-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: inherit;
    font: 500 16px/1.45 var(--t-text-font);
}

.check-list li::before {
    content: "";
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    background: url('assets/img/icon-success.png') center / contain no-repeat;
}

.service-card__options li::after {
    display: none;
}

.why-section {
    padding: 72px 0 48px;
    background: #0f0f0f;
    color: #fff;
}

.why-card {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, 1fr);
    gap: 48px;
    align-items: center;
    padding: 44px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(249, 3, 3, .95), rgba(130, 0, 0, .88));
    box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

.why-card h2 {
    margin: 0;
    font: 600 var(--landing-h2-size)/var(--landing-h2-line) var(--t-headline-font);
}

.why-list {
    grid-template-columns: 1fr;
}

.why-list li {
    font-size: 18px;
}

.featured-section,
.process-section,
.trust-section {
    background: #0f0f0f;
    color: #fff;
}

.featured-section {
    position: relative;
    padding: 92px 0;
    overflow: hidden;
    background:
            radial-gradient(circle at 18% 18%, rgba(249, 3, 3, .34) 0, rgba(249, 3, 3, 0) 28%),
            linear-gradient(135deg, #1b1111 0%, #0f0f0f 52%, #250404 100%);
}

.featured-section::before {
    content: "";
    position: absolute;
    inset: 26px max(20px, calc((100% - var(--landing-container)) / 2));
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 38px;
    pointer-events: none;
}

.featured-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
    gap: 46px;
    align-items: center;
    padding: 44px;
}

.section-eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    color: #f90303;
    font: 700 13px/1 var(--t-text-font);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.featured-copy h2,
.process-header h2 {
    margin: 0;
    font: 600 var(--landing-h2-size)/var(--landing-h2-line) var(--t-headline-font);
}

.featured-copy p {
    margin: 26px 0 0;
    color: rgba(255, 255, 255, .88);
    font: 600 24px/1.5 var(--t-text-font);
}

.featured-gallery .landing-gallery {
    min-height: 470px;
    border-radius: 24px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .42);
}

.process-section {
    padding: 78px 0;
}

.process-container {
    display: grid;
    gap: 44px;
}

.process-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
}

.process-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 56px;
    padding: 0 26px;
    border-radius: 999px;
    background: #f90303;
    color: #fff;
    font: 700 15px/1 var(--t-text-font);
    transition: background-color .2s ease, transform .2s ease;
}

.process-button:hover {
    background: #d90000;
    transform: translateY(-1px);
}

.process-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    min-height: 220px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 26px;
    background: rgba(255, 255, 255, .06);
}

.process-list span {
    display: block;
    margin-bottom: 28px;
    color: #f90303;
    font: 700 14px/1 var(--t-text-font);
}

.process-list h3 {
    margin: 0;
    font: 700 20px/1.25 var(--t-text-font);
}

.process-list p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .76);
    font: 400 15px/1.55 var(--t-text-font);
}

.trust-section {
    padding: 28px 0 82px;
}

.trust-card {
    padding: 46px;
    border-radius: 30px;
    background: #f2eee5;
    color: #0f0f0f;
}

.trust-card p {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    font: 600 24px/1.48 var(--t-text-font);
}

.contacts-copy h2 {
    max-width: 680px;
}

@media screen and (max-width: 959px) {
    .why-card,
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 32px;
    }

    .process-header {
        display: grid;
        align-items: start;
    }

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

@media screen and (max-width: 639px) {
    .why-section,
    .featured-section,
    .process-section {
        padding: 52px 0;
    }

    .why-card,
    .featured-grid,
    .trust-card {
        padding: 26px;
        border-radius: 24px;
    }

    .why-list li,
    .check-list li {
        font-size: 15px;
    }

    .featured-copy p,
    .trust-card p {
        font-size: 18px;
    }

    .featured-gallery .landing-gallery {
        min-height: 280px;
    }

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

    .process-list li {
        min-height: 0;
        padding: 24px;
    }
}
