﻿/* Main stylesheet (bundled for hosting reliability). Source modules are in css/modules. */


/* ===== MODULE: base.css ===== */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  text-decoration: none;
  scroll-behavior: smooth;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* scrollbar */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #d6d5d5b0;
  margin-block: 8px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 53, 67, 0.719);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 53, 67, 0.842);
}


/* ===== MODULE: nav.css ===== */

/* nav*/

.nav{
    position: fixed;
    width: 100%;
    margin: 0;
    height: 78px;
    display: grid;
    grid-template-columns: 1fr minmax(700px, 840px) 1fr;
    grid-template-rows: 78px;
    bottom: 12px;
    z-index: 1000;
}

.nav a{
    text-decoration: none;
    color: rgba(174, 180, 171, 0.979);
    font-size: 20px;
}

.nav-sub{
    width: 100%;
    height: 100%;
    border-radius: 6px;
}
.nav-center{
    display: grid;
    grid-template-columns: 78px 1fr;
    grid-template-rows: 78px;
    background-color: #222222a9;
}
.nav-logo-a{
    margin: 4px;
    border-radius: 6px;
    overflow: hidden;
}
.nav-logo-div img{
    height: 100%;
    width: 100%;
}
.nav-content{
    margin: 4px 4px 4px 0px;
    border-radius: 6px;
    background-color: rgba(0, 53, 67, 0.603);
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}
.nav-item{
    margin: 4px;
    background-color: rgba(0, 53, 67, 0.644);
    border-radius: 6px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 0 8px;
    border: .5px solid rgba(141, 139, 139, 0.658);
    transition: all 0.5s;
}
.nav-item:hover{
    border: 1px solid  rgb(141, 139, 139);
    transition: all 0.5s;
}

@media screen and (max-width: 1000px) {
    .nav{
        display: none;
    }
}


/* ===== MODULE: header.css ===== */

/* header */

header{
    z-index: 100;
    height: 93vh;
    width: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size:cover;
}

.header-main-header{
    background-color: rgba(0, 0, 0, 0.185);
    height: 100%;
    width: 100%;
    position: relative;
    display: grid;
    grid-template-rows: 1fr 1fr 121px 40px;
}

.header-branch-down{
    color: rgba(245, 255, 235, 0.85);
    display: grid;
    grid-template-columns: 1fr 240px 360px 240px 1fr;
}

.header-down-text1{
    font-size: 48px;
    text-align: center;
    padding: 0px 10px;
    
}
.header-down-text2{
    font-size: 20px;
    padding: 0px 10px;
}

.header-down-text-center{
    border-left: 3px solid rgba(255, 255, 255, 0.61);
    border-right: 3px solid rgba(255, 255, 255, 0.61);
}

.header-down-1{
    padding-right: 73px;
}

.header-down-4{
    padding-left: 35px;
}

.header-down-6{
    padding-left: 30px;
}

.header-branch-up{
    display: grid;
    grid-template-columns: 180px 300px 1fr 220px;
}

.header-branch-sub img{
    height: 150px;
    border-radius: 7px;
}
.header-branch-logo{
    padding-left: 30px;
    padding-top: 30px;
}

.header-branch-text{
    padding-top: 35px;
    padding-left: 10px;
}
.header-branch-text-h{
    font-size: 45px;
    color: rgba(236, 200, 181, 1);
    font-weight: 150;
}
.header-branch-text-p{
    color: rgba(245, 255, 235, 1);
    font-size: 20px;
}

@media screen and (max-width: 1000px) {
    .header-branch-up{
        grid-template-columns: auto auto 1fr;
    }
    .header-branch-phone{
        display: none;
    }
    .header-branch-facebook{
        display: none;
    }
    .header-branch-down{
        display: none;
    }
    .header-branch-logo{
        padding-left: 0px;
    }
    .header-branch-logo{
        padding-left: 10px;
        padding-top: 30px;
    }
    .header-branch-text-h{
        font-size: 35px;
        color: rgba(236, 200, 181, 1);
        font-weight: 150;
        padding-top: 10px;
    }
    .header-branch-text-p{
        color: rgba(245, 255, 235, 1);
        font-size: 16px;
    }
    .header-branch-sub img{
        height: 130px;
        border-radius: 7px;
    }
}


.header-branch-phone{
    font-size: 22px;
    color: rgba(236, 200, 181, 1);
    background-color: rgba(0, 53, 67, 1);
    height: 50px;
    text-align: center;
    margin-top: 30px;
    padding-top: 13px;
    margin-right: 20px;
    border-radius: 7px;
}

.header-branch-facebook img{
    height: 50px;
    margin-top: 30px;
    margin-right: 5px;
}
.header-branch-facebook{
    justify-self: end;
}

/* ===== MODULE: about-and-conception.css ===== */

/* about */

.about{
    background-color: rgba(245, 243, 238, 1);
    height: auto;
    position: relative;
    display: grid;
    grid-template-rows: auto;
}
.about-up{
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    justify-items: center;
    margin-right: 10px;
}
@media screen and (max-width: 1000px) {
    .about-up{
        grid-template-columns: 50% 50%;
    }
    .header-branch-down{
        grid-template-rows: auto auto auto;
        grid-template-columns: 1fr;
    }
    .about-up1{
        height: 30px;
        font-size: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
        color: #b2a9a0;
        margin-left: 10px;
    
    }
}
.about-up1{
    height: 35px;
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 20px;
    color: #b2a9a0;
    margin-left: 10px;

}
.about-up2{
    margin-top: 15px;
    margin-left: 10px;
    padding-bottom: 40px;
}
.about-up2 img{
    height: auto;
    width: 100%;
    border-radius: 10px;
}

/* Concept */
    
.conception{
    width: 100%;
    height: 105vh;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    grid-template-rows: 1fr;
    text-align: center;
    justify-items: center;
    overflow: hidden;
    align-items: center;
    gap: 30px;
    background-color: rgba(245, 243, 238, 1);
    padding-bottom: 40px;
    place-items: center;
}

.conception-sub{
    overflow: hidden;
    box-sizing: border-box;
    margin: 10px;
}

.conception-image{
    border-radius: 5px;
}

.conception-image img{
    object-fit: cover;
    object-position: center;
    height: 80vh;
    width: 100%;
}

.conception-up{
    margin-left: 10%;
}

.conception-down{
    margin-right: 10%;
}

.conception-center{
    padding-left: 30px;
    padding-right: 30px;
    max-width: 500px;
    color: rgba(0, 53, 67, 1);
    display: grid;
    grid-template-rows: auto auto auto;
    place-items: center;
}

.conception-h{
    font-size: 40px;
    padding-bottom: 20px;
}
.conception-p{
    font-size: 24px;
    padding-bottom: 20px;
}

.button-link{
    text-decoration: none;
    color: #b2a9a0;
    font-size: 24px;
}

.button-link div{
    background-color: rgba(0, 53, 67, 1);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    padding: 18px 30px;
    width: max-content;
    min-width: 260px;
    border-radius: 30px;
    transition: all 0.5s;
}

.button-link div:hover{
    color: rgba(0, 53, 67, 1);
    background-color:  #b2a9a0;
    transition: all 0.5s;
}

