@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

@font-face {
    font-family: "Graphik";
    src: url("../fonts/Graphik/Graphik-Regular.woff2") format("woff2"),
        url("../fonts/Graphik/Graphik-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Graphik";
    src: url("../fonts/Graphik/Graphik-Medium.woff2") format("woff2"),
        url("../fonts/Graphik/Graphik-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Graphik";
    src: url("../fonts/Graphik/Graphik-Bold.woff2") format("woff2"),
        url("../fonts/Graphik/Graphik-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../fonts/SF-Pro-Text/SFProText-Regular.woff2") format("woff2"),
        url("../fonts/SF-Pro-Text/SFProText-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../fonts/SF-Pro-Text/SFProText-Medium.woff2") format("woff2"),
        url("../fonts/SF-Pro-Text/SFProText-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../fonts/SF-Pro-Text/SFProText-Bold.woff2") format("woff2"),
        url("../fonts/SF-Pro-Text/SFProText-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --prime: #f5b1b5;
    --black-800: rgba(0, 0, 0, 0.8);
    --black-600: rgba(0, 0, 0, 0.6);
    --white: #fff;
    --white-700: rgba(255, 255, 255, 0.7);
    --colorgr: #6e7072;
    --font-family: "Montserrat", sans-serif;
    --second-family: "Graphik", sans-serif;
    --third-family: "Open Sans", sans-serif;
    --font3: "Inter", sans-serif;
    --font4: "SF Pro Text", sans-serif;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth !important;
    min-height: 100%;
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

html.popup-open {
    overflow: hidden !important;
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: inherit;
}

body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings: "wdth" 100, "YTLC" 500;
    min-height: 100dvh;
    overflow-x: hidden !important;
    max-width: 100vw !important;
    backface-visibility: hidden;
    width: 100% !important;
    height: 100% !important;

    background-image: url("../img/Mask-group.svg");
    background-repeat: repeat-y;
    background-size: cover;
    background-position: center;
}

body.lock-scroll {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden !important;
    width: 100%;
    touch-action: none;
    -ms-overflow-style: none;
    /* IE */
    scrollbar-width: none;
    /* Firefox */
}

.wrapper {
    margin: 0 auto;
    max-width: 1298px;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25),
        1.65px 2.48px 0px rgba(0, 0, 0, 0.2), 0px 0px 33.04px rgba(0, 0, 0, 0.5);
    padding-bottom: 60px;
}

@media (max-width: 769px) {
    .wrapper {
        padding-bottom: 0;
    }
}

main {
    flex: 1;
}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
}

.header-original {
    z-index: 10;
    position: relative;
}

#header-trigger {
    height: 1px;
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(calc(-100% - 20px));
    max-width: 1298px;
    width: 100%;
    z-index: 9000;
    transition: transform 0.3s ease;
    border-bottom: 1px solid var(--prime);
    border-top: 1px solid var(--prime);
    backdrop-filter: blur(50px);
    background: rgba(0, 0, 0, 0.4), rgba(245, 177, 181, 0.1);
}

/* Показывается при скролле */
.fixed-header.visible {
    transform: translateX(-50%) translateY(20px);
}

.fixed-header .header-wrapper {
    margin: 0;
}

.header-wrapper {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1298px;
    width: 100%;
    margin: clamp(25px, 3.5vw, 40px) auto 0;
    padding: clamp(10px, 3vw, 24px) clamp(60px, 20vw, 226px) clamp(10px, 3vw, 24px) clamp(18px, 4vw, 48px);
    gap: 30px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 45px;
}

.header-logo img {
    max-width: 100%;
}

.header-list {
    display: flex;
    align-items: center;
    gap: 26px;
}

.header-link {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: clamp(10px, 1.5vw, 16px);
    line-height: 280%;
    color: var(--white);
    white-space: nowrap;
    transition: all 0.2s ease-in-out;
}

.header-link.active {
    border-bottom: 1px solid var(--prime);
}

.header-link:hover {
    color: var(--prime);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 23px;
    position: relative;
    max-width: 253px;
    width: 100%;
}

.header-right-link {
    display: flex;
    justify-content: center;
    border: 1px solid var(--prime);
    border-radius: 1000px;
    padding: clamp(6px, 2vw, 21px) clamp(6px, 2vw, 20px);
    background-color: var(--white);
    font-family: var(--font-family);
    font-weight: 700;
    font-size: clamp(8px, 3vw, 14px);
    text-transform: uppercase;
    text-align: center;
    color: var(--black-800);
    white-space: nowrap;
    transition: all 0.3s;
    max-width: 176px;
    width: 100%;
    cursor: pointer;
}

.header-right-link:hover {
    background-color: rgba(245, 177, 181, 0.6);
}

.header-right-link:active {
    background-color: rgba(245, 177, 181, 0.4);
}

.header-right-button {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--prime);
    border-radius: 50%;
    padding: clamp(6px, 2vw, 21px);
    background-color: var(--white);
    cursor: pointer;
    overflow: hidden;
    width: auto;
    height: auto;
    transition: all 0.3s;
}

.header-right-button span {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: clamp(8px, 3vw, 12px);
    text-align: center;
    color: var(--black-800);
    transition: all 0.3s;
}

.header-right-button:hover {
    background-color: rgba(245, 177, 181, 0.6);
}

.header-right-button.active {
    border-radius: 1000px;
    height: 148px;
    flex-direction: column;
    justify-content: space-around;
    padding: 15px clamp(6px, 2vw, 21px);
}

.language-option.hidden {
    display: none;
}

.header-right-button.active .language-option.hidden {
    display: block;
    animation: slideInLanguage 0.3s ease forwards;
}

