/*.hero-banner {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; !* desktop video ratio *!
    overflow: hidden;
}*/

.hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    max-height: 100dvh;
}

/* Fallback for old browsers */
.hero-banner::before {
    content: "";
    display: block;
    padding-top: 56.25%; /* 16:9 fallback */
}

/* Modern browsers override fallback */
@supports (aspect-ratio: 1 / 1) {
    .hero-banner {
        aspect-ratio: 16 / 9;
    }

    .hero-banner::before {
        display: none;
    }
}

.hero-banner .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;

    transform: rotateY(180deg);
    -webkit-transform:rotateY(180deg); /* Safari and Chrome */
    -moz-transform:rotateY(180deg); /* Firefox */
}

.hero-banner .mobile-video {
    display: none;
}

.hero-banner .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 2;
}
.navigation .navigation-content,
.hero-banner .hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
}

.navigation header,
.hero-banner header {
    display: grid;
    grid-template-columns: 160px auto;
    gap: 20px;
    width: calc(100% - 80px);
    margin: 36px auto;
}

.navigation header img,
.hero-banner header img {
    width: 100%;
}

.navigation header nav,
.hero-banner header nav {
    float: right;
}

.navigation header > div:last-child,
.hero-banner header > div:last-child {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
}

.navigation header nav ul,
.hero-banner header nav ul {
    list-style: none;
    display: flex;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.navigation header nav ul li:first-child,
.hero-banner header nav ul li:first-child {
    position: relative;
    padding-right: 12px;
}

.navigation header nav ul li:first-child::after,
.hero-banner header nav ul li:first-child::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);

    width: 2px;
    height: 24px; /* adjust to match text height */
    background: rgba(255, 255, 255, 0.8);
}

.navigation header nav a,
.hero-banner header nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 2px;
    transition: opacity 0.3s ease;
}

.navigation header nav a:hover,
.hero-banner header nav a:hover {
    opacity: 0.7;
}

.language-selector {
    position: relative;
}

.content-wrapper {
    background-color: #FBF9F4;
}

.language-selector .language-toggle {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 0;
}

header .arrow {
    margin-top: -5px;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #ffffff;
    border-bottom: 1.5px solid #ffffff;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
}

.language-selector.active .arrow {
    margin-top: 4px;
    transform: rotate(-135deg);
}

.menu-selector.active .arrow {
    margin-top: 4px;
    transform: rotate(-135deg);
}