@media screen and (max-width: 1000px) {
    .conception{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto 1fr;
        min-height: 105vh;
        height: auto;
        padding-bottom: 0px;
        gap: 0;
    }
    .conception-sub{
        overflow: hidden;
        box-sizing: border-box;
        margin: 0;
    }
    
    .conception-image{
        border-radius: 5px;
    }
    
    .conception-image img{
        object-fit: cover;
        object-position: center;
        height: 20vh;
        width: 95vw;
    }
    
    .conception-up{
        margin-left: 0%;
    }
    
    .conception-down{
        margin-right: 0%;
    }
    
    .conception-center{
        padding-left: 30px;
        padding-right: 30px;
        max-width: 700px;
        color: rgba(0, 53, 67, 1);
    }
    
    .conception-h{
        font-size: 30px;
        padding-bottom: 20px;
    }
    .conception-p{
        font-size: 16px;
        padding-bottom: 20px;
    }
    
    .button-link{
        text-decoration: none;
        color: #b2a9a0;
        font-size: 16px;
    }
}
/* about */

.concept{
    background-color: rgba(0, 53, 67, 1);
    height: auto;
}

.about-concept{
    text-align: center;
    color: #b2a9a0;
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 40px;
}


/* ===== MODULE: swiper.css ===== */

/* Swiper */

.swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    background: #fff !important;
    opacity: 1; 
    margin: 0 5px;
    height: 10px !important;
    width: 20px !important;
    border-radius: 3px !important;
    transition: all 1s;
}

.swiper-pagination-bullet-active {
    background: #E1A686 !important;
}
.swiper-pagination-bullet:hover{
    background-color: #E1A686 !important;
    transition: all 1s;
}

.swiper{
    height: 80vh;
    display: block;
    padding-bottom: 30px;
}
.swiper-container{
    background-color: rgba(0, 53, 67, 1);
    padding-bottom: 8vh;
    display: block;
    position: relative;
}
.swiper-text{
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 30% 70%;
}
.swiper-text1{
    display: grid;
    grid-template-rows: auto 1fr;
    color: #b2a9a0;
    height: 80vh;
    margin-left: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
    max-width: 700px;
    padding-top: 40px;
    margin-right: 30px;
}

.swiper-text-h{
    font-size: 40px;
}
.swiper-text-p{
    font-size: 24px;
    margin-top: 30px;
}

.swiper-sub{
    overflow: hidden;
    box-sizing: border-box;
}
.swiper-img img{
    padding-top: 40px;
    height: 80vh;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    margin-left: 30px;
}

@media screen and (max-width: 800px){
    .swiper-text-h{
        font-size: 24px;
    }
    .swiper-text-p{
        font-size: 18px;
    }
    .about-concept{
        font-size: 30px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.project-down-sub{
    width: 100%;
    height: 10vh;
    background-color:  rgba(0, 53, 67, 1);
}

/* ===== MODULE: video.css ===== */

/* video */

.video{
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    place-items: center;
}

.video-main{
    padding-top: 70px;
    padding-bottom: 70px;
    font-size: 34px;
    text-align: center;
}

@media screen and (max-width: 1000px){
    .video-1 iframe{
        width: 409px;
        height: 230px;
    }
}


/* ===== MODULE: apartments.css ===== */

/* apartments */
.apartments{
    height: auto;
    position: relative;
    margin-top: 70px;
    margin-bottom: 70px;
    
}
.apartments-h{
    font-size: 34px;
    color: rgba(0, 53, 67, 1);
    text-align: center;
}
.apartments-subtitle{
    max-width: 860px;
    margin: 16px auto 0;
    text-align: center;
    color: rgba(0, 53, 67, 0.85);
    font-size: clamp(16px, 1.35vw, 22px);
    line-height: 1.4;
    padding: 0 14px;
}
.apartments-content{
    position: relative;
    display: grid;
    width: 100%;
    height: auto;
    margin-top: 70px;
    grid-template-columns: 1fr 400px 0.5fr 400px 1fr;
    grid-template-rows: 1fr;
}

.apartments-first{
    position: relative;
    display: grid;
    grid-template-rows: 100px 1fr 1fr 1fr 1fr auto;
    grid-template-columns: 1fr;
    height: 100%;
    width: 100%;
    place-items: center;
}

.apartmants-sub{
    overflow: hidden;
}
.apartmants-sub img{
    object-fit: cover;
    object-position: center;
    height: auto;
    width: 80%;
    margin-left: 10%;
    margin-top: 10px;
}
.first-apart-h{
    font-size: 30px;
    color: rgba(0, 53, 67, 1);
}

.apartments-second{
    position: relative;
    display: grid;
    grid-template-rows: 100px 330px 325px auto;
    grid-template-columns: 1fr;
    height: 1000px;
    width: 100%;
    place-items: center;
}

.second-apart-h{
    font-size: 30px;
    color: rgba(0, 53, 67, 1);
}

.second-apart-p{
    margin-left: 10%;
    padding-bottom: 110px;
}
.first-apart-p{
    margin-left: 10%;
    padding-top: 20px;
}
.second-apart-2{
    padding-top: 10px;
}

.complex-main{
    font-size: 24px;
    padding-bottom: 10px;
    color: rgba(0, 53, 67, 1);
}

.complex-price{
    color: rgba(0, 53, 67, 1);
    font-size: 20px;
}
.complex-area{
    color: rgba(0, 53, 67, 1);
    font-size: 20px;
}

.apartments-footer{
    width: 100%;
    padding-top: 50px;
    padding-left: 40px;
    color: rgba(0, 53, 67, 1);
    font-size: 20px;
    text-align: center;
}
@media screen and (max-width: 900px){
    .apartments-center, .apartments-sub-left, .apartments-sub-right{
        display: none;
    }
    .apartments-content{
        position: relative;
        display: grid;
        width: 100%;
        height: auto;
        margin-top: 70px;
        grid-template-columns: 60%;
        grid-template-rows: auto auto;
        justify-content: center;
    }
    .apartments-first{
        position: relative;
        display: grid;
        grid-template-rows: 100px 300px 300px 300px 300px auto;
        grid-template-columns: 1fr;
        height: auto;
        width: 100%;
        place-items: center;
    }
    .apartments-second{
        position: relative;
        display: grid;
        grid-template-rows: 100px 330px 325px auto;
        grid-template-columns: 1fr;
        height: 1000px;
        width: 100%;
        place-items: center;
        padding-top: 70px;
    }
    .apartmants-sub img{
        object-fit: cover;
        object-position: center;
        height: auto;
        width: 270px;
        margin-top: 10px;
    }
    .second-apart-h{
        font-size: 24px;
        color: rgba(0, 53, 67, 1);
        margin-left: 40px;
    }
    .first-apart-h{
        font-size: 24px;
        color: rgba(0, 53, 67, 1);
        margin-left: 40px;
    }
    .apartmants-sub{
        overflow: hidden;
        padding-right: 60px;
    }
    .apartments-footer{
        height: 300px;
        width: 100%;
        margin-top: 20px;
        padding-left: 10px;
        color: rgba(0, 53, 67, 1);
        font-size: 20px;
        text-align: center;
    }
    

}


@media screen and (max-width: 900px){
    .business-photo-none-2{
        display: none;
    }
    .business-photo-none{
        display: none;
    }
}



/* ===== MODULE: layout-plans.css ===== */

/* layout */

.layout-h{
    font-size: 32px;
    color: rgba(0, 53, 67, 1);
    text-align: center;
    margin-bottom: 70px;
}

@media screen and (max-width: 900px){
    .layout-h{
        font-size: 24px;
    }
}

.layout-flat4{
    height: 550px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 430px 10px 460px 1fr;
    grid-template-rows: 1fr;
}
.layout-flat4-left{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 80px 470px;
}
.layout-flat4-left-up{
    margin-left: 10px;
    padding-top: 10px;
    width: 90px;
    white-space: nowrap;
    font-size: 32px;
    border-bottom: 3px solid #188038;
}
.layout-flat4-left-down{
    padding-left: 10px;
    padding-top: 35px;
    width: 100%;
    white-space: nowrap;
    font-size: 26px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 70px;
}

.layout-flat4-right{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 80px 470px;
}

.buttons-container{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    text-align: center;
    place-items: center;
}

.button-layout button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color:  rgba(0, 53, 67, 1);
    color: rgba(236, 200, 181, 0.555);
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.button-layout button.active {
    background-color: #2b5215d0; 
    color: white;
}

.button-layout button:hover {
    background-color: #413b3bcb; 
}

#displayImage {
    max-width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.5s ease, transform 0.5s ease; 
}

.fade-out {
    opacity: 0;
    transform: scale(0.9); 
}

@media screen and (max-width: 900px) {
    .layout-flat4 {
        height: auto;
        width: 100%;
        display: grid;
        grid-template-rows: auto auto auto; 
        grid-template-columns: 1fr;
        justify-items: center; 
        margin: 0;
        padding: 40px 0 0 0; 
        gap: 20px; 
    }

    .layout-flat4-left-up {
        margin-left: 10px;
        padding-top: 10px;
        width: auto; 
        white-space: nowrap;
        font-size: 26px;
        border-bottom: 3px solid #188038;
        text-align: center; 
    }

    .layout-flat4-left{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 80px 350px;
    }

    .layout-flat4-left-down {
        padding-left: 10px;
        padding-top: 22px;
        width: 100%;
        white-space: nowrap;
        font-size: 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
        gap: 50px;
    }

    .layout-flat4-right {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto; 
        gap: 10px; 
    }

    .layout-flat4-left-down2 {
        text-align: end;
    }

    .buttons-container {
        width: 100%;
        max-width: 300px; 
        justify-self: center;
        display: grid;
        grid-template-columns: repeat(4, 1fr); 
        text-align: center;
        place-items: center;
        gap: 10px;
        margin-right: 25px;
        padding-bottom: 10px;
    }

    .button-layout button {
        padding: 5px 10px; 
        font-size: 14px; 
        cursor: pointer;
        border: none;
        border-radius: 5px;
        background-color: rgba(255, 255, 255, 0);
        color: #333;
        transition: background-color 0.3s ease, color 0.3s ease; 
        white-space: nowrap;
    }

    .button-layout button.active {
        background-color: transparent;
        color: rgb(26, 114, 138);
    }

    .button-layout button:hover {
        background-color: transparent;
        color: rgb(26, 114, 138);
    }

    #displayImage {
        justify-self: center;
        width: 100%;
        max-width: 100%; 
        padding: 0;
        padding-left: 19%;
        padding-right: 15%;
        max-height: 100%;
        display: block;
        transition: opacity 0.5s ease, transform 0.5s ease;
        margin: 0;
    }
}