@keyframes slideInLanguage {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.language-option:nth-child(1):hover,
.language-option.hidden:nth-child(2):hover,
.language-option.hidden:nth-child(3):hover {
    color: var(--white);
}

.language-option.hidden:nth-child(2) {
    animation-delay: 0.1s;
}

.language-option.hidden:nth-child(3) {
    animation-delay: 0.2s;
}

@media (max-width: 1040px) {
    .header-wrapper {
        gap: 30px;
    }

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

    .header-list {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .header-right {
        display: flex;
        align-items: center;
        gap: 15px;
    }
}

.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    max-width: 32px;
    width: 100%;
    min-height: 20px;
    height: 100%;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.burger span {
    width: 100%;
    height: 1.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger span:nth-child(3) {
    height: 2px;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 8px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -6px);
}

/* Мобильное меню */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    max-width: 100%;
    width: 100%;
    height: 100vh;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    min-height: -webkit-fill-available;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.4s ease;
    background-image: url(../img/background-menu-mobile.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-overflow-scrolling: touch;
}

@supports (-webkit-appearance: none) and (stroke-color: transparent) {
    .mobile-menu {
        height: -webkit-fill-available !important;
    }
}

@supports (-webkit-appearance: none) {
    #mobileMenu {
        min-height: -webkit-fill-available;
    }
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#mobileMenu.android-fix {
    height: calc(100vh - env(keyboard-inset-height, 0px));
}

.mobile-menu .header-list {
    flex-direction: column;
    gap: 30px;
    margin-top: 100px;
    margin-bottom: 30px;
}

.mobile-menu .header-link {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 280%;
    color: var(--white);
}

@media (max-width: 1040px) {
    .header-wrapper {
        gap: 30px;
    }

    .header-left {
        gap: 30px;
    }

    .header-list {
        gap: 15px;
    }

    .header-right {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .fixed-header .header-wrapper {
        margin: 0;
        grid-template-rows: 1fr;
        grid-row-gap: 0;
    }

    .fixed-header .header-right-link {
        display: none;
    }

    .header-logo {
        z-index: 10000;
        order: 1;
    }

    .header-nav {
        display: none;
    }

    .burger {
        display: flex;
        order: 3;
        grid-area: 1 / 2 / 2 / 3;
        max-width: 32px;
        width: 100%;
        max-height: 20px;
        height: 100%;
    }

    .header-wrapper {
        display: grid;
        grid-template-columns: 1fr 32px;
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 30px;
        padding: 18px 20px 30px;
        align-items: center;
        justify-content: space-between;
        margin: 0;
    }

    .header-left {
        gap: 20px;
        justify-content: space-between;
        width: 100%;
        grid-area: 1 / 1 / 2 / 2;
    }

    .header-right-button {
        display: none;
    }

    .header-right {
        grid-area: 2 / 1 / 3 / 3;
        max-width: 100%;
    }

    .header-right-link {
        max-width: 100%;
        padding: clamp(6px, 6vw, 21px) clamp(6px, 6vw, 20px);
        font-size: clamp(8px, 4vw, 14px);
    }

    .mobile-menu .header-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 30px;
        max-width: 217px;
        width: 100%;
        margin-bottom: 21px;
    }

    .mobile-menu .header-right .header-right-link {
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--prime);
        border-radius: 1000px;
        padding: clamp(6px, 5.5vw, 21px) clamp(6px, 5.5vw, 20px);
        background: var(--white);
        font-family: var(--font-family);
        font-weight: 700;
        font-size: clamp(8px, 4vw, 14px);
        text-transform: uppercase;
        text-align: center;
        color: var(--black-800);
        white-space: nowrap;
        width: 100%;
        max-width: 100%;
        cursor: pointer;
    }

    .mobile-menu .header-right .header-right-button {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--prime);
        border-radius: 50%;
        padding: clamp(6px, 5.8vw, 21px);
        background: var(--white);
        font-family: var(--font-family);
        font-weight: 600;
        font-size: 12px;
        font-size: clamp(8px, 3.5vw, 12px);
        text-align: center;
        color: var(--black-800);
        cursor: pointer;
        overflow: hidden;
        width: auto;
        height: auto;
        transition: all 0.3s;
    }

    .mobile-menu .header-right .header-right-button span {
        font-family: var(--font-family);
        font-weight: 600;
        font-size: clamp(8px, 3vw, 12px);
        text-align: center;
        color: var(--black-800);
        transition: all 0.3s;
    }

    .mobile-menu .header-right .header-right-button.active {
        border-radius: 1000px;
        height: 148px;
        flex-direction: column;
        justify-content: space-around;
        padding: 15px clamp(6px, 6vw, 21px);
    }

    .mobile-menu .header-right .header-right-button .language-option.hidden {
        display: none;
    }

    .mobile-menu .header-right .header-right-button.active .language-option.hidden {
        display: block;
        animation: slideInLanguage 0.3s ease forwards;
    }

    @keyframes slideInLanguage {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

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

    .language-option:nth-child(1):hover,
    .language-option.hidden:nth-child(2):hover,
    .language-option.hidden:nth-child(3):hover {
        color: var(--white);
    }

    .language-option.hidden:nth-child(2) {
        animation-delay: 0.1s;
    }

    .language-option.hidden:nth-child(3) {
        animation-delay: 0.2s;
    }

    .header-contacts-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 10px;
        margin-bottom: 4px;
    }

    .hero-wrapper-contacts-address-mobile {
        display: flex;
        align-items: center;
    }

    .hero-wrapper-contacts-address-mobile>span {
        font-family: var(--font-family);
        font-weight: 500;
        font-size: 10px;
        color: var(--white);
    }

    .hero-wrapper-contacts-phone-mobile {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .phone-hero-mobile {
        font-family: var(--font-family);
        font-weight: 700;
        font-size: 18px;
        text-align: right;
        color: var(--white);
    }
}

/* Footer */

.footer-wrapper {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 6.5vw, 50px);
    padding: clamp(20px, 5vw, 52px) clamp(40px, 10vw, 98px) clamp(30px, 6vw, 65px);
    backdrop-filter: blur(33.043479919433594px);
    box-shadow: 11px 5px 29px 0 rgba(243, 168, 206, 0.15),
        2px 2px 0 0 rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.5);
}

.footer-wrapper-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(8px, 2vw, 20px);
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    max-width: 100%;
}

.partners-img {
    display: none;
}

.partners {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(20px, 3.5vw, 50px);
    flex-wrap: wrap;
}

.partners img {
    max-width: 100%;
}