.language-selector .language-dropdown {
    position: absolute;
    top: 165%;
    right: 0;

    background: rgba(255, 255, 255, 0.95);
    border-radius: 18px;
    min-width: 120px;

    backdrop-filter: blur(6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    padding: 0 10px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.22s ease;
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-selector .language-dropdown a {
    display: block;
    text-decoration: none;
    color: #404040;
    font-size: 16px;
    font-weight: 400;
    margin: 8px 0;
    border-radius: 25px;
    padding: 6px 10px;
    transition: opacity 0.2s ease;
}

.language-selector .language-dropdown a:hover {
    background-color: #F0F0EC;
}

.menu-selector {
    display: none;
    position: relative;
}

.menu-toggle {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 0;
}

.menu-dropdown {
    position: absolute;
    top: 165%;
    right: 0;

    background: rgba(255, 255, 255, 0.95);
    border-radius: 18px;
    min-width: 160px;

    backdrop-filter: blur(6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    padding: 8px 10px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.22s ease;
}

.menu-selector.active .menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-dropdown a {
    display: block;
    text-decoration: none;
    color: #404040;
    font-size: 16px;
    font-weight: 400;
    margin: 6px 0;
    border-radius: 25px;
    padding: 6px 10px;
}

.menu-dropdown a:hover {
    background-color: #F0F0EC;
}

.hero-banner .hero-text {
    position: absolute;
    bottom: 80px;
    left: 40px;
    max-width: 520px;
    color: #ffffff;
}

.hero-banner .hero-text h1 {
    font-size: 72px;
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-banner .hero-text p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 30px;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-primary {
    background-color: #6E6B42;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #6b6e42;
}

.btn-secondary {
    border: solid 1px #AE9248;
    background-color: #AE9248;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #6b6e42;
}

.btn-outline {
    border: 1px solid #ffffff;
    color: #ffffff;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-light-outline {
    border: 1px solid #6E6B42;
    color: #6E6B42;
    background: transparent;
}

.btn-light-outline:hover {
    color: #ffffff;
    background: #AE9248;
    border: 1px solid #AE9248;
}

.hero-banner-mobile-text {
    display: none;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    background-color: #FBF9F4;
    margin-top: -20px;
    z-index: 2;
    position: relative;
    padding: 24px 20px;
}

.hero-banner-mobile-text h1 {
    font-size: 40px;
    line-height: 50px;
    color: #404040;
}

.hero-banner-mobile-text p {
    color: #404040;
}

.hero-banner-mobile-text .hero-buttons {
    flex-direction: row;
    gap: 16px;
}

.hero-banner-mobile-text .hero-buttons .btn-outline {
    border-color: #34302F;
    color: #34302F;
}

.levitas-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.levitas-highlights .highlight-card {
    padding: 40px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.levitas-highlights .highlight-why {
    background-color: #6E6B42;
}

.levitas-highlights .highlight-how {
    background-color: #CBB896;
}

.levitas-highlights .highlight-design {
    background-color: #A8893D;
}

.levitas-highlights .highlight-card h2 {
    color: #ffffff;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 400;

}

.levitas-highlights .btn {
    width: max-content;
}

.why-levitas-banner {
    background-color: #FBF9F4;
    width: 100%;
}

.why-levitas-banner .why-container {
    display: grid;
    grid-template-columns: 4fr 3fr;
    align-items: center;
}

.why-levitas-banner.invert .why-container {
    direction: rtl;
}

.why-levitas-banner.invert .why-content,
.why-levitas-banner.invert .why-image {
    direction: ltr;
}

.why-levitas-banner .why-content {
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-levitas-banner .why-content h2 {
    font-size: 56px;
    margin-bottom: 32px;
    color: #34302F;
}

.why-levitas-banner  .why-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #555;
}

.why-levitas-banner .why-list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 40px;
    color: #555;
}

.why-levitas-banner .why-list li {
    margin-bottom: 10px;
}

.why-levitas-banner .why-buttons {
    display: flex;
    gap: 20px;
}

.why-levitas-banner .why-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.why-levitas-banner .why-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.why-levitas-banner .why-levitas-swiper {
    width: 100%;
    height: 100%;
}

.why-levitas-banner .swiper-slide {
    width: 100%;
    height: 100%;
}

.why-levitas-banner .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}

.why-levitas-swiper .swiper-button-prev {
    left: 15px;
}

.why-levitas-swiper .swiper-button-next {
    right: 15px;
}

.why-levitas-swiper .swiper-pagination {
    width: auto;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    gap: 3px;
    padding: 6px 10px;
    background: #3E3E3C;
    border-radius: 30px;
}

.why-levitas-swiper .swiper-pagination {
    bottom: 15px;
}

.why-levitas-swiper .swiper-pagination-bullet {
    background-color: #9F9F9E;
    opacity: 1;
}

.why-levitas-swiper .swiper-pagination-bullet-active {
    background-color: #AE9248;
}

.title-with-text {
    width: calc(100% - 200px);
    margin: 0 auto;
    padding: 120px 100px 64px;
    text-align: center;
}

.title-with-text h2 {
    color: #404040;
    font-size: 64px;
    line-height: 68px;
}

.title-with-text p {
    color: #404040;
    font-size: 18px;
    line-height: 26px;
}

.bed-configurator-wrapper {
    max-width: 1600px;
    width: calc(100% - 200px);
    margin: 0 auto;
    padding: 0 100px 64px;
}

.bed-configurator {
    display: grid;
    grid-gap: 40px;
    grid-template-columns: 1fr  1fr;
    align-items: center;
}

.bed-configurator .object-controls {
    background-color: #ffffff;
    border-radius: 40px;
    padding: 30px;

    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bed-configurator .object-controls .control-group .control-group-name {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 22px;
    color: #999999;
}

.bed-configurator .object-controls .control-group .control-group-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.bed-configurator .object-controls .control-group .control-group-options .control-group-option {
    background-color: #F1F1E4;
    border-radius: 45px;
    padding: 2px 24px;
    cursor: pointer;
    display: flex;
    gap: 8px;
    text-align: center;
    min-height: 52px;
    color: #6E6B42;
    align-items: center;
    font-weight: 500;
}

.bed-configurator .object-controls .control-group .control-group-options .control-group-option div {
    display: block;
    width: 100%;
}

.bed-configurator .object-controls .control-group .control-group-options .control-group-option img {
    width: 40px;
    height: 40px;
}

.bed-configurator .object-controls .control-group .control-group-options .control-group-option.with-image {
    padding-left: 6px;
    padding-right: 16px;
}

.bed-configurator .object-controls .control-group .control-group-options .control-group-option.selected,
.bed-configurator .object-controls .control-group .control-group-options .control-group-option:hover {
    background-color: #6E6B42;
    color: #ffffff;
}

.bed-configurator .object-view img {
    width: 100%;
}

.bed-configurator .button-group {
    display: grid;
    grid-template-columns: 5fr 3fr;
    gap: 16px;
}

.bed-configurator .button-group a {
    text-align: center;
    vertical-align: text-bottom;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inquiry-form-wrapper {
    max-width: 1600px;
    width: calc(100% - 200px);
    margin: 0 auto 120px;
    padding: 0;
    border-radius: 40px;
    background-color: #ffffff;
}

.inquiry-form-wrapper .inquiry-form-intro {
    padding: 40px 60px;
    text-align: center;
}

.inquiry-form-wrapper .inquiry-form-intro h2 {
    color: #404040;
    font-size: 64px;
    line-height: 68px;
}

.inquiry-form-wrapper .inquiry-form-intro p {
    color: #404040;
    font-size: 18px;
    line-height: 24px;
}

.inquiry-form-wrapper .form-container {
    display: grid;
    grid-template-columns: 2fr 5fr;
    gap: 16px;
}

.inquiry-form-wrapper .selected-options {
    background-color: #F1F1E4;
    padding: 30px;
    border-top-right-radius: 40px;
    text-align: center;
}

.selected-options .selected-options-by-group {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.selected-options .selected-options-by-group .feature-group .feature-group-name {
    color: #808080;
}

.selected-options .selected-options-by-group .feature-group .feature-group-selected-options {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 5px;
}

.selected-options .btn {
    margin-top: 30px;
}

.select-groupfull-width {
    width: 100%;
}

.inquiry-form .ts-control {
    padding: 18px 24px;
    border-radius: 30px;
    border: 1px solid #D9D9D9;
    font-size: 16px;
    min-height: 56px;

}
.inquiry-form {
    margin-bottom: 40px;
}

.inquiry-form .ts-control.focus {
    border-color: #7a7748;
    background-color: #ffffff;
}

.inquiry-form .ts-wrapper.has-items + label,
.inquiry-form .ts-wrapper.focus + label {
    top: 6px;
    left: 19px;
    transform: translateY(0);
    font-size: 12px;
    color: #cbcbcb;
}


.inquiry-form .select-group label {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #888;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 2;
    background: #fff;
    padding: 0 6px;
}

.inquiry-form .select-group .ts-wrapper.focus + label,
.inquiry-form .select-group .ts-wrapper.has-items + label {
    top: 6px;
    transform: translateY(0);
    font-size: 12px;
    color: #cbcbcb;
}

.inquiry-form .ts-dropdown {
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    padding: 8px;
    margin-top: 8px;
    font-size: 16px;
}

.inquiry-form .ts-dropdown .option {
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.inquiry-form .ts-dropdown .option:hover {
    background-color: #7a7748;
}

.inquiry-form .ts-dropdown .active {
    background-color: #7a7748;
    color: #fff;
}

.inquiry-form .ts-control .item {
    font-size: 16px;
}

.inquiry-form .ts-control:focus {
    box-shadow: none;
}

.inquiry-form .ts-dropdown-content::-webkit-scrollbar {
    width: 6px;
}

.inquiry-form .ts-dropdown-content::-webkit-scrollbar-thumb {
    background-color: #7a7748;
    border-radius: 10px;
}

.inquiry-form a {
    color: #7a7748;
    text-decoration: none;
}

.inquiry-form {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.inquiry-form .form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.inquiry-form .input-group,
.inquiry-form .select-group {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.inquiry-form .select-group {
    position: relative;
    flex: 100%;
}

.inquiry-form .select-group .ts-wrapper {
    width: 100%;

    position: relative;
    z-index: 1;
}

.inquiry-form .input-group.full-width {
    flex: 100%;
}

.inquiry-form .input-group input,
.inquiry-form .input-group textarea {
    width: calc(100% - 48px);
    padding: 18px 24px;
    border-radius: 30px;
    border: 1px solid #D9D9D9;
    font-size: 16px;
    outline: none;
    transition: 0.3s ease;
}

.inquiry-form .input-group textarea {
    border-radius: 25px;
    resize: none;
}

.inquiry-form .input-group label {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 15px;
    pointer-events: none;
    transition: 0.3s ease;
}

/* Label animation */
.inquiry-form .input-group input:focus + label,
.inquiry-form .input-group input:not(:placeholder-shown) + label,
.inquiry-form .input-group textarea:focus + label,
.inquiry-form .input-group textarea:not(:placeholder-shown) + label{
    top: 6px;
    left: 24px;
    transform: translateY(0);
    font-size: 12px;
    color: #cbcbcb;
}

.inquiry-form .input-group input:focus,
.inquiry-form .input-group textarea:focus {
    border-color: #7a7748;
    background-color: #ffffff;
}

.inquiry-form .checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.inquiry-form .checkbox-group input {
    width: 18px;
    height: 18px;
}

.inquiry-form .btn-submit {
    background-color: #7a7748;
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 40px;
    font-size: 18px;
    cursor: pointer;
    width: 180px;
    transition: 0.3s ease;
}

.inquiry-form .btn-submit:hover {
    opacity: 0.9;
}



.testimonials {
    padding: 100px 100px;
    width: calc(100% - 200px);
}

.testimonials .container {
    max-width: 1600px;
    margin: auto;
}

.testimonials .section-label {
    font-size: 16px;
    color: #AE9248;
    margin-bottom: 20px;
    display: block;
}

.testimonials .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    gap: 15px;
    flex-wrap: wrap;
}

.testimonials .header h2 {
    font-size: 48px;
    color: #34302F;
}

.testimonials .custom-nav {
    display: flex;
    gap: 15px;
    margin-left: auto; /* pushes it fully to the right */
}

.testimonials .testimonial-prev,
.testimonials .testimonial-next {
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #b79c5a;
    color: white;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
    display: none;
}

.testimonials .swiper-button-prev {
    left: 0;
}

.testimonials .swiper-button-next {
    right: 0;
}

.testimonials .testimonials-swiper {
    padding-bottom: 60px;
}

.testimonials .card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonials .card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.testimonials .card img.main-image {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 20px;
}

.testimonials .author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.testimonials .author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonials .author span {
    font-weight: 500;
    color: #333;
}

.testimonials .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #c7c3ba;
    opacity: 1;
}

.testimonials .swiper-pagination-bullet-active {
    background: #7a7a6b;
}

.narrow-image-banner {
    background-image: url("../images/levitas-floating-bed.webp");
    min-height: 400px;
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.narrow-image-banner .inner-center-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    flex-direction: column;
    gap: 20px;
}
.narrow-image-banner h2 {
    display: block;
    width: 100%;
    color: #ffffff;
    font-size: 32px;
    text-align: center;
}

.narrow-image-banner .action-buttons {
    display: block;
}

.faq-section-wrapper {
    padding: 112px 0;
    width: 100%;
    background-color: #AFAF69;
}

.faq-section-wrapper .faq-section {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.faq-section .faq-left {
    flex: 1;
}

.faq-section .faq-left h2 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 24px;
}

.faq-section .faq-left p {
    color: white;
    margin-bottom: 32px;
}

.faq-section .faq-right {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-section .faq-item {
    background: #e9e9e9;
    border-radius: 40px;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-section .faq-question {
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-section .faq-question span {
    font-size: 16px;
    color: #333;
}

.faq-section .faq-icon {
    font-size: 22px;
    font-weight: bold;
    transition: 0.3s;
}

.faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: max-height 0.4s ease, padding 0.3s ease;
    color: #555;
}

.faq-section .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-section .faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-section .faq-item.active .faq-answer p {
    margin: 0;
}


.bed-configurator .object-view > div {
    position: relative;
}

.bed-configurator-main-image {
    width: 100%;
    display: block;
}

.bed-configurator .object-view img.bed-configurator-layer-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

img.bed-configurator-layer-image {
    display: none;
}

img.bed-configurator-layer-image.active{
    display: block;
}


.navigation .language-selector .language-toggle {
    color: #000000;
}

.navigation header .arrow {
    border-right: 1.5px solid #000000;
    border-bottom: 1.5px solid #000000;
}



.full-page-content {
    width: 100%;
    background-color: #FBF9F4;
}

.full-page-content footer {
    background-color: transparent;
}


.navigation header {
    margin: 0 auto;
    min-height: 72px;
    align-content: center;
}

.main-title-block h1 {
    color: #404040;
    font-size: 64px;
    line-height: 68px;
}

.main-title-block h1.txt-center {
    text-align: center;
    margin: 60px 0;
}

.strict-text-container {
    max-width: 1200px;
    margin: 0 auto;
}

.strict-text-container h2 {
    color: #404040;
}

.strict-text-container a {
    color: inherit;
}


.hero-banner .dark {
    display: none;
}

.hero-banner .light {
    display: block;
}

.navigation .light {
    display: none;
}

.navigation .dark {
    display: block;
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;

    max-width: 1600px;
    width: calc(100% - 80px);
    margin: 0 auto;
    padding: 40px;

    align-items: center;
    justify-content: center;
}

.split-container .image-container img {
    width: 100%;
}

.split-container .content-container {
    width: 70%;
    margin: 0 auto;
    font-weight: 300;
    color: #404040;
}

.split-container .content-container b {
    font-weight: 500;
}


.split-container .content-container ul {

}

.split-container .content-container ul li {
    font-size: 18px;
    line-height: 26px;
}

.container-s-image {
    max-width: 1600px;
    width: calc(100% - 80px);
    margin: 0 auto;
    padding: 40px;
}

.container-s-image img {
    width: 100%;
}

.container-s-image.desktop-version {
    display: block;
}

.container-s-image.mobile-version {
    display: none;
}

/* todo*/

@media(max-width: 1640px){
    .faq-section {
        width: calc(100% - 40px);
        margin-left: 20px;
        margin-right: 20px;
    }

    .main-title-block h1 {
        font-size: 47px;
        line-height: 62px;
    }
}

@media(max-width: 1350px){
    .split-container .content-container {
        width: 80%;
    }
}

@media (max-width: 1260px) {
    .strict-text-container {
        width: calc(100% - 30px);
        margin: 0 15px;
    }

    .navigation header, .hero-banner header {
        width: calc(100% - 30px);
    }
}

@media (max-width: 1200px) {
    .hero-banner .hero-text h1 {
        font-size: 50px;
    }

    .levitas-highlights .highlight-card h2 {
        color: #ffffff;
        font-size: 30px;
        line-height: 1.2;
    }

    .split-container .content-container {
        width: 90%;
    }
}

@media (max-width: 1080px) {
    .why-levitas-banner .why-content {
        padding: 80px 80px;
    }

    .bed-configurator-wrapper {
        width: calc(100% - 40px);
        padding: 0 20px 44px;
    }

    .inquiry-form-wrapper {
        width: calc(100% - 40px);
        padding: 0 0 44px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .testimonials {
        padding: 100px 20px;
        width: calc(100% - 40px);
    }

    .inquiry-form-wrapper .selected-options {
        border-radius: 40px;
    }

    .bed-configurator {
        grid-template-columns: auto;
    }

    .inquiry-form-wrapper .form-container {
        grid-template-columns: auto;
    }

    .split-container .content-container {
        width: 100%;
    }
}

@media (max-width: 1024px) {

    .why-levitas-banner .why-container {
        grid-template-columns: 1fr;
    }

    .why-levitas-banner .why-content {
        padding: 60px 30px;
    }

    .why-levitas-banner .why-content h2 {
        font-size: 40px;
    }

    .levitas-highlights .highlight-card h2 {
        color: #ffffff;
        font-size: 23px;
        line-height: 1;
    }

    .main-title-block h1 {
        color: #404040;
        font-size: 34px;
        line-height: 36 px;
    }
    
    .main-title-block h1.txt-center {
        margin: 30px 0;
    }

    .split-container {
        padding: 20px;
        width: calc(100% - 40px);
        grid-template-columns: 1fr;
    }

    .container-s-image {
        width: calc(100% - 40px);
        padding: 20px;
    }

    .container-s-image.desktop-version {
        display: none;
    }

    .container-s-image.mobile-version {
        display: block;
    }

    /* DEFAULT (non-reverse): content first, image second */
    .split-container .content-container {
        order: 1;
    }

    .split-container .image-container {
        order: 2;
    }

    /* REVERSED: image first → content second (desktop)
       but on mobile we want content first again */
    .split-container.reverse .content-container {
        order: 1;
    }

    .split-container.reverse .image-container {
        order: 2;
    }

    .split-container .content-container ul li {
        font-size: 16px;
        line-height: 20px;
    }

    .split-container .content-container h2 {
        font-size: 20px;
    }
}

@media (max-width: 950px) {
    .hero-banner .hero-text h1 {
        font-size: 40px;
    }

    .title-with-text {
        width: calc(100% - 40px);
        padding: 40px 20px 44px;
    }

    .title-with-text h2 {
        font-size: 40px;
        line-height: 50px;
    }

    .title-with-text p {
        font-size: 16px;
        line-height: 20px;
    }

    /* .bed-configurator .object-controls .control-group .control-group-options .control-group-option:hover {
        background-color: #F1F1E4;
        color: #6E6B42;
    } */

    .bed-configurator .button-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .testimonials .header h2 {
        font-size: 36px;
    }
}

@media(max-width: 900px){
    .faq-section {
        flex-direction: column;
    }

    .faq-section-wrapper {
        padding: 40px 0;
        width: 100%;
        background-color: #AFAF69;
    }
}

@media (max-width: 768px) {

    .content-wrapper {
        /*position: absolute;*/
        position: relative;
        z-index: 1;
    }

    .hero-banner {
        position: fixed;
        overflow: hidden;
    }

    .hero-banner .hero-video {
        will-change: transform;
        transform: translateY(0);
        transition: transform 0.1s linear;
    }

    .hero-banner .desktop-video {
        display: none;
    }

    /*.hero-banner {
        aspect-ratio: 832 / 1078;
    }*/

    .hero-banner::before {
        padding-top: calc(1078 / 832 * 100%);
    }

    @supports (aspect-ratio: 1 / 1) {
        .hero-banner {
            aspect-ratio: 832 / 1078;
        }
    }

    .hero-banner .mobile-video {
        display: block;
        object-fit: cover;
    }

    .desktop-nav {
        display: none;
    }

    .menu-selector {
        display: block;
    }

    .hero-banner header {
        grid-template-columns: 120px auto;
        width: calc(100% - 40px);
    }

    .hero-banner header > div:last-child {
        gap: 20px;
    }

    .hero-text {
        display: none;
    }

    .hero-text {
        left: 20px;
        bottom: 40px;
        max-width: 90%;
    }

    .hero-text h1 {
        font-size: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-banner-mobile-text {
        display: block;
    }

    .levitas-highlights {
        grid-template-columns: 1fr;
    }

    .levitas-highlights .highlight-card {
        padding: 40px 20px;
        min-height: auto;
        max-height: 206px;
    }

    .levitas-highlights .highlight-card h2 {
        font-size: 32px;
    }

    .levitas-highlights .btn {
        margin-top: 24px;
    }

    .inquiry-form .form-row {
        flex-direction: column;
    }

    .main-title-block h1 {
        font-size: 28px;
        line-height: 36px;
    }
}

@media (max-width: 400px) {
    .main-title-block h1 {
        word-wrap: break-word;
    }
}













.footer {
    background: #ffffff;
    padding: 64px 80px;
    color: #2d2a26;
}

.footer .footer-container {
    max-width: 1400px;
    margin: auto;
}

.footer .footer-logo {
    font-size: 180px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 40px;
}

.footer .footer-logo img {
    width: 100%;
}

.footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer .footer-left p {
    margin-bottom: 15px;
    font-size: 16px;
}

.footer .footer-left a {
    color: #2d2a26;
    text-decoration: underline;
    font-size: 16px;
}

.footer .footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer .footer-nav {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.footer .footer-nav a {
    text-decoration: none;
    color: #2d2a26;
    font-size: 16px;
}

.footer .footer-nav a:hover {
    text-decoration: underline;
}

.footer .footer-social {
    display: flex;
    gap: 20px;
}

.footer .footer-social a {
    text-decoration: none;
    font-weight: bold;
    color: #2d2a26;
    font-size: 16px;
}

.footer hr {
    border: none;
    border-top: 1px solid #D9D9D9;
    margin-bottom: 25px;
}

.footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.footer .footer-legal {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer a {
    text-decoration: none;
    color: #2d2a26;
}

.footer a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .footer .footer-logo {
        font-size: 80px;
    }

    .footer .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer .footer-bottom {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .footer .footer-nav {
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer {
        background: #ffffff;
        padding: 40px 40px;
        color: #2d2a26;
    }

    .footer .footer-right {
        align-items: flex-start;
    }


    .inquiry-form-wrapper .inquiry-form-intro h2 {
        font-size: 30px;
        line-height: 43px;
    }
}






@media (min-width: 1025px) {

    .why-levitas-banner {
        max-height: 100dvh;
        overflow: hidden;
    }

    .why-levitas-banner .why-container {
        height: 100dvh;
    }

    .why-levitas-banner .why-image {
        aspect-ratio: 3 / 4;
        height: 100%;
    }

}

@media (max-width: 1024px) {

    .why-levitas-banner {
        max-height: none;
    }

    .why-levitas-banner .why-container {
        height: auto;
    }

    .why-levitas-banner .why-image {
        aspect-ratio: 3 / 4;
        height: auto;
    }

}