.layout-flat2 {
    margin-bottom: 100px;
    padding-top: 70px;
    height: 350px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 430px 10px 460px 1fr;
    grid-template-rows: 1fr;
}

.layout-flat2-left {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 80px 470px;
}

.layout-flat2-left-up {
    margin-left: 10px;
    padding-top: 10px;
    width: 90px;
    white-space: nowrap;
    font-size: 32px;
    border-bottom: 3px solid #188038;
}

.layout-flat2-left-down {
    padding-left: 10px;
    padding-top: 35px;
    width: 100%;
    white-space: nowrap;
    font-size: 26px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 70px;
}

.layout-flat2-right {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 80px 470px;
}

.buttons-container-2 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    text-align: center;
    place-items: center;
    padding-left: 50px;
    padding-right: 30px;
}

.button-layout-2 button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color:  rgba(0, 53, 67, 1);
    color: rgba(236, 200, 181, 0.555);
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.button-layout-2 button.active {
    background-color: #2b5215d0; 
    color: white;
}

.button-layout-2 button:hover {
    background-color: #413b3bcb;
}


#displayImage-2 {
    justify-self: center;
    width: 100%;
    max-width: 100%; 
    padding: 0;
    padding-left: 19%;
    padding-right: 15%;
    max-height: 100%;
    display: block;
    transition: opacity 0.5s ease, transform 0.5s ease;
    margin: 0;
}

.fade-out-2 {
    opacity: 0;
    transform: scale(0.9);
}


@media screen and (max-width: 900px) {
    .layout-flat2 {
        height: auto;
        width: 100%;
        display: grid;
        grid-template-rows: auto auto auto;
        grid-template-columns: 1fr;
        justify-items: center; 
        margin: 0;
        padding: 40px 0 0 0; 
        gap: 20px; 
    }

    .layout-flat2-left-up {
        margin-left: 10px;
        padding-top: 10px;
        width: auto; 
        white-space: nowrap;
        font-size: 26px;
        border-bottom: 3px solid #188038;
        text-align: center; 
    }

    .layout-flat2-left {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 80px 200px;
    }

    .layout-flat2-left-down {
        padding-left: 10px;
        padding-top: 22px;
        width: 100%;
        white-space: nowrap;
        font-size: 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
        gap: 50px;
    }

    .layout-flat2-right {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto; 
        gap: 10px; 
    }

    .layout-flat2-left-down2 {
        text-align: end;
    }

    .buttons-container-2 {
        width: 100%; 
        max-width: 300px; 
        justify-self: center;
        display: grid;
        grid-template-columns: repeat(2, 1fr); 
        text-align: center;
        place-items: center;
        gap: 10px;
        margin-right: 0;
        padding-bottom: 10px;
    }

    .button-layout-2 button {
        padding: 5px 10px; 
        font-size: 14px; 
        cursor: pointer;
        border: none;
        border-radius: 5px;
        background-color: rgba(255, 255, 255, 0);
        color: #333;
        transition: background-color 0.3s ease, color 0.3s ease; 
        white-space: nowrap;
    }

    .button-layout-2 button.active {
        background-color: transparent; 
        color: rgb(26, 114, 138);
    }

    .button-layout-2 button:hover {
        background-color: transparent;
        color: rgb(26, 114, 138); 
    }

    #displayImage-2 {
        justify-self: center;
        width: 100%;
        max-width: 100%;
        padding: 0;
        padding-left: 19%;
        padding-right: 15%;
        max-height: 100%;
        display: block;
        transition: opacity 0.5s ease, transform 0.5s ease;
        margin: 0;
    }
}


/* ===== MODULE: price.css ===== */

/* price */

.price{
    padding-top: 70px;
    padding-bottom: 40px;
    color: rgba(0, 53, 67, 1);
    text-align: center;
}

.price-h{
    font-size: 34px;
    text-align: center;
    padding-bottom: 60px;
}
.price-subtitle{
    max-width: 900px;
    margin: 0 auto 26px;
    padding: 0 12px;
    text-align: center;
    font-size: clamp(15px, 1.25vw, 20px);
    line-height: 1.45;
    color: rgba(0, 53, 67, 0.85);
}



@media screen and (max-width: 900px){
    .price-h{
        font-size: 24px;
    }
}


table.price-table{
	width: 96%;
	border-collapse:collapse;
	border-spacing:0;
	height: auto;
    margin-left: 2%;
}
table.price-table,table.price-table td, table.price-table th {
	border: 1px solid #595959;
}
table.price-table td,table.price-table th {
	padding: 3px;
	width: 30px;
	height: 35px;
}
table.price-table th {
	background: #4e6982;
	color: #fff; 
	font-weight: normal;
}

th, td{
    vertical-align: middle;
}

.price-lvl{
    background-color: #4e69821c;
    vertical-align: middle;
    font-size: 20px;
    border: 0px 4px;
}