.footer-wrapper-bottom {
    display: flex;
    justify-content: space-between;
    gap: clamp(8px, 2vw, 20px);
}

.footer-wrapper-bottom-nav {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: max-content max-content;
    justify-content: start;
    grid-column-gap: clamp(80px, 15vw, 168px);
    grid-row-gap: 11px;
    margin: 24px 0 12px;
}

.footer-wrapper-bottom-nav-title {
    grid-area: 1 / 1 / 2 / 3;
}

.footer-wrapper-bottom-nav-title span {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: clamp(8px, 2vw, 18px);
    line-height: 140%;
    color: var(--white);
}

.footer-wrapper-bottom-nav-list-1 {
    grid-area: 2 / 1 / 3 / 2;
    display: flex;
    flex-direction: column;
}

.footer-wrapper-bottom-nav-list-2 {
    grid-area: 2 / 2 / 3 / 3;
    display: flex;
    flex-direction: column;
}

.footer-wrapper-bottom-nav-link {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: clamp(8px, 1.5vw, 16px);
    line-height: 200%;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-wrapper-bottom-nav-link:hover {
    color: var(--prime);
}

.footer-wrapper-bottom-address {
    display: flex;
    gap: clamp(20px, 3.5vw, 41px);
}

.footer-wrapper-bottom-hu {
    display: flex;
    gap: clamp(8px, 1.5vw, 17px);
}

.footer-wrapper-bottom-st {
    display: flex;
    gap: clamp(8px, 1.5vw, 17px);
}

.footer-wrapper-bottom-hu span,
.footer-wrapper-bottom-st span {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: clamp(16px, 4.5vw, 48px);
    line-height: 100%;
    color: var(--prime);
}

.footer-wrapper-bottom-hu-text {
    display: flex;
    flex-direction: column;
}

.footer-wrapper-bottom-hu-text p,
.footer-wrapper-bottom-hu-text a {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: clamp(6px, 1.3vw, 14px);
    line-height: 200%;
    color: var(--white);
}

.footer-wrapper-bottom-hu-text a {
    text-decoration: underline;
    text-decoration-skip-ink: none;
}

.footer-wrapper-mobile {
    display: none;
}

@media (max-width: 769px) {
    .footer-wrapper {
        display: flex;
        flex-direction: column;
        gap: clamp(40px, 19vw, 71px);
        padding: clamp(35px, 15vw, 57px) clamp(25px, 11vw, 40px) clamp(30px, 17vw, 65px);
        box-shadow: 11px 5px 29px 0 rgba(243, 168, 206, 0.15);
        background: rgba(0, 0, 0, 0.5);
    }

    .footer-wrapper-top {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        grid-column-gap: 47px;
        grid-row-gap: 44px;
    }

    .footer-logo img {
        max-width: 100%;
    }

    .partners {
        display: none;
    }

    .partners-img {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .partners-img img {
        max-width: 100%;
        object-fit: cover;
        height: auto;
    }

    .footer-wrapper-bottom {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: clamp(40px, 20vw, 71px);
    }

    .footer-wrapper-bottom-nav {
        display: grid;
        grid-template-columns: auto auto;
        grid-template-rows: max-content max-content;
        justify-content: start;
        grid-column-gap: clamp(60px, 30vw, 115px);
        grid-row-gap: 11px;
        margin: 0;
    }

    .footer-wrapper-bottom-nav-title span {
        font-size: clamp(8px, 5vw, 18px);
    }

    .footer-wrapper-bottom-nav-link {
        font-size: clamp(8px, 4.5vw, 16px);
    }

    .footer-wrapper-bottom-address {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: clamp(35px, 16vw, 60px);
    }

    .footer-wrapper-bottom-hu,
    .footer-wrapper-bottom-st {
        display: flex;
        gap: clamp(8px, 4.5vw, 17px);
    }

    .footer-wrapper-bottom-hu span,
    .footer-wrapper-bottom-st span {
        font-size: clamp(16px, 13vw, 48px);
    }

    .footer-wrapper-bottom-hu p,
    .footer-wrapper-bottom-hu a,
    .footer-wrapper-bottom-st p,
    .footer-wrapper-bottom-st a {
        font-size: clamp(6px, 3.5vw, 14px);
    }

    .footer-wrapper-mobile {
        display: flex;
        padding: 0 20px;
    }

    .footer-wrapper-mobile-interior {
        margin: 0 auto;
        max-width: 733px;
        width: 100%;
        height: 60px;
        background: rgba(0, 0, 0, 0.5);
    }
}

/* form-block */

.form-block {
    display: flex;
    flex-direction: column;
    max-width: 424px;
    width: 100%;
    padding: clamp(20px, 10vw, 52px) clamp(20px, 10vw, 46px) clamp(20px, 10vw, 50px) clamp(20px, 10vw, 32px);
    backdrop-filter: blur(33.043479919433594px);
    box-shadow: 11px 5px 29px 0 rgba(243, 168, 206, 0.15);
    background: rgba(0, 0, 0, 0.5);
    gap: 20px;
}

.contact-form-block {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.form-group-block {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #8d8d8d;
margin-bottom: 45px;
}

.form-group-block:nth-child(6) {
   margin-bottom: 20px;
}

.form-group-block label {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: clamp(10px, 4vw, 14px);
    line-height: 143%;
    color: var(--white);
}

.form-group-block input,
.form-group-block select,
.form-group-block textarea {
    border: none;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: clamp(10px, 4vw, 14px);
    line-height: 143%;
    color: var(--white);
    padding: 0 0 10px 0;
    background: transparent;
    transition: all 0.3s ease;
}

.form-group-block textarea {
    font-family: var(--font-family);
    font-size: 14px;
    line-height: 143%;
    color: var(--white);
    padding: 0;
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 35px;
    max-height: 250px;
    overflow-y: auto;
	    width: 100%;
}

.form-group-block input:focus,
.form-group-block select:focus,
.form-group-block textarea {
    border: none;
    outline: none;
    background: transparent;
}

.custom-dropdown-block {
    position: relative;
    width: 100%;
}

.dropdown-selected-block {
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 30px;
}

.dropdown-selected-block span {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: var(--white);
}

.dropdown-arrow-block {
    display: flex;
    width: 8px;
    height: 5px;
}

.dropdown-arrow-block svg {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.dropdown-selected-block.active .dropdown-arrow-block {
    margin-right: 15px;
}

.dropdown-selected-block.active .dropdown-arrow-block svg {
    transform: rotate(180deg);
}

.dropdown-selected-block.active {
    background: rgba(0, 0, 0, 0.9);
}

.dropdown-options-block {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(33.043479919433594px);
    box-shadow: 11px 5px 29px 0 rgba(243, 168, 206, 0.15);
    margin-top: 0px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.dropdown-options-block.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-option-block {
    padding: 0 0 0 4px;
    margin-bottom: 20px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    text-transform: capitalize;
    color: var(--white);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.dropdown-option-block:nth-child(1) {
    border-bottom: 1px solid #8d8d8d;
}

.dropdown-option-block:hover {
    color: var(--prime);
}

.dropdown-option-block.selected {
    color: var(--white);
}

.form-footer-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(5px, 1vw, 10px);
}

.checkbox-group-block {
    display: flex;
    align-items: center;
    gap: 11px;
    flex: 1;
    margin-bottom: 20px;
}

.checkbox-group-block input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
}

.checkbox-group-block label {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: clamp(8px, 3.5vw, 12px);
    line-height: 2.13;
    color: var(--white-700);
    user-select: none;
    cursor: pointer;
}

.custom-checkbox-block {
    position: relative;
    width: 18px;
    height: 18px;
    border: 1px solid #8d8d8d;
    border-radius: 5px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}
.custom-checkbox-block.checked::after {
    transform: rotate(45deg) scale(1);
}

.custom-checkbox.checked::after {
    transform: rotate(45deg) scale(1);
}


#privacyBlock:checked + .custom-checkbox-block::after,
#privacy:checked + .custom-checkbox::after {
    transform: rotate(45deg) scale(1);
}
/* Птичка (галочка) */
.custom-checkbox-block::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 5px;
    width: 5px;
    height: 9px;
    border: solid var(--prime);
    border-width: 0 2px 2px 0;
    border-radius: 1px;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s ease;
}

.custom-checkbox.checked::after {
    transform: rotate(45deg) scale(1) !important;
}

.submit-btn-block {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: clamp(10px, 1.3vw, 14px);
    text-transform: uppercase;
    text-align: center;
    color: var(--black-800);
    padding: clamp(10px, 1.8vw, 21px) clamp(10px, 1.6vw, 20px);
    max-width: 100%;
    width: 100%;
    background-color: var(--prime);
    border: 1px solid var(--prime);
    border-radius: 1000px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.submit-btn-block:hover {
    background-color: rgba(245, 177, 181, 0.6);
}

.submit-btn-block:active {
    background-color: rgba(245, 177, 181, 0.4);
}

/*---------*/
/* CF7 Block Form Integration Styles */
/*-------*/
.hero-wrapper-right {
    display: inline-block;
    justify-self: auto;
    position: relative;
}

.hero-wrapper-right img {
    max-width: 582px;
    width: 100%;
    box-shadow: 20px 20px 4px 0 rgba(0, 0, 0, 0.25);
    object-fit: cover;
    height: 100%;
    display: block;
}

@media (max-width: 870px) {
    .hero-wrapper {
        margin: -182px auto 160px;
        padding: 0 71px;
    }

    .hero-wrapper-left {
        margin: clamp(150px, 35vw, 400px) 0 0 0;
    }
}

@media (max-width: 769px) {
    .hero-wrapper {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin: 0 auto;
        gap: 0;
        padding: 0 20px;
    }

    .hero-wrapper-right::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 1;
    }

    .mobile-title-container {
        position: absolute;
        bottom: 31px;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
    }

    .hero-wrapper-left {
        width: 100%;
    }

    .form-block {
        max-width: 100%;
        width: 100%;
        padding: clamp(28px, 15vw, 48px) clamp(25px, 12vw, 40px);
        gap: 28px;
    }

    .hero-wrapper-right img {
        max-width: 100%;
    }

    .checkbox-group-block {
        gap: 16px;
        margin-bottom: 28px;
    }

    .custom-checkbox-block {
        width: 24px;
        height: 24px;
    }

    .submit-btn-block {
        font-size: clamp(10px, 4vw, 14px);
        padding: clamp(10px, 6vw, 21px) clamp(10px, 6vw, 20px);
    }
}

/* services-section */

.services-wrapper .services-wrapper-interior {
    display: flex;
    flex-direction: column;
    gap: clamp(25px, 5vw, 60px);
    padding: 0 clamp(30px, 6vw, 73px);
    margin: 0 auto 150px;
}

.services-wrapper-title {
    display: flex;
    justify-content: center;
}

.services-wrapper-title h2 {
    text-align: center;
}

.services-wrapper-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
    gap: clamp(15px, 3vw, 40px);
}

.services-wrapper-item {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    border: 1px solid var(--prime);
    padding: clamp(10px, 2.5vw, 28px) clamp(8px, 1.5vw, 17px);
    width: 100%;
    min-height: 235px;
    height: 100%;
    gap: 20px;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.services-wrapper-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(245, 177, 181, 0);
    z-index: 1;
    pointer-events: none;
    transition: background-color 0.3s ease-in-out;
}

.services-wrapper-item:hover::before {
    background-color: rgb(245, 177, 181, 0.1);
}

.services-wrapper-item:active::before {
    background-color: rgb(245, 177, 181, 0.15);
}

.services-wrapper-item-img {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 163px;
    width: 100%;
    height: 110px;
}

.services-wrapper-item-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.services-wrapper-item p {
    font-weight: 600;
    font-size: clamp(8px, 2vw, 18px);
    line-height: 140%;
    text-transform: capitalize;
    text-align: center;
    max-width: 160px;
    width: 100%;
}

@media (max-width: 1090px) {
    .services-wrapper-list {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .services-wrapper-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 769px) {
    .services-wrapper {
        padding: 0 20px;
    }

    .services-wrapper .services-wrapper-interior {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 118px clamp(15px, 6vw, 20px) 60px;
        margin: 0 auto;
        background: rgba(0, 0, 0, 0.5);
    }

    .services-wrapper-title {
        display: flex;
        justify-content: flex-start;
    }

    .services-wrapper-title h2 {
        text-align: left;
    }

    .services-wrapper-list {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 1fr);
        gap: clamp(12px, 8vw, 30px);
    }

    .services-wrapper-item {
        justify-content: space-evenly;
        max-width: 100%;
        width: 100%;
        height: 100%;
        padding: clamp(25px, 12vw, 44px) clamp(18px, 8vw, 27px);
        gap: 44px;
    }

    .services-wrapper-item-img {
        max-width: 256px;
        height: 172px;
    }

    .services-wrapper-item-img img {
        width: 100%;
    }

    .services-wrapper-item p {
        font-size: clamp(12px, 6vw, 20px);
        max-width: 150px;
        width: 100%;
    }
}

/* why-us-section */

.why-promag-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 0 clamp(30px, 6vw, 73px);
    margin: 150px auto 159px;
}

.why-promag-wrapper-title {
    display: flex;
    justify-content: center;
}

.why-promag-wrapper-title h2 {
    text-align: center;
}

.why-promag-wrapper-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(10px, 2.5vw, 30px);
}

.why-promag-wrapper-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: clamp(12px, 2.5vw, 33px) clamp(15px, 1.5vw, 34px) 8px;
    flex: 1;
    width: 100%;
    min-height: 426px;
    height: 100%;
    gap: 15px;
    border: 1px solid var(--prime);
    background: rgba(245, 177, 181, 0.1);
}

.why-promag-wrapper-item img {
    max-width: 100%;
    object-fit: contain;
}

.why-promag-wrapper-item h3 {
    font-weight: 600;
    text-align: center;
}

.why-promag-wrapper-item p {
    text-align: center;
    font-size: clamp(8px, 1.8vw, 18px);
}

@media (max-width: 769px) {
    .why-promag-wrapper {
        gap: 0;
        margin: 0 auto;
        padding: 0 20px;
    }

    .why-promag-wrapper-title {
        display: flex;
        justify-content: flex-start;
        margin: 0 auto;
        max-width: 733px;
        width: 100%;
        background: rgba(0, 0, 0, 0.5);
        padding: 0 0 30px 20px;
    }

    .why-promag-wrapper-title h2 {
        text-align: left;
    }

    .why-promag-wrapper-list {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
        gap: 30px;
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.5);
        padding: 0 20px 60px;
    }

    .why-promag-wrapper-item {
        padding: clamp(16px, 8vw, 28px) clamp(18px, 8vw, 29px) 21px;
        margin: 0 auto;
        width: 100%;
        min-height: 363px;
        height: 100%;
        gap: 12px;
    }

    .why-promag-wrapper-item img {
        max-width: 100%;
        object-fit: contain;
    }

    .why-promag-wrapper-item p {
        text-align: center;
        font-size: clamp(6px, 4.3vw, 15px);
    }
}