.table-a{
    background-color: rgba(245, 222, 179, 0.24);
}



.table-b{
    background-color: #1966d21c;
}

.table-c{
    background-color: #5959591e;
}

@media screen and (max-width: 700px){
    table.price-table td,table.price-table th {
        padding: 1px;
        width: 20px;
        height: 40px;
        font-size: 12px;
    }

    .table-none{
        display: none;
    }
}


/* ===== MODULE: footer-contacts.css ===== */

/* footer */
footer{
    height: auto;
    width: 100%;
    margin-right: 10px;
    padding-bottom: 100px;
}
.location{
    height: 700px;
    position: relative;
    width: 100%;
}

.location-main{
    text-align: center;
    padding-top: 70px;
    padding-bottom: 12px;
    font-size: 34px;
    color: rgba(0, 53, 67, 1);
}
.location-subtitle{
    text-align: center;
    max-width: 900px;
    margin: 0 auto 34px;
    padding: 0 14px;
    font-size: clamp(15px, 1.2vw, 20px);
    line-height: 1.45;
    color: rgba(0, 53, 67, 0.82);
}


.location-branch{
    display: grid;
    grid-template-columns: 1fr 500px;
    height: 700px;
    padding-left: 20px;
    padding-right: 20px;
}

.location-text{
    background-color: #1a1a1d;
    margin-bottom: 0px;
    color: #b3a9a0;
}
.location-sub{
    font-size: 20px;
    padding-top: 10px;
    padding-left: 15px;
}
.location-links{
    display: flex;
    padding-left: 20px;
    padding-top: 20px;
}
.location-links a{
    text-decoration: none;
    color: #b3a9a0;
}
.location-links div{
    margin-top: 10px;
    margin-left: 15px;
    width: 50px;
    height: 50px;
    overflow: hidden;
}
.location-links img{
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
    border-radius: 50%;
}
.location-panel .location-links{
    padding-left: 0;
    padding-top: 4px;
    gap: 10px;
}
.location-panel .location-links div{
    margin: 0;
    width: 44px;
    height: 44px;
}
.location-panel{
    border-radius: 10px;
    padding: 24px;
    gap: 18px;
}
.location-lead{
    font-size: clamp(16px, 1.25vw, 20px);
    line-height: 1.5;
    color: #d0c6bd;
}
.contact-cards{
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.contact-card{
    display: grid;
    gap: 6px;
    background-color: rgba(0, 53, 67, 0.35);
    border: 1px solid rgba(178, 169, 160, 0.22);
    border-radius: 8px;
    padding: 12px 14px;
    color: #d0c6bd;
    text-decoration: none;
}
.contact-card-label{
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #b3a9a0;
}
.contact-card-value{
    font-size: clamp(17px, 1.3vw, 21px);
    font-weight: 700;
    line-height: 1.35;
}
.contact-card-meta{
    font-size: 14px;
    color: #b3a9a0;
}
@media screen and (max-width: 800px) {
    .location-branch{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1.4fr 1fr;
        height: 80vh;
        margin-bottom: 60px;
    }
    .location-text1{
        display: block;
        background-color: #1a1a1d;
        margin-bottom: 40px;
    }
}
.footer-bottom{
    height: 200px;
}


/* ===== MODULE: layout-stability-fixes.css ===== */

/* Layout stability fixes */
body {
    font-family: "Nunito Sans", sans-serif;
    overflow-x: hidden;
    line-height: 1.35;
}

img {
    max-width: 100%;
    height: auto;
}

iframe {
    display: block;
    border: 0;
}

.conception {
    min-height: 105vh;
    height: auto;
    padding: 50px 0;
}

.conception-image img {
    height: clamp(260px, 62vh, 760px);
}

.swiper {
    height: auto;
    min-height: clamp(560px, 76vh, 980px);
}

.swiper-text1 {
    height: auto;
    min-height: 100%;
}

.swiper-text-p {
    line-height: 1.35;
}

.swiper-img img {
    width: 100%;
    max-width: 100%;
}

.video-1 {
    width: min(100%, 960px);
    padding: 0 16px 20px;
}

.video-1 iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.video-fallback{
    margin-top: 14px;
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.45;
    color: rgba(0, 53, 67, 0.72);
}

.video-fallback a{
    color: rgba(0, 53, 67, 1);
    text-decoration: underline;
}

.apartments-content {
    grid-template-columns: minmax(12px, 1fr) minmax(280px, 420px) minmax(20px, 0.5fr) minmax(280px, 420px) minmax(12px, 1fr);
    gap: clamp(12px, 2vw, 30px);
}

.apartments-second {
    height: auto;
    grid-template-rows: 100px auto auto auto;
}

.apartments-footer {
    padding: 50px 20px 0;
}

.apartments-footer p {
    padding-bottom: 20px;
    line-height: 1.4;
}

.apartments-footer ol {
    list-style: decimal;
    list-style-position: outside;
    padding-left: 1.5rem;
    margin: 0 auto;
    display: inline-block;
    text-align: left;
    line-height: 1.45;
}

.layout-flat4,
.layout-flat2 {
    height: auto;
    grid-template-columns: minmax(12px, 1fr) minmax(280px, 430px) minmax(8px, 20px) minmax(280px, 460px) minmax(12px, 1fr);
    gap: clamp(12px, 2vw, 28px);
}

.layout-flat4-left,
.layout-flat2-left,
.layout-flat4-right,
.layout-flat2-right {
    height: auto;
}

.layout-flat4-left-down,
.layout-flat2-left-down {
    white-space: normal;
    font-size: clamp(16px, 1.55vw, 26px);
    gap: clamp(16px, 4vw, 70px);
    line-height: 1.35;
}

.layout-flat4-right,
.layout-flat2-right {
    justify-items: center;
}

#displayImage,
#displayImage-2 {
    width: min(100%, 520px);
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

.price-table-wrap {
    width: 100%;
    overflow-x: auto;
    padding: 0 2%;
}

table.price-table {
    width: 100%;
    min-width: 980px;
    margin-left: 0;
}

table.price-table th,
table.price-table td {
    white-space: nowrap;
}

.price-lvl {
    white-space: normal;
}

.price-note{
    margin-top: 16px;
    margin-bottom: 6px;
    padding: 12px 14px;
    border: 1px solid rgba(0, 53, 67, 0.22);
    border-radius: 8px;
    background-color: rgba(78, 105, 130, 0.08);
    text-align: left;
    color: rgba(0, 53, 67, 0.82);
    line-height: 1.45;
    font-size: clamp(13px, 1.02vw, 16px);
}

.location {
    height: auto;
    min-height: 700px;
}

.location-map {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: 10px;
    background-color: rgba(0, 53, 67, 0.08);
}

.location-map > iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    min-height: 420px;
}

.location-map-open {
    position: absolute;
    left: 14px;
    bottom: 14px;
    text-decoration: none;
    background-color: rgba(0, 53, 67, 0.9);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
}

.location-branch {
    height: auto;
    min-height: 700px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
}

.location-text {
    display: grid;
    align-content: center;
}

.location-sub {
    line-height: 1.45;
}

@media screen and (max-width: 1200px) {
    .swiper-text {
        grid-template-columns: 1fr;
    }

    .swiper-img img {
        margin: 0;
        padding: 20px 20px 0;
        max-height: 44vh;
    }

    .swiper-text1 {
        margin: 0;
        max-width: none;
        padding: 20px;
    }
}