/* form-home-section */

#form-home-section {
    padding: 0 20px;
}

.form-home-wrapper {
    display: flex;
    justify-content: space-between;
    gap: clamp(20px, 4vw, 50px);
    padding: 13px clamp(25px, 3vw, 49px) 13px clamp(4px, 3vw, 7px);
    max-width: 1196px;
    width: 100%;
    margin: 0 auto 150px;
    backdrop-filter: blur(33.043479919433594px);
    box-shadow: 11px 5px 29px 0 rgba(243, 168, 206, 0.15);
    background: rgba(0, 0, 0, 0.5);
}

.form-home-wrapper-left {
    max-width: 491px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 3vw, 44px) clamp(25px, 5vw, 61px);
    background-image: url("../img/form-title-background.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.form-home-wrapper-left-img {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 8px solid var(--white);
    border-radius: 100%;
    max-width: 162px;
    width: 100%;
    max-height: 162px;
    height: 100%;
    margin-bottom: 32px;
}

.form-home-wrapper-left-img img {
    max-width: 100%;
    object-fit: cover;
    height: auto;
}

.form-home-wrapper-left h4 {
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1px;
}

.form-home-wrapper-left span {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: clamp(30px, 6vw, 64px);
    line-height: 120%;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    text-align: center;
    color: var(--prime);
    margin-bottom: 10px;
}

.form-home-wrapper-left p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: clamp(10px, 1.6vw, 16px);
    line-height: 160%;
    text-align: center;
    color: var(--white-700);
}

.form-home-wrapper-right {
    display: flex;
    flex-direction: column;
    padding: 28px 0;
    gap: 47px;
}

.form-home-wrapper-right h3 {
    text-transform: uppercase;
    font-size: clamp(18px, 2.5vw, 28px);
}

.contact-form {
    max-width: 595px;
    width: 100%;
    display: grid;
    gap: 45px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 39px;
margin-bottom: 45px;
}

.form-row.full-width {
    grid-template-columns: 1fr;
margin-bottom: 33px;
}

.form-group {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #8d8d8d;
}

.form-group label {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: clamp(10px, 1.2vw, 14px);
    line-height: 143%;
    color: var(--white);
    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    border: none;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: var(--white);
    padding: 0 0 10px 0;
    background: transparent;
    transition: all 0.3s ease;
}

.form-group textarea {
    font-family: var(--font-family);
    font-size: 14px;
    line-height: 143%;
    color: var(--white);
    padding: 0;
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 35px;
    max-height: 250px;
    overflow-y: auto;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea {
    border: none;
    outline: none;
    background: transparent;
}

.custom-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-selected {
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 28px;
}

.dropdown-selected span {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: var(--white);
}

.dropdown-arrow {
    display: flex;
    width: 8px;
    height: 5px;
}

.dropdown-arrow svg {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.dropdown-selected.active .dropdown-arrow {
    margin-right: 15px;
}

.dropdown-selected.active .dropdown-arrow svg {
    transform: rotate(180deg);
}

.dropdown-selected.active {
    background: rgba(0, 0, 0, 0.9);
}

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(33.043479919433594px);
    box-shadow: 11px 5px 29px 0 rgba(243, 168, 206, 0.15);
    margin-top: 0px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.dropdown-option:nth-child(1) {
    border-bottom: 1px solid #8d8d8d;
    padding-bottom: 2px;
}

.dropdown-options.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-option {
    padding: 0 0 0 4px;
    margin-bottom: 20px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    text-transform: capitalize;
    color: var(--white);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.dropdown-option:hover {
    color: var(--prime);
}

.dropdown-option.selected {
    color: var(--white);
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(5px, 1vw, 10px);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 11px;
    flex: 1;
}

.checkbox-group input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
}

.checkbox-group label {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: clamp(8px, 1vw, 12px);
    line-height: 2.13;
    color: var(--white-700);
    user-select: none;
    cursor: pointer;
}

.custom-checkbox {
    position: relative;
    width: 18px;
    height: 18px;
    border: 1px solid #8d8d8d;
    border-radius: 5px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Птичка (галочка) */
.custom-checkbox::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 9px;
    border: solid var(--prime);
    border-width: 0 2px 2px 0;
    border-radius: 1px;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s ease;
}


.submit-btn {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: clamp(10px, 1.3vw, 14px);
    text-transform: uppercase;
    text-align: center;
    color: var(--black-800);
    padding: clamp(10px, 1.8vw, 21px) clamp(10px, 1.6vw, 20px);
    max-width: 251px;
    width: 100%;
    background-color: var(--prime);
    border: 1px solid var(--prime);
    border-radius: 1000px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.submit-btn:hover {
    background-color: rgba(245, 177, 181, 0.6);
}

.submit-btn:active {
    background-color: rgba(245, 177, 181, 0.4);
}

.form-home-wrapper-mobile {
    display: none;
}

/* Стили для валидации полей */

.cf7-error-field {
    background-color: rgba(255, 0, 0, 0.1) !important;
    transition: background-color 0.3s ease;
	width: 100%;
}

/* Для всех типов полей ввода */
input.cf7-error-field,
textarea.cf7-error-field {
    background-color: rgba(255, 0, 0, 0.1) !important;
	width: 100%;
}

/* Для полей CF7 */
.wpcf7-text.cf7-error-field,
.wpcf7-email.cf7-error-field,
.wpcf7-tel.cf7-error-field,
.wpcf7-textarea.cf7-error-field {
    background-color: rgba(255, 0, 0, 0.1) !important;
width: 100%;
}

/* Для кастомного dropdown */
.dropdown-selected.cf7-error-field,
.dropdown-selected-block.cf7-error-field {
    background-color: rgba(255, 0, 0, 0.1) !important;
width: 100%;
}

/* Кастомные стили для CF7 */

/* Contact Form 7 Integration Styles */
.wpcf7-form {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    display: grid;
}

.dropdown-option p,
.dropdown-option-block p,
.dropdown-option-popup p {
    padding: 0 0 0 4px !important;
    margin-bottom: 20px !important;
    font-family: var(--font-family) !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    line-height: 120% !important;
    text-transform: capitalize !important;
    color: var(--white) !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease !important;
}

.wpcf7-form-control-wrap {
    position: relative !important;
}

/* Скрываем стандартные элементы CF7 */
.wpcf7-form p {
    margin: 0;
    padding: 0;
    font-size: 0;
}

.wpcf7-spinner {
    display: none !important;
}

.wpcf7-response-output {
    display: none !important;
}

/* Стили для полей ввода CF7 */
.wpcf7-form .cf7-input,
.wpcf7-form .cf7-textarea {
    border: none;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: clamp(10px, 4vw, 14px);
    line-height: 143%;
    color: var(--white);
    padding: 0 0 10px 0;
    background: transparent;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.wpcf7-form-control-wrap[data-name="message"],
.wpcf7-form-control-wrap[data-name="messageBlock"] {
    display: block;
    position: absolute;
    width: 100%;

}

.wpcf7-form .cf7-textarea {
    height: 35px;
    overflow-y: hidden;
    resize: none;
    transition: height 0.2s ease;
}

.wpcf7-form .cf7-input:focus,
.wpcf7-form .cf7-textarea:focus {
    border: none;
    outline: none;
    background: transparent;
}

/* Скрытые поля */
.wpcf7-form .cf7-hidden {
    display: none;
}

/* Checkbox стили для CF7 */
.checkbox-group p,
.checkbox-group-block p {
    display: flex;
    align-items: center;
    flex: 1;
}

.checkbox-group p label,
.checkbox-group-block p label {
    margin-left: 11px;
}

.wpcf7-form .cf7-checkbox {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
}

[data-name="privacy"],
[data-name="privacyBlock"] {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* Кнопка отправки CF7 */
.form-footer p:nth-child(2) {
    max-width: 251px;
    width: 100%;
}

.wpcf7-form .submit-btn {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: clamp(10px, 1.3vw, 14px);
    text-transform: uppercase;
    text-align: center;
    color: var(--black-800);
    padding: clamp(10px, 1.8vw, 21px) clamp(10px, 1.6vw, 20px);
    max-width: 100%;
    width: 100%;
    background-color: var(--prime);
    border: 1px solid var(--prime);
    border-radius: 1000px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.wpcf7-form .submit-btn:hover {
    background-color: rgba(245, 177, 181, 0.6);
}

.wpcf7-form .submit-btn:active {
    background-color: rgba(245, 177, 181, 0.4);
}

.wpcf7-form .submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Сообщения об ошибках CF7 */
.wpcf7-not-valid-tip {
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 5px;
}

.wpcf7-validation-errors {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid #ff6b6b;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.wpcf7-mail-sent-ok {
    color: #4caf50;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid #4caf50;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}

#privacy:checked p .custom-checkbox {
    background: red;
}

#privacy:checked p .custom-checkbox {
    background: var(--prime);
    border-color: var(--prime);
}

.wpcf7-not-valid-tip {
    display: none !important;
}

/* ========== POPUP FORM STYLES ========== */

/* Основные стили для popup dropdown */
.dropdown-option-popup.selected {
    color: var(--white);
}

/* Стили ошибок для popup dropdown */
.dropdown-selected-popup.cf7-error-field {
    background-color: rgba(255, 0, 0, 0.1) !important;
    width: 100%;
}

/* CF7 поля в popup */
#contactFormPopup .cf7-input,
#contactFormPopup .cf7-textarea {
    border: none;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: var(--white);
    padding: 0 0 10px 0;
    background: transparent;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

#contactFormPopup .cf7-textarea {
    resize: none;
    min-height: 35px !important;
    max-height: 250px !important;
    overflow-y: hidden;
}

#contactFormPopup .cf7-input:focus,
#contactFormPopup .cf7-textarea:focus {
    border: none;
    outline: none;
    background: transparent;
}

/* Скрытые поля в popup */
#contactFormPopup .cf7-hidden {
    display: none;
}

#contactFormPopup .cf7-checkbox {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* Кнопка отправки в popup */
#contactFormPopup .submit-btn {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: clamp(10px, 1.3vw, 14px);
    text-transform: uppercase;
    text-align: center;
    color: var(--black-800);
    padding: clamp(10px, 1.8vw, 21px) clamp(10px, 1.6vw, 20px);
    max-width: 100%;
    width: 100%;
    background-color: var(--prime);
    border: 1px solid var(--prime);
    border-radius: 1000px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

#contactFormPopup .submit-btn:hover {
    background-color: rgba(245, 177, 181, 0.6);
}

#contactFormPopup .submit-btn:active {
    background-color: rgba(245, 177, 181, 0.4);
}