@media screen and (max-width: 1000px) {
    .conception-image img {
        height: clamp(180px, 30vh, 260px);
        width: min(95vw, 700px);
    }

    .apartments-content {
        grid-template-columns: minmax(0, 1fr);
        gap: 30px;
        margin-top: 40px;
    }

    .apartments-first,
    .apartments-second {
        grid-template-rows: auto auto auto auto auto auto;
        height: auto;
    }

    .apartmants-sub {
        padding-right: 0;
    }

    .apartmants-sub img {
        width: min(100%, 320px);
        margin: 10px auto 0;
    }

    .first-apart-p,
    .second-apart-p {
        margin-left: 0;
        padding: 12px 16px 0;
        text-align: center;
    }

    .layout-flat4,
    .layout-flat2 {
        grid-template-columns: 1fr;
        padding-top: 30px;
    }

    .layout-flat4-left,
    .layout-flat2-left {
        grid-template-rows: auto auto;
    }

    .layout-flat4-left-up,
    .layout-flat2-left-up {
        width: auto;
        white-space: normal;
    }

    .buttons-container {
        max-width: 420px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-right: 0;
    }

    .buttons-container-2 {
        max-width: 420px;
        padding: 0;
    }

    #displayImage,
    #displayImage-2 {
        width: min(100%, 420px);
    }
}

@media screen and (max-width: 800px) {
    .location {
        min-height: 0;
    }

    .location-branch {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        min-height: 0;
        height: auto;
        gap: 20px;
        margin-bottom: 20px;
    }

    .location-map {
        min-height: 320px;
    }
}


/* ===== MODULE: hybrid-offer.css ===== */

/* Hybrid offer section */
.hybrid-offer {
    width: 100%;
    color: rgba(0, 53, 67, 1);
    padding: 78px 24px;
    display: grid;
    grid-template-columns: minmax(0, 1180px);
    justify-content: center;
    gap: 24px;
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(circle at 8% 10%, rgba(0, 53, 67, 0.12), transparent 34%),
        radial-gradient(circle at 92% 6%, rgba(178, 169, 160, 0.32), transparent 30%),
        linear-gradient(180deg, rgba(245, 243, 238, 1) 0%, rgba(238, 235, 229, 1) 100%);
}

.hybrid-offer::after{
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(0, 53, 67, 0.03) 1px, transparent 1px), linear-gradient(rgba(0, 53, 67, 0.02) 1px, transparent 1px);
    background-size: 42px 42px;
    z-index: -1;
    pointer-events: none;
}

.hybrid-kicker{
    justify-self: center;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    font-weight: 800;
    color: rgba(0, 53, 67, 0.78);
    padding: 9px 14px;
    border: 1px solid rgba(0, 53, 67, 0.24);
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.82);
}

.hybrid-offer-title {
    text-align: center;
    font-size: clamp(30px, 3.2vw, 46px);
    line-height: 1.2;
    max-width: 940px;
    justify-self: center;
}

.hybrid-offer-title,
.hybrid-path-title,
.hybrid-decision-head,
.green-tech-title,
.custom-home-showcase-h,
.hybrid-support-h{
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.hybrid-offer-subtitle {
    text-align: center;
    font-size: clamp(16px, 1.3vw, 21px);
    line-height: 1.45;
    max-width: 960px;
    justify-self: center;
    color: rgba(0, 53, 67, 0.84);
}

.hybrid-chip-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.hybrid-chip{
    background-color: rgba(0, 53, 67, 0.08);
    border: 1px solid rgba(0, 53, 67, 0.18);
    color: rgba(0, 53, 67, 0.88);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: clamp(12px, 0.95vw, 14px);
    line-height: 1.2;
    font-weight: 700;
}

.hybrid-dual-paths{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.hybrid-path{
    background-color: #ffffff;
    border: 1px solid rgba(0, 53, 67, 0.22);
    border-radius: 14px;
    padding: 22px;
    display: grid;
    gap: 14px;
    box-shadow: 0 14px 30px rgba(0, 53, 67, 0.08);
}

.hybrid-path-badge{
    justify-self: start;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: rgba(0, 53, 67, 0.74);
    background-color: rgba(178, 169, 160, 0.22);
    border-radius: 999px;
    padding: 5px 9px;
}

.hybrid-path-title{
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1.2;
}

.hybrid-path p{
    font-size: clamp(15px, 1.15vw, 18px);
    line-height: 1.5;
    color: rgba(0, 53, 67, 0.85);
}

.hybrid-path-list{
    list-style: disc;
    list-style-position: outside;
    padding-left: 1.25rem;
    margin: 0;
    display: grid;
    gap: 10px;
    font-size: clamp(14px, 1.08vw, 17px);
    line-height: 1.45;
}

.hybrid-path-footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.hybrid-path-meta{
    font-size: clamp(12px, 0.95vw, 14px);
    color: rgba(0, 53, 67, 0.76);
    max-width: 370px;
    line-height: 1.35;
}

.hybrid-decision{
    background-color: #ffffff;
    border: 1px solid rgba(0, 53, 67, 0.22);
    border-radius: 14px;
    padding: 22px;
    display: grid;
    gap: 12px;
}

.hybrid-decision-head{
    font-size: clamp(21px, 1.8vw, 30px);
    line-height: 1.3;
}

.hybrid-decision-grid{
    display: grid;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.hybrid-decision-row{
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    min-width: 760px;
    border: 1px solid rgba(0, 53, 67, 0.12);
    border-radius: 10px;
    overflow: hidden;
}

.hybrid-decision-row > div{
    padding: 11px 12px;
    font-size: clamp(13px, 1.02vw, 15px);
    line-height: 1.4;
    background-color: rgba(245, 243, 238, 0.84);
}

.hybrid-decision-row > div + div{
    border-left: 1px solid rgba(0, 53, 67, 0.08);
}

.hybrid-decision-row-head > div{
    background-color: rgba(0, 53, 67, 0.92);
    color: #d8d0c8;
    font-weight: 700;
}

.hybrid-highlights{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.hybrid-highlight{
    background-color: #ffffff;
    border: 1px solid rgba(0, 53, 67, 0.2);
    border-radius: 12px;
    padding: 15px;
    display: grid;
    text-align: center;
    gap: 6px;
}
.hybrid-highlight-value{
    font-size: clamp(24px, 2vw, 34px);
    font-weight: 800;
    color: rgba(0, 53, 67, 1);
    line-height: 1.2;
}
.hybrid-highlight-label{
    font-size: clamp(12px, 0.98vw, 14px);
    color: rgba(0, 53, 67, 0.78);
}

.hybrid-card-link {
    display: inline-block;
    background-color: rgba(0, 53, 67, 1);
    color: #d0c6bd;
    border-radius: 999px;
    padding: 12px 18px;
    width: fit-content;
    transition: all 0.35s;
    border: 1px solid rgba(0, 53, 67, 1);
    font-size: 14px;
    font-weight: 700;
}

.hybrid-card-link:hover {
    background-color: #d0c6bd;
    color: rgba(0, 53, 67, 1);
}

.green-tech-block {
    background-color: rgba(0, 53, 67, 1);
    color: #d0c6bd;
    border-radius: 14px;
    padding: 0px 22px 24px 24px;
    display: grid;
    gap: 16px;
}

.green-tech-title {
    font-size: clamp(24px, 2vw, 34px);
    line-height: 1.3;
}

.green-tech-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.green-tech-item {
    background-color: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(178, 169, 160, 0.3);
    border-radius: 8px;
    padding: 14px;
}

.green-tech-item-h {
    font-size: clamp(17px, 1.35vw, 22px);
    margin-bottom: 6px;
}

.green-tech-item p {
    font-size: clamp(13px, 1.05vw, 16px);
    line-height: 1.45;
}

.custom-home-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 20px;
    align-items: stretch;
}

.custom-home-showcase-left,
.custom-home-showcase-right {
    border-radius: 10px;
    overflow: hidden;
}

.custom-home-showcase-left{
    display: flex;
    min-height: 100%;
}

.custom-home-showcase-left img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    min-height: 260px;
    border-radius: 10px;
}

.custom-home-showcase-right {
    background-color: #ffffff;
    border: 1px solid rgba(0, 53, 67, 0.2);
    padding: 22px;
    display: grid;
    align-content: start;
    gap: 14px;
    box-shadow: 0 12px 26px rgba(0, 53, 67, 0.07);
    height: 100%;
}

.custom-home-showcase-h {
    font-size: clamp(24px, 2vw, 34px);
}

.custom-home-showcase-right p {
    font-size: clamp(15px, 1.3vw, 19px);
    line-height: 1.45;
}

.custom-home-benefits{
    list-style: disc;
    list-style-position: outside;
    padding-left: 1.3rem;
    margin: 0;
    display: grid;
    gap: 8px;
    line-height: 1.45;
    font-size: clamp(14px, 1.15vw, 17px);
}

.custom-home-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.custom-home-links a {
    background-color: rgba(0, 53, 67, 1);
    color: #b2a9a0;
    border-radius: 8px;
    padding: 10px 12px;
    text-align: center;
    transition: all 0.35s;
}

.custom-home-links a:hover {
    background-color: #b2a9a0;
    color: rgba(0, 53, 67, 1);
}

.custom-home-cta{
    margin-top: 6px;
    justify-self: start;
}

.hybrid-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.hybrid-step {
    background-color: #ffffff;
    border: 1px solid rgba(0, 53, 67, 0.18);
    border-radius: 12px;
    padding: 16px;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    align-items: start;
}

.hybrid-step-n {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(0, 53, 67, 1);
    color: #b2a9a0;
    display: grid;
    place-items: center;
    font-size: 20px;
}

.hybrid-step-text {
    font-size: clamp(14px, 1.2vw, 17px);
    line-height: 1.4;
    padding-top: 5px;
}

.hybrid-support{
    background-color: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(0, 53, 67, 0.2);
    border-radius: 14px;
    padding: 20px 22px;
    display: grid;
    gap: 10px;
}

.hybrid-support-h{
    font-size: clamp(20px, 1.7vw, 30px);
    line-height: 1.3;
}

.hybrid-support-list{
    list-style: disc;
    list-style-position: outside;
    padding-left: 1.3rem;
    margin: 0;
    display: grid;
    gap: 8px;
    font-size: clamp(14px, 1.1vw, 17px);
    line-height: 1.45;
}

.doc-facts{
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 53, 67, 0.16);
    border-radius: 14px;
    padding: 18px;
    display: grid;
    gap: 14px;
}

.doc-facts-title{
    font-size: clamp(20px, 1.7vw, 30px);
    line-height: 1.3;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
}

.doc-facts-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.doc-fact{
    border: 1px solid rgba(0, 53, 67, 0.15);
    border-radius: 10px;
    background-color: rgba(245, 243, 238, 0.8);
    padding: 12px;
    display: grid;
    gap: 4px;
}

.doc-fact-value{
    font-size: clamp(20px, 1.6vw, 28px);
    font-weight: 800;
    line-height: 1.2;
}

.doc-fact-label{
    font-size: clamp(12px, 0.95vw, 14px);
    line-height: 1.35;
    color: rgba(0, 53, 67, 0.78);
}

.custom-home-benefits-meta{
    margin-top: 2px;
}

@media screen and (max-width: 1000px) {
    .hybrid-offer {
        padding: 50px 14px;
    }

    .hybrid-dual-paths,
    .doc-facts-grid,
    .hybrid-highlights,
    .green-tech-grid,
    .custom-home-showcase,
    .hybrid-steps {
        grid-template-columns: 1fr;
    }

    .custom-home-links {
        grid-template-columns: 1fr;
    }
}

.hybrid-offer + .apartments {
    margin-top: 20px;
}

.qa-section{
    width: min(100%, 1180px);
    margin: 40px auto 0;
    padding: 0 16px 10px;
    display: grid;
    gap: 14px;
}

.qa-title{
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(30px, 2.6vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    color: rgba(0, 53, 67, 1);
    text-align: center;
}

.qa-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.qa-card{
    background-color: rgba(245, 243, 238, 0.88);
    border: 1px solid rgba(0, 53, 67, 0.16);
    border-radius: 10px;
    padding: 16px;
    display: grid;
    gap: 8px;
}

.qa-card h3{
    font-size: clamp(18px, 1.35vw, 22px);
    line-height: 1.3;
    color: rgba(0, 53, 67, 1);
}

.qa-card p{
    font-size: clamp(14px, 1.06vw, 17px);
    line-height: 1.45;
    color: rgba(0, 53, 67, 0.84);
}


/* ===== MODULE: unified-concept-layer.css ===== */

/* Unified concept layer */
.about-context{
    max-width: 960px;
    margin: 0 auto;
    padding: 26px 18px 6px;
    text-align: center;
    color: rgba(0, 53, 67, 0.86);
}

.about-context-kicker,
.conception-kicker,
.location-kicker{
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    font-weight: 800;
    color: rgba(0, 53, 67, 0.72);
    border: 1px solid rgba(0, 53, 67, 0.2);
    border-radius: 999px;
    padding: 7px 12px;
    background-color: rgba(255, 255, 255, 0.76);
}

.about-context-text{
    margin-top: 12px;
    font-size: clamp(15px, 1.1vw, 18px);
    line-height: 1.45;
}

.about{
    padding-bottom: 28px;
}

.about-up{
    margin: 16px auto 0;
    max-width: 1180px;
    gap: 12px;
    padding: 0 16px;
}

.about-up1{
    height: auto;
    margin: 0;
    padding: 14px 12px;
    border: 1px solid rgba(0, 53, 67, 0.16);
    border-radius: 10px;
    background-color: #ffffff;
    color: rgba(0, 53, 67, 1);
    text-align: center;
    display: grid;
    gap: 5px;
}

.about-kpi-value{
    font-size: clamp(22px, 1.9vw, 30px);
    font-weight: 800;
    line-height: 1.2;
}

.about-kpi-label{
    font-size: clamp(12px, 0.95vw, 14px);
    line-height: 1.3;
    color: rgba(0, 53, 67, 0.72);
}

.conception-kicker{
    margin-bottom: 12px;
}

.conception-points{
    list-style: disc;
    list-style-position: outside;
    padding-left: 1.2rem;
    margin: 0 0 18px;
    display: grid;
    gap: 8px;
    font-size: clamp(14px, 1.06vw, 17px);
    line-height: 1.45;
    text-align: left;
    color: rgba(0, 53, 67, 0.9);
}

.about-concept{
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.about-concept-sub{
    max-width: 940px;
    margin: -36px auto 0;
    text-align: center;
    color: rgba(208, 198, 189, 0.9);
    font-size: clamp(18px, 1.28vw, 24px);
    line-height: 1.35;
    padding: 0 16px 28px;
}

.video-subtitle{
    max-width: 900px;
    margin: -34px auto 18px;
    text-align: center;
    color: rgba(0, 53, 67, 0.78);
    font-size: clamp(15px, 1.1vw, 18px);
    line-height: 1.4;
    padding: 0 16px;
}

.apartments-h,
.layout-h,
.price-h,
.location-main,
.conception-h{
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.apartments-context{
    margin: 18px auto 0;
    max-width: 940px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 0 12px;
}

.apartments-chip{
    border: 1px solid rgba(0, 53, 67, 0.2);
    border-radius: 999px;
    padding: 7px 12px;
    background-color: rgba(245, 243, 238, 0.88);
    color: rgba(0, 53, 67, 0.84);
    font-size: clamp(12px, 0.92vw, 14px);
    font-weight: 700;
}

.layout-subtitle{
    max-width: 860px;
    margin: -44px auto 46px;
    text-align: center;
    color: rgba(0, 53, 67, 0.74);
    font-size: clamp(15px, 1.08vw, 18px);
    line-height: 1.45;
    padding: 0 14px;
}

.apartments-footer{
    max-width: 980px;
    margin: 20px auto 0;
    border: 1px solid rgba(0, 53, 67, 0.17);
    border-radius: 12px;
    background-color: rgba(245, 243, 238, 0.72);
    padding: 24px 20px;
}

.apartments-footer p{
    font-weight: 700;
}

.price-context{
    margin: 0 auto 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.price-context span{
    border: 1px solid rgba(0, 53, 67, 0.2);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: clamp(12px, 0.92vw, 14px);
    color: rgba(0, 53, 67, 0.82);
    background-color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.location-kicker{
    margin-top: 18px;
}

@media screen and (max-width: 1000px) {
    .about-context{
        padding-top: 22px;
    }

    .layout-subtitle{
        margin-top: 0;
        margin-bottom: 26px;
    }

    .video-subtitle{
        margin-top: 0;
    }
}



/* ===== MODULE: final-overrides.css ===== */

/* Final anti-overlap pass */
.nav a{
    font-size: clamp(16px, 1.04vw, 20px);
    line-height: 1.2;
}

.video-main{
    padding-bottom: 18px;
}

.video-subtitle{
    margin: 0 auto 20px;
}

.video-local-card{
    display: grid;
    place-items: center;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    text-decoration: none;
    background-color: rgba(0, 53, 67, 0.9);
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(178, 169, 160, 0.35);
    overflow: hidden;
    margin-bottom: 14px;
}

.video-local-card-text{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background-color: rgba(0, 53, 67, 0.92);
    border: 1px solid rgba(178, 169, 160, 0.55);
    color: #f3eee8;
    font-size: clamp(14px, 1.2vw, 18px);
    font-weight: 700;
}

.layout-h{
    margin-bottom: 14px;
}

.layout-subtitle{
    margin: 0 auto 34px;
}

.apartments-footer{
    height: auto;
}

.layout-flat4-left-up,
.layout-flat2-left-up{
    width: auto;
    white-space: normal;
    line-height: 1.15;
    max-width: 100%;
}

.about-up > *,
.conception > *,
.swiper-text > *,
.apartments-content > *,
.location-branch > *,
.hybrid-dual-paths > *,
.hybrid-highlights > *,
.green-tech-grid > *,
.hybrid-steps > * {
    min-width: 0;
}

.swiper-img img{
    margin-left: 0;
    padding-top: 24px;
    height: auto;
    max-height: min(72vh, 760px);
}

.swiper-text1{
    min-width: 0;
}

.layout-flat4-left-down1,
.layout-flat4-left-down2,
.layout-flat2-left-down1,
.layout-flat2-left-down2{
    overflow-wrap: anywhere;
}

.conception-p,
.conception-points li,
.swiper-text-p,
.business-club-p,
.apartments-subtitle,
.layout-subtitle,
.price-subtitle,
.price-note,
.location-subtitle,
.location-lead,
.contact-card-value,
.hybrid-step-text,
.hybrid-path p,
.hybrid-path-list li,
.hybrid-support-list li {
    overflow-wrap: anywhere;
}

@media screen and (max-width: 1000px) {
    .video-main{
        padding-top: 44px;
    }

    .about-up{
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 700px) {
    .about-up{
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 900px) {
    .qa-grid{
        grid-template-columns: 1fr;
    }
}

/* Layout crash-guards for plan sections */
.layout-flat4,
.layout-flat2{
    align-items: start;
}

.layout-flat4-left,
.layout-flat2-left,
.layout-flat4-right,
.layout-flat2-right{
    min-width: 0;
    align-content: start;
}

.layout-flat4-left-down,
.layout-flat2-left-down{
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: clamp(12px, 2vw, 28px);
    white-space: normal;
}

.layout-flat4-left-down1,
.layout-flat2-left-down1{
    min-width: 0;
}

.layout-flat4-left-down2,
.layout-flat2-left-down2{
    min-width: 110px;
    text-align: right;
    padding-left: 8px;
}

.layout-flat4 + .layout-flat2{
    margin-top: 24px;
}

@media screen and (max-width: 900px) {
    .layout-flat4-left-down,
    .layout-flat2-left-down{
        grid-template-columns: minmax(0, 1fr) auto;
        font-size: clamp(15px, 4.2vw, 20px);
        line-height: 1.35;
    }

    .layout-flat4-left-down2,
    .layout-flat2-left-down2{
        min-width: 92px;
    }
}

/* Precision fixes: header text, slider images, contacts spacing */
.header-branch-sub img{
    width: 150px;
    object-fit: cover;
}

.header-branch-text{
    height: 150px;
    max-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding-top: 30px;
}

.header-branch-logo{
    padding-top: 24px;
}

.header-branch-text-h{
    font-size: clamp(32px, 2.7vw, 46px);
    line-height: 0.9;
}

.header-branch-text-p{
    font-size: clamp(15px, 1.2vw, 20px);
    line-height: 1.12;
}

/* Header social icon: fixed square aligned with phone block */
.header-branch-sub.header-branch-facebook{
    justify-self: end;
    align-self: start;
    margin-top: 30px;
    margin-right: 20px;
}

.header-branch-sub.header-branch-facebook a{
    display: inline-grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 7px;
    overflow: hidden;
}

.header-branch-sub.header-branch-facebook img{
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 7px;
    object-fit: cover;
}

.conception-image img{
    width: calc(100% - 16px);
    margin: 0 8px;
    border-radius: 10px;
    height: clamp(220px, 48vh, 560px);
}

.swiper-container{
    padding-bottom: 40px;
}

.swiper{
    min-height: 0;
    height: auto;
    padding-bottom: 76px;
}

.swiper-text{
    grid-template-columns: minmax(0, 54%) minmax(0, 46%);
    gap: clamp(12px, 1.5vw, 22px);
    align-items: start;
}

.swiper-img{
    min-width: 0;
    padding: 0 clamp(12px, 1.2vw, 18px) 14px;
}

.swiper-img img{
    width: 90%;
    padding-top: 0;
    margin: 0 auto;
    border-radius: 8px;
    aspect-ratio: 4 / 5;
    height: min(48vh, 520px);
    max-height: calc(100vh - 220px);
    object-fit: cover;
}

.swiper-text1{
    height: auto;
    min-height: 0;
    margin: 0;
    padding: clamp(8px, 1.2vw, 16px) clamp(18px, 2.2vw, 30px) 0;
}

.swiper-text-h{
    font-size: clamp(28px, 2.3vw, 42px);
    line-height: 1.1;
}

.swiper-text-p{
    font-size: clamp(18px, 1.45vw, 24px);
    line-height: 1.35;
    margin-top: 14px;
}

.location{
    height: auto;
    min-height: 0;
}

.location-main{
    padding-top: 10px;
    padding-bottom: 8px;
}

.location-subtitle{
    margin: 0 auto 12px;
}

.location-branch{
    height: auto;
    min-height: 0;
    align-items: stretch;
    gap: 12px;
}

.location-map{
    height: 100%;
}

.location-text{
    align-content: start;
}

.location-kicker{
    display: block;
    width: fit-content;
    max-width: calc(100% - 24px);
    margin: 0 auto 4px;
    text-align: center;
}

.footer-bottom{
    height: 90px;
}

@media screen and (max-width: 1200px) {
    .swiper-text{
        grid-template-columns: 1fr;
    }

    .swiper-img img{
        width: min(100%, 820px);
        margin: 0 auto;
        height: min(42vh, 420px);
        max-height: calc(100vh - 260px);
    }

    .swiper-text1{
        padding: 12px clamp(18px, 5vw, 34px) 24px;
    }

    .swiper{
        padding-bottom: 92px;
    }

    .swiper-text-p{
        margin-top: 16px;
    }
}

@media screen and (max-width: 1000px) {
    .header-branch-sub img{
        width: 120px;
        height: 120px;
    }

    .header-branch-text{
        height: 120px;
        max-height: 120px;
        padding-top: 18px;
    }

    .header-branch-text-h{
        font-size: clamp(24px, 6.4vw, 34px);
        padding-top: 0;
    }

    .header-branch-text-p{
        font-size: clamp(14px, 3.7vw, 18px);
    }

    .conception-image img{
        width: calc(100% - 10px);
        margin: 0 5px;
    }
}

@media screen and (max-width: 700px) {
    .swiper-img img{
        height: min(34vh, 280px);
        max-height: calc(100vh - 260px);
    }

    .swiper-text1{
        padding: 12px 20px 28px;
    }

    .swiper{
        padding-bottom: 98px;
    }

    .location-main{
        padding-top: 20px;
    }
}

/* About cards: equal size + no text collision */
.about-up{
    justify-items: stretch;
    align-items: stretch;
}

.about-up1{
    width: 100%;
    min-height: 122px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.about-kpi-label{
    min-height: 2.6em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Conception: prevent overlap on compact screens */
@media screen and (max-width: 1000px) {
    .conception{
        grid-template-rows: auto auto auto;
        min-height: 0;
        height: auto;
        gap: 14px;
        padding: 20px 0 28px;
        overflow: visible;
    }

    .conception-sub{
        width: 100%;
    }

    .conception-center{
        row-gap: 10px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .conception-image img{
        display: block;
        width: min(calc(100% - 24px), 700px);
        height: clamp(200px, 36vh, 340px);
        margin: 0 auto;
    }

    .button-link{
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .button-link div{
        min-width: 0;
        width: min(100%, 340px);
        white-space: normal;
        text-align: center;
    }
}

@media screen and (max-width: 700px) {
    .about-up{
        justify-items: center;
    }

    .about-up1{
        max-width: 260px;
    }
}

/* Apartments blocks: centered on compact screens */
@media screen and (max-width: 1000px) {
    .apartments-content{
        justify-items: center;
        justify-content: center;
    }

    .apartments-first,
    .apartments-second{
        width: min(100%, 420px);
        justify-self: center;
        justify-items: center;
    }

    .apartments-first .first-apart-sub,
    .apartments-second .second-apart-sub{
        width: 100%;
        margin-inline: auto;
    }

    .apartments-first .first-apart-1,
    .apartments-first .first-apart-2,
    .apartments-first .first-apart-3,
    .apartments-first .first-apart-4,
    .apartments-second .second-apart-1,
    .apartments-second .second-apart-2{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .apartmants-sub img{
        display: block;
        width: min(100%, 320px);
        margin-inline: auto;
    }

    .apartmants-sub{
        padding-right: 0;
    }

    .apartments-second{
        padding-top: 24px;
    }

    .first-apart-p,
    .second-apart-p{
        width: min(100%, 360px);
        margin: 10px auto 0;
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }

    .first-apart-h,
    .second-apart-h{
        margin-left: 0;
        text-align: center;
    }
}

/* Plan switcher buttons: unified look + centered layout */
.buttons-container,
.buttons-container-2{
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.buttons-container{
    width: min(100%, 460px);
    gap: 8px;
    flex-wrap: nowrap;
}

.buttons-container-2{
    width: min(100%, 360px);
    gap: 10px;
    flex-wrap: wrap;
}

.buttons-container .button-layout{
    flex: 1 1 0;
    min-width: 0;
}

.buttons-container-2 .button-layout-2{
    flex: 0 0 auto;
}

.buttons-container .button-layout button,
.buttons-container-2 .button-layout-2 button{
    min-width: 116px;
    min-height: 40px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(178, 169, 160, 0.4);
    background-color: rgba(0, 53, 67, 1);
    color: #d8d0c8;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.buttons-container .button-layout button{
    width: 100%;
    min-width: 0;
    padding: 8px 10px;
    font-size: clamp(12px, 1vw, 14px);
}

.buttons-container .button-layout button:hover,
.buttons-container-2 .button-layout-2 button:hover{
    background-color: rgba(0, 53, 67, 0.84);
    color: #f5f3ee;
}

.buttons-container .button-layout button.active,
.buttons-container-2 .button-layout-2 button.active{
    background-color: #2b5215d0;
    border-color: rgba(43, 82, 21, 0.8);
    color: #ffffff;
}

@media screen and (max-width: 700px) {
    .buttons-container,
    .buttons-container-2{
        width: min(100%, 360px);
        gap: 8px;
        flex-wrap: wrap;
    }

    .buttons-container .button-layout,
    .buttons-container-2 .button-layout-2{
        flex: 0 0 auto;
    }

    .buttons-container .button-layout button,
    .buttons-container-2 .button-layout-2 button{
        width: auto;
        min-width: 104px;
        min-height: 36px;
        padding: 7px 11px;
        font-size: 13px;
    }
}


/* ===== MODULE: theme.css ===== */

/* Brand consistency layer */
:root{
    --bb-font-base: "Nunito Sans", sans-serif;
    --bb-font-heading: "Cormorant Garamond", serif;
    --bb-color-primary: #003543;
    --bb-color-accent: #b2a9a0;
    --bb-color-surface: #f5f3ee;
}

body,
input,
button,
textarea,
select{
    font-family: var(--bb-font-base);
    color: var(--bb-color-primary);
}

h1, h2, h3, h4, h5, h6,
.about-concept,
.conception-h,
.video-main,
.apartments-h,
.layout-h,
.price-h,
.location-main,
.business-club-h,
.hybrid-offer-title,
.hybrid-path-title,
.hybrid-decision-head,
.green-tech-title,
.custom-home-showcase-h,
.hybrid-support-h{
    font-family: var(--bb-font-heading);
    color: var(--bb-color-primary);
}

.video{
    background-color: var(--bb-color-surface);
}

.video-main{
    color: var(--bb-color-primary);
    letter-spacing: 0.01em;
    line-height: 1.15;
}

.video-subtitle{
    color: rgba(0, 53, 67, 0.82);
}

.location-map-open{
    background-color: var(--bb-color-primary);
    color: var(--bb-color-accent);
    border-color: rgba(178, 169, 160, 0.35);
}

/* Project slider pagination */
.swiper{
    position: relative;
}

.swiper .swiper-pagination{
    position: static !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100%;
    margin-top: 12px;
    padding-bottom: 6px;
    transform: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 12;
}

@media screen and (max-width: 1200px) {
    .swiper .swiper-pagination{
        margin-top: 10px;
    }
}

@media screen and (min-width: 1001px) {
    .about{
        padding-bottom: 18px;
    }

    .conception{
        min-height: auto;
        padding-top: 20px;
        padding-bottom: 24px;
        align-items: start;
    }
}