#contactFormPopup .submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Стили ошибок для popup полей */
#contactFormPopup .cf7-error-field {
    background-color: rgba(255, 0, 0, 0.1) !important;
    transition: background-color 0.3s ease;
    width: 100%;
}

/* Checkbox группа для popup */
#contactFormPopup .checkbox-group {
    display: flex;
    align-items: center;
    gap: 11px;
    flex: 1;
}

#contactFormPopup .checkbox-group label {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: clamp(8px, 1vw, 12px);
    line-height: 2.13;
    color: var(--white-700);
    user-select: none;
    cursor: pointer;
}

#contactFormPopup .custom-checkbox {
    position: relative;
    width: 18px;
    height: 18px;
    border: 1px solid #8d8d8d;
    border-radius: 5px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Галочка для popup checkbox */
#contactFormPopup .custom-checkbox::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 9px;
    border: solid var(--prime);
    border-width: 0 2px 2px 0;
    border-radius: 1px;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s ease;
}

#contactFormPopup .custom-checkbox.checked::after {
    transform: rotate(45deg) scale(1);
}

#contactFormPopup .custom-checkbox.checked {
    background: var(--prime);
    border-color: var(--prime);
}

/* Скрытие сообщений CF7 в popup */
#contactFormPopup .wpcf7-response-output {
    display: none !important;
}

#contactFormPopup .wpcf7-spinner {
    display: none !important;
}

#contactFormPopup .wpcf7-not-valid-tip {
    display: none !important;
}

/* Адаптивные стили для popup формы */
@media (max-width: 768px) {
    #contactFormPopup .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    #contactFormPopup .form-footer {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    #contactFormPopup .submit-btn {
        max-width: 100%;
    }
    
    #contactFormPopup .checkbox-group label {
        font-size: clamp(10px, 3vw, 12px);
    }
}custom-dropdown-popup {
    position: relative;
    width: 100%;
}

.dropdown-selected-popup {
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 28px;
}

.dropdown-selected-popup span {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 143%;
    color: var(--white);
}

.dropdown-selected-popup .dropdown-arrow {
    display: flex;
    width: 8px;
    height: 5px;
}

.dropdown-selected-popup .dropdown-arrow svg {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.dropdown-selected-popup.active .dropdown-arrow {
    margin-right: 15px;
}

.dropdown-selected-popup.active .dropdown-arrow svg {
    transform: rotate(180deg);
}

.dropdown-selected-popup.active {
    background: rgba(0, 0, 0, 0.9);
}

.dropdown-options-popup {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(33.043479919433594px);
    box-shadow: 11px 5px 29px 0 rgba(243, 168, 206, 0.15);
    margin-top: 0px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.dropdown-options-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-option-popup {
    padding: 0 0 0 4px;
    margin-bottom: 20px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    text-transform: capitalize;
    color: var(--white);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.dropdown-option-popup:nth-child(1) {
    border-bottom: 1px solid #8d8d8d;
    padding-bottom: 2px;
}

.dropdown-option-popup:hover {
    color: var(--prime);
}


@media (max-width: 1110px) {
    .submit-btn {
        max-width: 200px;
    }
}

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

    /*
  .custom-dropdown {
    padding-bottom: 10px;
  }*/
    .dropdown-options {
        margin-top: -10px;
    }

    .form-footer {
        flex-direction: column;
        margin-top: 0;
        gap: 15px;
        align-items: flex-start;
    }

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

@media (max-width: 769px) {
    #form-home-section {
        padding: 0;
    }

    .form-home-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        padding: 0;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        backdrop-filter: blur(33.043479919433594px);
        box-shadow: 11px 5px 29px 0 rgba(243, 168, 206, 0.15);
        background: rgba(0, 0, 0, 0.5);
    }

    .form-home-wrapper-left {
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: clamp(15px, 3vw, 25px) clamp(30px, 5vw, 49px);
        background-image: url("../img/form-title-background.webp");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    .form-home-wrapper-left-img {
        display: flex;
        align-items: center;
        justify-content: center;
        border: 6.35px solid var(--white);
        border-radius: 100%;
        max-width: 129px;
        width: 100%;
        max-height: 129px;
        height: 100%;
        margin-bottom: 32px;
    }

    .form-home-wrapper-left-img img {
        max-width: 100%;
        object-fit: cover;
        height: auto;
    }

    .form-home-wrapper-left h4 {
        text-transform: uppercase;
        text-align: center;
        margin-bottom: 1px;
    }

    .form-home-wrapper-left span {
        font-family: var(--font-family);
        font-weight: 700;
        font-size: clamp(20px, 14vw, 50px);
        line-height: 120%;
        letter-spacing: -0.03em;
        text-transform: uppercase;
        text-align: center;
        color: var(--prime);
        margin-bottom: 8px;
    }

    .form-home-wrapper-left p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: clamp(10px, 4.5vw, 16px);
        line-height: 127%;
        text-align: center;
        color: var(--white-700);
        max-width: 292px;
    }

    .form-home-wrapper-right {
        display: flex;
        flex-direction: column;
        padding: clamp(20px, 13vw, 48px) clamp(18px, 10vw, 40px);
        gap: 28px;
        box-shadow: 11px 5px 29px 0 rgba(243, 168, 206, 0.15);
        background: rgba(0, 0, 0, 0.5);
    }

    .form-home-wrapper-right h3 {
        font-size: clamp(14px, 5.3vw, 20px);
        white-space: nowrap;
    }

    .contact-form {
        max-width: 100%;
        width: 100%;
        display: grid;
        gap: 45px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #8d8d8d;
    }

    .form-group label {
        font-family: var(--font-family);
        font-weight: 500;
        font-size: clamp(10px, 1.2vw, 14px);
        line-height: 143%;
        color: var(--white);
        margin-bottom: 5px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        border: none;
        font-family: var(--font-family);
        font-weight: 500;
        font-size: 14px;
        line-height: 143%;
        color: var(--white);
        padding: 0 0 10px 0;
        background: transparent;
        transition: all 0.3s ease;
    }

    .form-group textarea {
        font-family: var(--font-family);
        font-size: 14px;
        line-height: 143%;
        color: var(--white);
        padding: 0;
        transition: all 0.3s ease;
        resize: vertical;
        min-height: 25px;
        max-height: 250px;
        overflow-y: auto;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea {
        border: none;
        outline: none;
        background: transparent;
    }

    .custom-dropdown {
        position: relative;
        width: 100%;
    }

    .dropdown-selected {
        background: transparent;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: space-between;
        /* height: 20px;*/
    }

    .dropdown-selected span {
        font-family: var(--font-family);
        font-weight: 500;
        font-size: 14px;
        line-height: 143%;
        color: var(--white);
    }

    .dropdown-arrow {
        display: flex;
        width: 8px;
        height: 5px;
    }

    .dropdown-arrow svg {
        margin-left: auto;
        transition: transform 0.3s ease;
    }

    .dropdown-selected.active .dropdown-arrow {
        margin-right: 15px;
    }

    .dropdown-selected.active .dropdown-arrow svg {
        transform: rotate(180deg);
    }

    .dropdown-selected.active {
        background: rgba(0, 0, 0, 0.9);
    }

    .dropdown-options {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(33.043479919433594px);
        box-shadow: 11px 5px 29px 0 rgba(243, 168, 206, 0.15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .dropdown-options.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-option {
        padding: 0 0 0 4px;
        margin-bottom: 20px;
        font-family: var(--font-family);
        font-weight: 500;
        font-size: 14px;
        line-height: 120%;
        text-transform: capitalize;
        color: var(--white);
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

    .dropdown-option:hover {
        color: var(--prime);
    }

    .dropdown-option.selected {
        color: var(--white);
    }

    .form-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 28px;
    }

    .checkbox-group {
        display: flex;
        align-items: center;
        gap: 16px;
        flex: 1;
    }

    .checkbox-group input[type="checkbox"] {
        opacity: 0;
        position: absolute;
        width: 0;
        height: 0;
        pointer-events: none;
    }

    .checkbox-group label {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: clamp(8px, 3.5vw, 12px);
        line-height: 2.13;
        color: var(--white-700);
        user-select: none;
        cursor: pointer;
    }

    .custom-checkbox {
        position: relative;
        width: 24px;
        height: 24px;
        border: 1px solid #8d8d8d;
        border-radius: 5px;
        background: transparent;
        cursor: pointer;
        transition: all 0.3s ease;
        flex-shrink: 0;
        margin-top: 2px;
    }

    /* Птичка (галочка) */
    .custom-checkbox::after {
        content: "";
        position: absolute;
        top: 15%;
        left: 35%;
        width: 8px;
        height: 12px;
        border: solid var(--prime);
        border-width: 0 2px 2px 0;
        border-radius: 1px;
        transform: rotate(45deg) scale(0);
        transition: transform 0.2s ease;
    }



    .submit-btn {
        font-family: var(--font-family);
        font-weight: 700;
        font-size: clamp(10px, 4vw, 14px);
        text-transform: uppercase;
        text-align: center;
        color: var(--black-800);
        padding: clamp(10px, 5vw, 19px) clamp(10px, 5vw, 19px);
        max-width: 100%;
        width: 100%;
        background: var(--prime);
        border: 1px solid var(--prime);
        border-radius: 1000px;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .form-home-wrapper-mobile {
        display: flex;
        padding: 0 20px;
    }

    .form-home-wrapper-mobile-interior {
        display: flex;
        height: 60px;
        margin: 0 auto;
        max-width: 733px;
        width: 100%;
        background: rgba(0, 0, 0, 0.3);
    }
}

@media (max-width: 768px) {
    body {
        background-image: url("../img/Mask-group-mobile.svg");
        background-repeat: repeat-y;
        background-size: cover;
        background-position: center;
    }

    body.popup-open {
        touch-action: none;
        -webkit-overflow-scrolling: auto;
        overscroll-behavior: none;
    }

    .popup-overlay.active {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100vh;
        height: 100dvh;
        overflow: hidden;
    }

    .wrapper {
        max-width: 100%;
        width: 100%;
        background: transparent;
        box-shadow: none;
    }

    .fixed-header {
        visibility: hidden;
    }

    .header-original {
        padding: 0 20px;
    }

    .header-original .header-wrapper {
        margin: 0 auto;
        max-width: 733px;
        width: 100%;
        background: rgba(0, 0, 0, 0.5);
    }
}

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