html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; 
    margin: 0;
    padding: 0;
    position: relative; 
}

/* HEADER */

.gs-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px; 
    background-color: #1a1a1a;
    border-bottom: 1px solid #333;
    z-index: 1000;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center; 
    
    padding: 0; 
    box-sizing: border-box;
}

.header-spacer {
    width: 100%;
}

.gs-title { font-size: 18px; font-weight: 700; text-transform: uppercase; color: #000; }

.gs-icon-btn {
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid #eee;
    background: transparent; cursor: pointer; display: flex; align-items: center;
    justify-content: center; color: #333; transition: 0.2s;
}
.gs-icon-btn:hover { background-color: #f5f5f5; }

.header-buttons {
    display: flex;
    justify-self: end;
    height: 100%;
}

.gs-head-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px; 
    
    height: 100%; 
    padding: 0 30px; 
    
    color: #B29668;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    
    border-left: 1px solid rgba(178, 150, 104, 0.15);
    transition: all 0.3s ease;
}

.gs-head-btn i {
    font-size: 20px;
    margin-top: -2px;
}

.gs-head-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor; 
    fill: none;
    stroke-width: 2;
}

.gs-head-btn:hover {
    background-color: #B29668; 
    color: #fff; 
}

.gs-logo-text {
font-family: 'Playfair Display', serif;
font-size: 28px;
font-weight: 700;
color: #B29668;
letter-spacing: 0.15em;
text-transform: uppercase;
text-align: center;
position: relative;
z-index: 1002;
filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.header-right-section {
display: flex;
align-items: center;
gap: 30px;
justify-self: end;
height: 100%;
}

.header-contacts {
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 8px;
padding-right: 30px;
}

.header-phone {
font-family: 'Manrope', sans-serif;
font-size: 16px;
font-weight: 600;
color: #B29668;
text-decoration: none;
transition: color 0.3s ease;
}

.header-phone:hover {
color: #C1A672;
}

.header-social-mini {
display: flex;
gap: 10px;
}

.header-social-mini a {
width: 28px;
height: 28px;
border-radius: 50%;
background-color: transparent;
border: 1.5px solid #B29668;
color: #B29668;
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
transition: all 0.3s ease;
font-size: 13px;
}

.header-social-mini a:hover {
background-color: #B29668;
color: #fff;
transform: translateY(-2px);
}


/* HEADER END */

/* HERO SECTION */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 90px;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(26,26,26,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1000px;
    padding: 40px;
    animation: fadeInUp 1s ease;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    /* margin-top: 120px; */
}

.hero-logo {
    /* comments */
    position: absolute; 
    top: 40px;          
    left: 40px;        
    margin: 0;          
    z-index: 10; 

    width: 120px;
    max-width: 90%;
    margin: 0 auto 40px;
    filter: drop-shadow(0 10px 40px rgba(178, 150, 104, 0.4));
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: linear-gradient(135deg, #B29668, #977D53);
    color: white;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(178, 150, 104, 0.3);
}

.hero-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(178, 150, 104, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}
/* HERO SECTION END */



/* MAP SECTION */
.map-section {
position: relative;
width: 100%;
height: 600px;
background-color: #f5f5f5;
}

.map-container {
position: relative;
width: 100%;
height: 100%;
}

.yandex-map {
width: 100%;
height: 100%;
filter: none !important; 
}

#yandex-map .ymaps-2-1-79-ground-pane,
#yandex-map [class*="ground-pane"] {
filter: grayscale(100%) brightness(0.95) contrast(0.9) !important;
}
#yandex-map .ymaps-2-1-79-places-pane,
#yandex-map .ymaps-2-1-79-events-pane,
#yandex-map .ymaps-2-1-79-controls-pane,
#yandex-map [class*="places-pane"],
#yandex-map [class*="events-pane"] {
filter: none !important;
}

.map-info-card {
position: absolute;
top: 40px;
left: 80px;
width: 420px;
background: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(10px);
border-radius: 12px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
padding: 40px;
z-index: 1000;
}

.map-info-header h3 {
font-family: 'Playfair Display', serif;
font-size: 32px;
font-weight: 700;
color: #1a1a1a;
margin: 0 0 15px 0;
text-transform: uppercase;
}

.map-separator {
width: 50px;
height: 3px;
background-color: #B29668;
margin-bottom: 30px;
}

.map-info-content {
display: flex;
flex-direction: column;
gap: 25px;
margin-bottom: 30px;
}

.map-info-item {
display: flex;
align-items: flex-start;
gap: 15px;
}

.map-info-item i {
font-size: 20px;
color: #B29668;
margin-top: 2px;
flex-shrink: 0;
}

.map-label {
font-family: 'Manrope', sans-serif;
font-size: 11px;
text-transform: uppercase;
color: #999;
letter-spacing: 0.1em;
font-weight: 600;
margin-bottom: 5px;
}

.map-value {
font-family: 'Manrope', sans-serif;
font-size: 16px;
color: #1a1a1a;
font-weight: 500;
line-height: 1.4;
}

.map-buttons {
display: flex;
flex-direction: column;
gap: 12px;
padding-top: 25px;
border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.map-btn {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 16px 24px;
font-family: 'Manrope', sans-serif;
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
text-decoration: none;
border-radius: 6px;
transition: all 0.3s ease;
letter-spacing: 0.05em;
}

.map-btn i {
font-size: 16px;
}

.map-btn.primary {
background-color: #B29668;
color: #fff;
}

.map-btn.primary:hover {
background-color: #977D53;
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(178, 150, 104, 0.3);
}

.map-btn.secondary {
background-color: transparent;
color: #1a1a1a;
border: 1px solid #e0e0e0;
}

.map-btn.secondary:hover {
background-color: #f5f5f5;
border-color: #B29668;
color: #B29668;
}

@media (max-width: 768px) {
.map-section {
    height: 500px;
}

.map-info-card {
    top: 20px;
    left: 20px;
    right: 20px;
    width: auto;
    padding: 30px 25px;
}

.map-info-header h3 {
    font-size: 24px;
}

.map-value {
    font-size: 14px;
}

.map-btn {
    padding: 14px 20px;
    font-size: 13px;
}
}

@media (max-width: 480px) {
.map-section {
    height: 450px;
}

.map-info-card {
    top: 15px;
    left: 15px;
    right: 15px;
    padding: 25px 20px;
}

.map-buttons {
    flex-direction: column;
}
}

/* MAP SECTION END */






/* ADVANTAGES SECTION */
.adv-section {
    padding: 100px 40px;
    background-color: #fff; 
    color: #1a1a1a;
}

.adv-container {
    max-width: 1200px;
    margin: 0 auto;
}

.adv-header {
    text-align: center;
    margin-bottom: 80px;
}

.adv-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.adv-separator {
    width: 60px;
    height: 3px;
    background-color: #B29668; 
    margin: 0 auto 20px;
}

.adv-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.adv-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 100px; 
}

.adv-row:last-child {
    margin-bottom: 0;
}

.adv-row.reverse {
    flex-direction: row-reverse;
}

.adv-text-col {
    flex: 1;
    position: relative;
}

.adv-number {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    line-height: 1;
    color: rgba(178, 150, 104, 0.15); 
    position: absolute;
    top: -50px;
    left: -20px;
    z-index: 0;
    font-weight: 700;
}

.adv-text-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    color: #1a1a1a;
}

.adv-text-col p {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.8; 
    color: #444;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.adv-mini-list {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.adv-mini-list li {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #B29668;
    display: flex;
    align-items: center;
}

.adv-mini-list li::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background-color: #B29668;
    border-radius: 50%;
    margin-right: 10px;
}

.adv-img-col {
    flex: 1;
    height: 450px; 
    position: relative;
}

.adv-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15); 
    transition: transform 0.5s ease;
}

.adv-img-col:hover img {
    transform: scale(1.02);
}
/* ADVANTAGES SECTION END */



/* FOOTER SECTION */
.footer-section {
    background-color: #1a1a1a;
    padding: 60px 40px 30px;
    border-top: 1px solid #333;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr; 
    align-items: start; /* Выравнивание по верху */
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(178, 150, 104, 0.15);
}

.footer-container::before {
    display: none;
}

.footer-nav {
    justify-self: center; /* Прижимаем влево */
    padding-top: 10px;

    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
}

.footer-nav-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #B29668;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* margin-left: 20px; */
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Расстояние между ссылками */
    align-items: center; 
    /* margin-left: 20px; */
}

.footer-menu-link {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-menu-link:hover {
    color: #B29668;
    transform: translateX(5px); 
}

.footer-menu-link:hover::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    background-color: #B29668;
    border-radius: 50%;
}

.footer-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.footer-logo {
    height: 200px; 
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

.footer-contact-card {
    background-color: transparent;
    border: 2px solid #B29668;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 320px;
    max-width: 380px;
    justify-self: end; 
}

.footer-contact-row {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #B29668;
}

.footer-contact-row i {
    font-size: 18px;
    min-width: 20px;
    color: #B29668;
}

.footer-contact-row a,
.footer-contact-row span {
    text-decoration: none;
    color: #B29668;
    transition: color 0.3s ease;
}

.footer-contact-row a:hover {
    color: #977D53;
}

.footer-social {
    display: flex;
    gap: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(178, 150, 104, 0.2);
}

.footer-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #B29668;
    color: #B29668;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.footer-social-btn svg {
    width: 20px;
    height: 20px;
}

.footer-social-btn:hover {
    background-color: #B29668;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(178, 150, 104, 0.3);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-disclaimer {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #999;
    margin: 0;
    text-align: left;
}

.footer-privacy {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    margin: 0;
    text-align: right;
}

.footer-link {
    color: #B29668;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #C1A672;
    text-decoration: underline;
}

.footer-copyright {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: #666;
    margin: 15px 0 0 0;
    font-weight: 500;
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(178, 150, 104, 0.1);
}


/* FOOTER SECTION END */


/* GALLERY SECTION */
.adv-gallery-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.adv-gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05); 
    transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
    pointer-events: none;
}


.adv-gallery-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.adv-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 1; 
}

.adv-gallery-prev {
    left: 20px;
}

.adv-gallery-next {
    right: 20px;
}

.adv-gallery-arrow:hover {
    background: #B29668;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.adv-gallery-arrow i {
    font-size: 16px;
    color: #1a1a1a;
}

.adv-gallery-arrow:hover i {
    color: #fff;
}

.adv-gallery-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.adv-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.adv-indicator.active {
    background: #B29668;
    width: 24px;
    border-radius: 4px;
}

.adv-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}
/* GALLERY SECTION END */


/* VIDEO SECTION */
.video-section {
padding: 50px 30px;
background-color: #ffffff;
}

.video-container {
max-width: 1200px;
margin: 0 auto;
}

.video-header {
text-align: center;
margin-bottom: 60px;
}

.video-title {
font-family: 'Playfair Display', serif;
font-size: 42px;
font-weight: 700;
margin: 0 0 0 0;
text-transform: uppercase;
color: #1a1a1a;
}

.video-separator {
width: 60px;
height: 3px;
background-color: #B29668;
margin: 0 auto 20px;
}

.video-subtitle {
font-family: 'Manrope', sans-serif;
font-size: 18px;
color: #666;
max-width: 600px;
margin: 0 auto;
}

.custom-video-wrapper {
position: relative;
width: 100%;
padding-bottom: 56.25%; 
height: 0;
overflow: hidden;
border-radius: 4px;
box-shadow: 0 20px 40px -10px rgba(0,0,0,0.2);
background: #000;
cursor: pointer;
}

.video-preview {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
transition: opacity 0.3s ease;
}

.custom-video-wrapper iframe {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
height: 100%;
border: none;
object-fit: cover; 
}

.custom-play-btn {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 10;
background: none;
border: none;
cursor: pointer;
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
transition: all 0.3s ease;
}

.custom-play-btn:hover {
transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
width: 100px;
height: 100px;
filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.play-circle {
stroke-dasharray: 283;
stroke-dashoffset: 283;
animation: drawCircle 2s ease-in-out infinite;
}

@keyframes drawCircle {
0%, 100% {
stroke-dashoffset: 283;
opacity: 0.3;
}
50% {
stroke-dashoffset: 0;
opacity: 1;
}
}

.play-text {
font-family: 'Manrope', sans-serif;
font-size: 16px;
font-weight: 600;
color: #fff;
text-transform: uppercase;
letter-spacing: 0.1em;
text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
opacity: 0.9;
}

.custom-play-btn:hover .play-text {
opacity: 1;
}

.custom-video-wrapper::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.3);
z-index: 5;
transition: all 0.3s ease;
pointer-events: none; 
}

.custom-video-wrapper:hover::before {
background: rgba(0, 0, 0, 0.15);
}

.custom-video-wrapper.playing::before {
opacity: 0;
pointer-events: none;
}

/* VIDEO SECTION END */


/* LIGHTBOX */
.lightbox {
    display: none; position: fixed; z-index: 2000; padding-top: 0; left: 0; top: 0;
    width: 100%; height: 100%; overflow: auto; background-color: rgba(0, 0, 0, 0.9);
    justify-content: center; align-items: center;
}
.lightbox.active { display: flex; animation: fadeIn 0.3s; }
.lightbox-content {
    margin: auto; display: block; max-width: 90%; max-height: 90vh;
    width: auto; height: auto; border-radius: 4px; box-shadow: 0 0 20px rgba(255, 255, 255, 0.1); object-fit: contain;
}
.lightbox-close {
    position: absolute; top: 20px; right: 35px; color: #f1f1f1; font-size: 40px;
    font-weight: bold; transition: 0.3s; cursor: pointer; z-index: 2001;
}
.lightbox-close:hover { color: #bbb; text-decoration: none; }
@keyframes fadeIn { from {opacity: 0} to {opacity: 1} }







/* LIGHTBOX END */



/* ADVANTAGES SECTION */
.advantages-section {
padding: 10px 0;
background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
position: relative;
overflow: hidden;
}

.advantages-section::before {
content: '';
position: absolute;
top: 0;
right: -200px;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(178, 150, 104, 0.03) 0%, transparent 70%);
pointer-events: none;
}

.advantages-container {
max-width: 1600px;
margin: 0 auto;
padding: 0 40px;
}

.advantages-header {
text-align: center;
margin-bottom: 50px;
position: relative;
z-index: 1;
}

.advantages-title {
font-family: 'Playfair Display', serif;
font-size: 42px;
font-weight: 700;
margin: 0 0 0 0;
text-transform: uppercase;
color: #1a1a1a;
letter-spacing: -0.5px;
}

.advantages-separator {
width: 60px;
height: 3px;
background-color: #B29668;
margin: 0 auto 20px;
}

.advantages-subtitle {
font-family: 'Manrope', sans-serif;
font-size: 18px;
color: #666;
max-width: 600px;
margin: 0 auto;
}

.advantages-nav {
display: flex;
flex-direction: column;
gap: 16px;
position: sticky;
top: 120px;
}

.adv-btn {
display: flex;
align-items: center;
gap: 20px;
padding: 24px 28px;
background: #ffffff;
border: 2px solid #f0f0f0;
border-radius: 12px;
cursor: pointer;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}

.adv-btn::before {
content: '';
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 4px;
background: #B29668;
transform: scaleY(0);
transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
transform-origin: bottom;
}

.adv-btn-icon {
width: 50px;
height: 50px;
border-radius: 10px;
background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
transition: all 0.4s ease;
}

.adv-btn-icon i {
font-size: 24px;
color: #B29668;
transition: all 0.4s ease;
}

.adv-btn-text {
display: flex;
flex-direction: column;
gap: 4px;
flex: 1;
}

.adv-btn-title {
font-family: 'Manrope', sans-serif;
font-size: 16px;
font-weight: 700;
color: #1a1a1a;
display: block;
transition: color 0.3s ease;
}

.adv-btn-desc {
font-family: 'Manrope', sans-serif;
font-size: 13px;
color: #999;
display: block;
transition: color 0.3s ease;
}

.adv-btn-arrow {
font-size: 18px;
color: #ccc;
transition: all 0.4s ease;
transform: rotate(-90deg);
}

.adv-btn:hover {
border-color: #B29668;
transform: translateX(8px);
box-shadow: 0 12px 28px rgba(178, 150, 104, 0.12);
}

.adv-btn:hover .adv-btn-icon {
background: linear-gradient(135deg, #B29668 0%, #977D53 100%);
transform: scale(1.1) rotate(5deg);
}

.adv-btn:hover .adv-btn-icon i {
color: #ffffff;
}

.adv-btn:hover .adv-btn-arrow {
color: #B29668;
transform: rotate(-90deg) translateX(4px);
}

.adv-btn.active {
background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
border-color: #1a1a1a;
transform: translateX(12px);
box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.adv-btn.active::before {
transform: scaleY(1);
transform-origin: top;
}

.adv-btn.active .adv-btn-icon {
background: #B29668;
transform: scale(1.1);
}

.adv-btn.active .adv-btn-icon i {
color: #ffffff;
}

.adv-btn.active .adv-btn-title {
color: #ffffff;
}

.adv-btn.active .adv-btn-desc {
color: rgba(255, 255, 255, 0.7);
}

.adv-btn.active .adv-btn-arrow {
color: #B29668;
transform: rotate(0deg);
}

.advantages-display {
position: relative;
min-height: 700px;
}

.adv-content {
position: absolute;
top: 0;
left: 0;
width: 100%;
opacity: 0;
visibility: hidden;
transform: translateY(20px);
transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.adv-content.active {
position: relative;
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.adv-image-grid {
display: grid;
grid-template-columns: 1fr;
gap: 30px;
}

.adv-main-image {
position: relative;
height: 500px;
border-radius: 16px;
overflow: hidden;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.adv-main-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.adv-main-image:hover img {
transform: scale(1.08);
}

.adv-image-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 40px;
background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
transform: translateY(10px);
opacity: 0;
transition: all 0.4s ease;
}

.adv-main-image:hover .adv-image-overlay {
transform: translateY(0);
opacity: 1;
}

.adv-overlay-badge {
display: inline-flex;
align-items: center;
gap: 12px;
padding: 14px 24px;
background: rgba(178, 150, 104, 0.95);
backdrop-filter: blur(10px);
border-radius: 50px;
box-shadow: 0 8px 24px rgba(178, 150, 104, 0.3);
}

.adv-overlay-badge i {
font-size: 20px;
color: #ffffff;
}

.adv-overlay-badge span {
font-family: 'Manrope', sans-serif;
font-size: 15px;
font-weight: 700;
color: #ffffff;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.adv-details {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 24px;
}

.adv-detail-item {
display: flex;
align-items: flex-start;
gap: 18px;
padding: 28px;
background: #ffffff;
border: 1px solid #f0f0f0;
border-radius: 12px;
transition: all 0.3s ease;
}

.adv-detail-item:hover {
border-color: #B29668;
box-shadow: 0 12px 28px rgba(178, 150, 104, 0.08);
transform: translateY(-4px);
}

.adv-detail-icon {
width: 48px;
height: 48px;
border-radius: 10px;
background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
transition: all 0.3s ease;
}

.adv-detail-item:hover .adv-detail-icon {
background: linear-gradient(135deg, #B29668 0%, #977D53 100%);
}

.adv-detail-icon i {
font-size: 22px;
color: #B29668;
transition: color 0.3s ease;
}

.adv-detail-item:hover .adv-detail-icon i {
color: #ffffff;
}

.adv-detail-text h4 {
font-family: 'Manrope', sans-serif;
font-size: 16px;
font-weight: 700;
color: #1a1a1a;
margin: 0 0 8px 0;
}

.adv-detail-text p {
font-family: 'Manrope', sans-serif;
font-size: 14px;
line-height: 1.6;
color: #666;
margin: 0;
}
/* ADVANTAGES SECTION END */


/* INFRASTRUCTURE SECTION */
.infrastructure-section {
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #eaeaea;
}

.infra-header {
    text-align: center;
    padding: 80px 40px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.infra-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 0 0;
    text-transform: uppercase;
    color: #1a1a1a;
}

.infra-separator {
    width: 60px;
    height: 3px;
    background-color: #B29668;
    margin: 0 auto 20px;
}

.infra-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    color: #666;
}

.infra-content {
    display: flex;
    flex-direction: row;
    height: 100vh; 
    font-family: 'Manrope', sans-serif;
    overflow: hidden;
}

.infra-sidebar {
    width: 380px;
    background: #ffffff;
    border-right: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    overflow: hidden;
    z-index: 10;
}

.infra-category-title {
    font-size: 10px;
    text-transform: uppercase;
    color: #000000;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin: 0 0 30px 0;
    flex-shrink: 0;
}

.infra-items-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    flex: 1;
    overflow: hidden;
}

.infra-item {
    padding: 20px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    border: 2px solid transparent;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 1 auto;

    width: calc(100% - 60px);          /* Занимает доступное место... */
    max-width: 240px;     /* ...но не шире 240px (меняйте это число) */
    margin: 0 auto; 
}

.infra-item:hover {
    background: #f9f9f9;
    border-color: #B29668;
    transform: translateX(5px);
}

.infra-item.active {
    border-color: #B29668;
    border-left-width: 4px;
    box-shadow: 0 4px 15px rgba(178, 150, 104, 0.2);
    transform: translateX(8px);
}

.infra-logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.infra-logo {
    max-width: 100%; /* Картинка никогда не будет шире родителя */
    height: auto;    /* Высота подстроится пропорционально */
    object-fit: contain;
}

.infra-item[data-category="fitness"] .infra-logo {
    width: 160px;
    height: 100px;
    object-fit: contain;
}

.infra-item[data-category="hotel"] .infra-logo {
    width: 160px;
    height: 100px;
    object-fit: contain;
    transform: scale(1.5);
}

.infra-item[data-category="coffee"] .infra-logo {
    width: 160px;
    height: 100px;
    object-fit: contain;
}

.infra-text-label {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.infra-item[data-category="spa"]:hover .infra-text-label,
.infra-item[data-category="restaurants"]:hover .infra-text-label {
    color: #B29668;
}

.infra-item[data-category="spa"].active .infra-text-label,
.infra-item[data-category="restaurants"].active .infra-text-label {
    color: #B29668;
}

.infra-display {
    flex: 1;
    position: relative;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.infra-content-block {
    display: none;
    width: 100%;
    height: 100%;
    padding: 60px;
    overflow-y: auto;
    animation: fadeInContent 0.5s ease;
}

.infra-content-block.active {
    display: block;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.infra-detail-container {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.infra-detail-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.infra-brand {
    margin-bottom: 5px;
}

.infra-brand-logo {
    height: 150px;
    width: auto;
    object-fit: contain;
}

.infra-detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    text-transform: uppercase;
}

.infra-detail-description {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.infra-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.infra-feature-card {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
}

.infra-feature-card:hover {
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.infra-feature-icon {
    width: 48px;
    height: 48px;
    background: #B29668;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.infra-feature-icon i {
    font-size: 22px;
    color: #fff;
}

.infra-feature-text h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px 0;
}

.infra-feature-text p {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: #999;
    margin: 0;
}

.infra-zones {
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px;
}

.infra-zones-title {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.infra-zones-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.infra-zones-list li {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 12px;
}

.infra-zones-list i {
    color: #B29668;
    font-size: 16px;
    flex-shrink: 0;
}

.infra-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    background: #B29668;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.infra-cta-button:hover {
    background: #977D53;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(178, 150, 104, 0.3);
}

.infra-cta-button i {
    font-size: 20px;
}

.infra-detail-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.infra-video-block {
    width: 100%;
}

.infra-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.20);
    cursor: pointer;
}

.infra-video-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.infra-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.infra-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.infra-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.infra-play-icon {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.infra-play-circle {
    stroke-dasharray: 226;
    stroke-dashoffset: 226;
    animation: drawCircle 2s ease-in-out infinite;
}

.infra-play-text {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.infra-video-caption {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: #999;
    text-align: center;
    margin-top: 12px;
}

.infra-video-wrapper.playing::before {
    opacity: 0;
}

.infra-video-wrapper.playing .infra-video-preview,
.infra-video-wrapper.playing .infra-play-btn {
    opacity: 0;
    pointer-events: none;
}

.infra-photo-gallery {
    width: 100%;
    margin-top: 30px;
}

.infra-gallery-wrapper {
    position: relative;
    width: 100%;
    height: 400px; 
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
}

.infra-gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
    pointer-events: none;
}

.infra-gallery-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.infra-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px; 
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 1;
}


.infra-gallery-prev {
    left: 15px;
}

.infra-gallery-next {
    right: 15px;
}

.infra-gallery-arrow:hover {
    background: #B29668;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.infra-gallery-arrow i {
    font-size: 14px; 
    color: #1a1a1a;
}

.infra-gallery-arrow:hover i {
    color: #fff;
}

.infra-gallery-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.infra-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.infra-indicator.active {
    background: #B29668;
    width: 24px;
    border-radius: 4px;
}

.infra-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}



.infra-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.infra-gallery-item {
    position: relative;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.infra-gallery-large {
    height: 500px;
}

.infra-blueprint-block {
    width: 100%;
    margin-bottom: 30px;
}

.infra-blueprint-title {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.infra-blueprint-title i {
    color: #B29668;
    font-size: 20px;
}

.infra-blueprint-wrapper {
    width: 100%;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e0e0e0;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.infra-blueprint-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(178, 150, 104, 0.2);
}

.infra-blueprint-wrapper:hover .infra-blueprint-img {
    filter: brightness(1.05);
}

.blueprint-click-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    pointer-events: none;
    animation: blueprintPulse 2s ease-in-out infinite;
}

@keyframes blueprintPulse {
    0%, 100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.click-finger {
    width: 60px;
    height: 60px;
    background: rgba(178, 150, 104, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(178, 150, 104, 0.4);
    animation: fingerTap 1.5s ease-in-out infinite;
}

@keyframes fingerTap {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.9);
    }
}

.click-finger i {
    font-size: 28px;
    color: #ffffff;
}

.click-text {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.infra-blueprint-wrapper:hover .blueprint-click-hint {
    opacity: 0;
}

.blueprint-expand-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(178, 150, 104, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.infra-blueprint-wrapper:hover .blueprint-expand-icon {
    opacity: 1;
}

.blueprint-expand-icon i {
    font-size: 18px;
    color: #ffffff;
}

.blueprint-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    padding: 40px;
    overflow: auto;
    animation: blueprintFadeIn 0.3s ease;
}

.blueprint-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes blueprintFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.blueprint-modal-close {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(178, 150, 104, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.blueprint-modal-close:hover {
    background: #B29668;
    transform: rotate(90deg) scale(1.1);
}

.blueprint-modal-close i {
    font-size: 24px;
    color: #ffffff;
}

.blueprint-modal-content {
    position: relative;
    max-width: 95%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    animation: blueprintZoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.infra-blueprint-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.infra-blueprint-caption {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: #999;
    text-align: center;
    margin-top: 10px;
}

.infra-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.infra-gallery-item:hover img {
    transform: scale(1.08);
}

.infra-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.infra-gallery-item:hover .infra-gallery-overlay {
    opacity: 1;
}

.infra-gallery-overlay span {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}


@media (max-width: 1200px) {
    .infra-detail-container {
        grid-template-columns: 400px 1fr;
        gap: 40px;
    }
    
    .infra-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .infra-content-block {
        padding: 40px 20px;
    }
    
    .infra-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .infra-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .infra-detail-title {
        font-size: 28px;
    }
    
    .infra-features-grid {
        grid-template-columns: 1fr;
    }
    
    .infra-gallery-large {
        height: 250px;
    }
}

.infra-promo-banner {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border: 2px solid #D32F2F;
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.infra-promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.promo-badge-svg {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
}

.promo-circle {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(211, 47, 47, 0.3));
    animation: promoPulse 2s ease-in-out infinite; /* ✅ Уникальное имя */
}

@keyframes promoPulse { /* ✅ Новое имя */
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.promo-percent {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    fill: #ffffff;
}

.promo-text {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 700;
    fill: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.promo-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #D32F2F;
    margin: 0 0 8px 0;
}

.promo-content p {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin: 0 0 8px 0;
}

.promo-validity {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: #999;
    font-style: italic;
}

.floating-discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    z-index: 15;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.discount-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 6px 20px rgba(211, 47, 47, 0.4));
}

.discount-percent {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    fill: #ffffff;
}

.discount-label {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    fill: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coffee-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.coffee-large {
    height: 280px;
}

@media (max-width: 900px) {
    .infra-promo-banner {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .promo-badge-svg {
        width: 70px;
        height: 70px;
    }
    
    .floating-discount-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 100px;
        height: 100px;
        z-index: 15;
        animation: discountFloat 3s ease-in-out infinite;
    }

    @keyframes discountFloat { 
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-10px) rotate(5deg); }
    }

    
    .coffee-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .coffee-large {
        height: 220px;
    }
}

@media (max-width: 600px) {
    .infra-promo-banner {
        padding: 20px;
    }
    
    .promo-content h4 {
        font-size: 18px;
    }
    
    .promo-content p {
        font-size: 14px;
    }
}





/* Интерьеры и Детали */
.gallery-section { 
padding: 80px 40px; 
background-color: #FAF9F6; 
min-height: 100vh; 
}

.gallery-header { 
text-align: center; 
max-width: 800px; 
margin: 0 auto 60px; 
}

.gallery-header h2 { 
font-family: 'Playfair Display', serif;
font-size: 42px; 
font-weight: 700; 
margin: 0 0 0 0;
color: #1a1a1a; 
text-transform: uppercase;
letter-spacing: -0.02em;
}

.gallery-header p { 
font-family: 'Manrope', sans-serif;
color: #666; 
font-size: 18px;
line-height: 1.6;
font-weight: 400;
}

.gallery-separator {
width: 60px;
height: 3px;
background-color: #B29668;
margin: 0 auto 20px;
}

.photo-grid {
display: grid; 
grid-template-columns: repeat(4, 1fr); 
grid-auto-rows: 250px;
gap: 15px; 
grid-auto-flow: dense;
}

.grid-item { 
position: relative; 
overflow: hidden; 
border-radius: 4px; 
box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15); 
cursor: pointer; 
}

.grid-item img { 
width: 100%; 
height: 100%; 
object-fit: cover; 
transition: transform 0.5s ease; 
}

.grid-item:hover img { 
transform: scale(1.05); 
}

.grid-item.wide { 
grid-column: span 2; 
}

.grid-item.tall { 
grid-row: span 2; 
}

.grid-item.big { 
grid-column: span 2; 
grid-row: span 2; 
}

@media (max-width: 1200px) {
    .bc-text-side h1 { font-size: 36px; }
    .benefits-list li { font-size: 16px; }
}
@media (max-width: 1024px) {
    .bc-text-side { padding: 0 40px; flex: 0 0 45%; max-width: 45%; padding: 0 30px; }
    .photo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .bc-section { flex-direction: column-reverse; height: auto; min-height: 100vh; }
    .bc-image-side { height: 350px; flex: none; }
    .bc-text-side { flex: none; max-width: 100%; width: 100%; padding: 40px 20px; }
}
@media (max-width: 600px) {
    .gallery-section { padding: 40px 20px; }
    .photo-grid { display: flex; flex-direction: column; gap: 15px; }
    .grid-item { height: 300px; }
}
/* Интерьеры и Детали */



.header-phone {
    white-space: nowrap; 
}
.header-contacts {
    min-width: max-content; 
}

.burger-btn {
    display: none; 
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1005;
    padding: 0;
    margin-left: 20px;
}

.burger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #B29668;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 280px; 
    height: 100vh;
    background-color: #1a1a1a;
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}


.mobile-menu-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-title {
    color: #B29668;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    letter-spacing: 1px;
}

.mobile-close-btn {
    background: none;
    border: none;
    color: #B29668;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    padding: 0 10px;
    transition: all 0.4s ease; 
}

.mobile-close-btn:hover {
    color: #fff; 
    transform: rotate(90deg); 
}

.mobile-menu-content {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-phone {
    font-family: 'Manrope', sans-serif;
    font-size: 22px; 
    font-weight: 700; 
    color: #B29668;   
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 20px; 
}

.mobile-phone:hover {
    color: #C1A672; 
    transform: scale(1.02); 
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 15px; 
    margin-bottom: 30px;
}

.mobile-social a {
    width: 44px;  
    height: 44px;
    border: 1.5px solid #B29668; 
    border-radius: 50%;
    background-color: transparent;
    color: #B29668;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}

.mobile-social a:hover {
    background-color: #B29668; 
    color: #fff;              
    transform: translateY(-5px); 
    box-shadow: 0 10px 20px rgba(178, 150, 104, 0.3); 
    border-color: #B29668;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.mobile-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: transparent;
    border: 1px solid rgba(178, 150, 104, 0.3); 
    color: #B29668;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
}

.mobile-link-btn:hover {
    background: #B29668;
    color: #fff;
    border-color: #B29668;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}


@media (max-width: 1200px) and (min-width: 961px) {
    .gs-head-btn { padding: 0 15px; font-size: 12px; }
    .gs-logo-text { font-size: 22px; }
    .header-phone { font-size: 14px; }
    .header-right-section { gap: 15px; padding-right: 15px; }
    .header-contacts { padding-right: 15px; }
}

@media (max-width: 960px) {
    .gs-header {
        display: flex;
        justify-content: space-between;
        padding: 0 20px;
    }

    .header-spacer { display: none; }
    
    .header-right-section {
        display: none; 
    }

    .burger-btn {
        display: flex;
    }
    
    .gs-logo-text {
        font-size: 22px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .gs-header {
        height: 70px;
        padding: 0 15px;
    }
    .gs-logo-text {
        font-size: 18px;
    }
}



@media (max-width: 1200px) and (min-width: 961px) {
    .hero-logo {
        width: 120px; 
        margin-bottom: 30px;
    }
    .hero-title {
        font-size: 52px;
    }
    .hero-subtitle {
        font-size: 18px;
        max-width: 80%;  
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 960px) and (min-width: 641px) {
    .hero-section {
        height: auto;       
        min-height: 100vh;  
        padding: 100px 0;   
    }
    .hero-logo {
        width: 80px;
        margin-bottom: 25px;
    }
    .hero-title {
        font-size: 42px;
        margin-bottom: 15px;
    }
    .hero-subtitle {
        font-size: 16px;
        line-height: 1.5;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px;
    }
    .hero-cta {
        padding: 16px 40px; 
        font-size: 14px;
    }
}

@media (max-width: 640px) and (min-width: 481px) {
    .hero-section {
        min-height: 100vh;
        padding: 80px 0;
    }
    .hero-content {
        padding: 20px; 
    }
    .hero-logo {
        width: 50px;
        margin-bottom: 20px;
    }
    .hero-title {
        font-size: 36px;
        letter-spacing: 1px;
    }
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        margin-top: 20px;
        flex-direction: column; 
        
        padding-top: 70px; 
        
        min-height: 100vh;
        min-height: 100dvh; 
    }

    .hero-content {
        padding-top: 10px;
        width: 100%;
        box-sizing: border-box; 
    }

    .hero-logo {
        position: static; 
        margin: 0 auto 20px auto; 
        width: 120px; 
        
        top: auto;
        left: auto;
        transform: none;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 25px;
        color: rgba(255,255,255,0.85);
    }

    .hero-cta {
        width: 100%; 
        justify-content: center;
        padding: 18px 20px;
        font-size: 13px;
        
        box-sizing: border-box; 
        max-width: 100%;
    }

    .scroll-indicator {
        display: none;
    }
}



@media (max-width: 1200px) and (min-width: 961px) {
    .video-section {
        padding: 50px 0; 
    }
    .video-container {
        max-width: 900px; 
    }
    .video-title {
        font-size: 36px; 
    }
}

@media (max-width: 960px) and (min-width: 641px) {
    .video-section {
        padding: 60px 20px;
    }
    .video-header {
        margin-bottom: 40px;
    }
    .video-title {
        font-size: 32px;
    }
    .video-subtitle {
        font-size: 16px;
        max-width: 80%;
    }
    .play-icon {
        width: 80px;
        height: 80px;
    }
    .play-text {
        font-size: 14px;
    }
}

@media (max-width: 640px) and (min-width: 481px) {
    .video-section {
        padding: 50px 20px;
    }
    .video-title {
        font-size: 28px;
    }
    .video-separator {
        margin-bottom: 15px;
    }
    .play-icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 40px 15px; 
    }
    
    .video-header {
        margin-bottom: 30px;
    }

    .video-title {
        font-size: 26px; 
        line-height: 1.2;
    }

    .video-subtitle {
        font-size: 14px;
        line-height: 1.5;
        color: #888;
    }

    .play-icon {
        width: 60px;
        height: 60px;
    }

    .play-text {
        font-size: 12px;
        letter-spacing: 0.05em;
        margin-top: -10px; 
    }
    
    .custom-video-wrapper {
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
}


.advantages-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(178, 150, 104, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.advantages-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.advantages-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.advantages-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 0 0;
    text-transform: uppercase;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.advantages-separator {
    width: 60px;
    height: 3px;
    background-color: #B29668;
    margin: 0 auto 20px;
}

.advantages-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.advantages-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.advantages-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 120px;
}

.adv-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.adv-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #B29668;
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom;
}

.adv-btn-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.adv-btn-icon i {
    font-size: 24px;
    color: #B29668;
    transition: all 0.4s ease;
}

.adv-btn-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.adv-btn-title {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.adv-btn-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: #999;
    transition: color 0.3s ease;
}

.adv-btn-arrow {
    font-size: 18px;
    color: #ccc;
    transition: all 0.4s ease;
    transform: rotate(-90deg);
}

.adv-btn:hover {
    border-color: #B29668;
    transform: translateX(8px);
    box-shadow: 0 12px 28px rgba(178, 150, 104, 0.12);
}

.adv-btn:hover .adv-btn-icon {
    background: linear-gradient(135deg, #B29668 0%, #977D53 100%);
}

.adv-btn:hover .adv-btn-icon i { color: #ffffff; }
.adv-btn:hover .adv-btn-arrow {
    color: #B29668;
    transform: rotate(-90deg) translateX(4px);
}

.adv-btn.active {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-color: #1a1a1a;
    transform: translateX(12px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.adv-btn.active::before { transform: scaleY(1); transform-origin: top; }
.adv-btn.active .adv-btn-icon { background: #B29668; }
.adv-btn.active .adv-btn-icon i { color: #ffffff; }
.adv-btn.active .adv-btn-title { color: #ffffff; }
.adv-btn.active .adv-btn-desc { color: rgba(255, 255, 255, 0.7); }
.adv-btn.active .adv-btn-arrow { color: #B29668; transform: rotate(0deg); }


.advantages-display {
    position: relative;
    min-height: 700px;
}

.adv-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.adv-content.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.adv-image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.adv-main-image {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    background: #000;
    aspect-ratio: 16/9; 
}

.adv-main-image img,
.adv-gallery-slide {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.adv-gallery-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.adv-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 5;
}

.adv-overlay-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: rgba(178, 150, 104, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(178, 150, 104, 0.3);
}

.adv-overlay-badge span {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
}
.adv-overlay-badge i { color: #fff; font-size: 18px; }

.adv-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.adv-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.adv-detail-item:hover {
    border-color: #B29668;
    box-shadow: 0 12px 28px rgba(178, 150, 104, 0.08);
    transform: translateY(-4px);
}

.adv-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.adv-detail-item:hover .adv-detail-icon {
    background: linear-gradient(135deg, #B29668 0%, #977D53 100%);
}

.adv-detail-icon i {
    font-size: 22px;
    color: #B29668;
    transition: color 0.3s ease;
}

.adv-detail-item:hover .adv-detail-icon i { color: #ffffff; }

.adv-detail-text h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.adv-detail-text p {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}


@media (max-width: 1200px) and (min-width: 961px) {
    .advantages-content {
        grid-template-columns: 320px 1fr;
        gap: 40px;
    }
    .advantages-title { font-size: 36px; }
    .adv-btn { padding: 20px; }
    
    .adv-main-image { aspect-ratio: 16/10; }
}


@media (max-width: 960px) and (min-width: 641px) {
    .advantages-section { padding: 60px 0; }
    .advantages-title { font-size: 32px; }
    
    .advantages-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
        width: 100%; /* Гарантируем полную ширину контейнера */
    }

    .advantages-nav {
        display: grid;
        grid-template-columns: 1fr 1fr; /* Кнопки в 2 колонки (плиткой) */
        gap: 15px;
        position: static;
        width: 100%;
    }

    .adv-btn {
        height: 100%;
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .advantages-display { 
        min-height: auto; 
        width: 100%; 
    }
    
    .adv-content { display: none; opacity: 1; visibility: visible; transform: none; width: 100%; }
    .adv-content.active { display: block; animation: fadeInMobile 0.4s ease; }

    /* ГАЛЕРЕЯ: Жестко 16:9 и на всю ширину */
    .adv-main-image {
        width: 100% !important;
        aspect-ratio: 16/9 !important;
        height: auto !important;
        max-height: none !important;
        margin-bottom: 20px;
    }

    /* ДЕТАЛИ СНИЗУ: Строим в одну колонку друг под другом на всю ширину */
    .adv-details {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        width: 100% !important;
    }

    .adv-detail-item {
        width: 100% !important;
        box-sizing: border-box;
    }
}


@media (max-width: 640px) {
    .advantages-section { padding: 50px 0; }
    .advantages-content { display: flex; flex-direction: column; gap: 30px; }
    
    .advantages-nav {
        display: flex;
        flex-direction: column;
        gap: 10px;
        position: static;
    }

    .adv-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        width: 100%;
        border-radius: 12px;
        transform: none !important;
        text-align: left;
    }
    
    .adv-btn::before { display: none; } 
    
    .adv-btn-icon {
        width: 42px; height: 42px;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .adv-btn-text { flex: 1; }
    
    .adv-btn-arrow {
        display: block !important;
        font-size: 14px;
        color: #ccc;
        margin-left: 10px;
        transform: rotate(-90deg);
    }
    
    .adv-btn.active {
        background: #1a1a1a;
        border-color: #1a1a1a;
        transform: none;
    }
    .adv-btn.active .adv-btn-arrow {
        color: #B29668;
        transform: rotate(0deg);
    }

    .advantages-display { min-height: auto; }
    .adv-content { display: none; opacity: 1; visibility: visible; transform: none; }
    .adv-content.active { display: block; animation: fadeInMobile 0.4s ease; }

    .adv-details {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .adv-detail-item { padding: 15px; }
    
    .adv-gallery-arrow {
        width: 36px !important;
        height: 36px !important;
        background: rgba(255, 255, 255, 0.9) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        opacity: 1 !important;
        z-index: 20;
    }
    .adv-gallery-arrow i { font-size: 14px !important; color: #000 !important; }
    .adv-gallery-prev { left: 10px !important; }
    .adv-gallery-next { right: 10px !important; }
}

@media (max-width: 480px) {
    .advantages-section { padding: 40px 0; }
    .advantages-header { padding: 0 15px; }
    
    .advantages-title {
        font-size: 26px;
        line-height: 1.2;
        word-wrap: break-word;
    }

    .adv-main-image {
        aspect-ratio: 16/9 !important;
        width: 100%;
        background: transparent; 
        border-radius: 12px;
    }

    .adv-gallery-indicators {
        bottom: auto !important;
        top: 15px !important;
        right: 15px !important;
        left: auto !important;
        transform: none !important;
        background: rgba(0,0,0,0.4);
        padding: 4px 8px;
        border-radius: 20px;
    }
    
    .adv-main-image img, 
    .adv-gallery-slide {
        object-fit: cover !important; 
        width: 100% !important;
        height: 100% !important;
    }

    


    .adv-indicator {
        width: 6px; height: 6px; 
    }
    .adv-indicator.active { width: 16px; }

    .adv-image-overlay {
        background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 80%) !important;
        padding: 15px !important;
    }

    .adv-overlay-badge {
        padding: 6px 14px;
    }
    .adv-overlay-badge span { font-size: 12px; }
}

@keyframes fadeInMobile {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


@media (max-width: 1200px) and (min-width: 961px) {
    .infra-content {
        height: auto !important; 
        min-height: 100vh; 
        overflow: visible !important;
        align-items: flex-start; 
    }

    .infra-sidebar {
        width: 280px;
        padding: 40px 20px;
        position: sticky; 
        top: 100px; 
        height: auto;
        min-height: auto;
        border-right: 1px solid #f0f0f0;
    }

    .infra-display {
        flex: 1;
        height: auto !important; 
        overflow: visible !important;
    }

    .infra-content-block {
        height: auto !important;
        overflow: visible !important;
        padding: 50px 40px;
        display: none; 
    }
    
    .infra-content-block.active {
        display: block; 
    }

    .infra-detail-container {
        display: flex;
        flex-direction: column; 
        gap: 40px;
        max-width: 800px;
    }

    .infra-items-list {
        display: flex;
        flex-direction: column;
        justify-content: flex-start; 
        flex: 1;
        overflow: hidden;
        gap: 15px; 
    }
    
    .infra-item {
        margin-bottom: 0; 
    }
}


@media (max-width: 960px) and (min-width: 641px) {
    .infra-header { padding: 60px 20px 30px; }
    .infra-title { font-size: 32px; }

    .infra-content {
        flex-direction: column; 
        height: auto !important;
        overflow: visible !important;
    }

    .infra-sidebar {
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding: 15px 0;
        position: relative;
    }

    .infra-items-list {
        flex-direction: row;
        justify-content: flex-start; 
        gap: 15px;
        padding: 0 20px;
        overflow-x: auto;
    }

    .infra-item {
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 10px 20px;
        background: #f9f9f9;
        border-radius: 6px;
        min-width: max-content;
    }
    
    .infra-item.active {
        border-bottom-color: #B29668;
        background: #e6e0d4;
        transform: none;
    }

    .infra-display {
        height: auto !important;
        overflow: visible !important;
    }

    .infra-content-block {
        height: auto !important;
        overflow: visible !important;
        padding: 40px 30px;
    }

    .infra-detail-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .infra-video-wrapper,
    .infra-gallery-wrapper {
        width: 100%;
        aspect-ratio: 16/9 !important;
        height: auto !important;
    }
}

@media (max-width: 640px) {
    .infra-header { padding: 50px 20px 20px; }
    .infra-title { font-size: 28px; }

    .infra-content {
        flex-direction: column;
        height: auto !important;
        overflow: visible !important;
    }

    .infra-sidebar {
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 10px 0;
    }

    .infra-items-list {
        flex-direction: row;
        justify-content: flex-start;
        gap: 15px;
        padding: 0 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        
    }

    .infra-item {
        flex-shrink: 0;
        padding: 8px 15px;
        
        border: none; 
        border-bottom: 3px solid transparent; 
        
        border-radius: 6px; 
        background: #f9f9f9; 
        min-width: 100px;
        display: flex;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .infra-item.active {
    border-bottom-color: #B29668 !important;
    
    background: #e6e0d4 !important; 
    
    border-top: none;
    border-left: none;
    border-right: none;
    
    transform: none;
    box-shadow: none; 
}
    .infra-item.active .infra-text-label {
    color: #1a1a1a !important; 
    font-weight: 700;
}

    .infra-item img.infra-logo { height: 40px; width: auto; object-fit: contain; }
    .infra-text-label { font-size: 14px; }

    .infra-display { 
        height: auto !important; 
        overflow: visible !important; 
    }
    .infra-content-block { 
        padding: 30px 15px; 
        height: auto !important; 
        overflow: visible !important; 
    }

    .infra-detail-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .infra-detail-title { font-size: 24px; margin-bottom: 10px; }
    
    .infra-features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .infra-video-wrapper,
    .infra-gallery-wrapper {
        width: 100%;
        aspect-ratio: 16/9 !important;
        height: auto !important;
    }

    .infra-play-icon { width: 60px; height: 60px; }
    
    .infra-blueprint-wrapper { height: 250px; }
}


@media (max-width: 480px) {
    .infra-items-list { gap: 10px; }
    .infra-item { min-width: 80px; padding: 6px 10px; }
    .infra-item img.infra-logo { height: 30px; }
    
    .infra-video-wrapper:hover,
    .infra-gallery-item:hover img {
        transform: none !important;
    }
}



@media (min-width: 1201px) {
    
    .infra-content {
        height: auto !important; 
        min-height: 100vh;      
        overflow: visible !important; 
    }

    .infra-sidebar {
        height: auto !important;
        min-height: 100vh;
        
        position: sticky;
        top: 0;
        align-self: flex-start;
    }

    .infra-display {
        height: auto !important;
        overflow: visible !important; 
    }

    .infra-content-block {
        height: auto !important;
        overflow: visible !important;
        padding-bottom: 80px; 
    }
}



@media (max-width: 1200px) {

 
    .infra-detail-container {
        display: flex;
        flex-direction: column;
    }

    .infra-detail-left,
    .infra-detail-right {
        display: contents; 
    }

    .infra-detail-left > *,
    .infra-detail-right > * {
        order: 10; 
        margin-bottom: 20px; 
    }

    .infra-detail-title,
    .infra-detail-description,
    .infra-brand {
        order: 1;
    }
    

    #infra-fitness .infra-detail-title { order: 1; }
    #infra-fitness .infra-detail-description { order: 2; }
    
    #infra-fitness .infra-video-block { 
        order: 3; 
        margin-top: 10px;
    }
    
    #infra-fitness .infra-photo-gallery { order: 4; }
    
    #infra-fitness .infra-features-grid { order: 5; }
    #infra-fitness .infra-zones { order: 6; }


    #infra-spa .infra-detail-title { order: 1; }
    #infra-spa .infra-detail-description { order: 2; }
    
    #infra-spa .infra-photo-gallery { order: 3; }
    
    #infra-spa .infra-zones { order: 4; }
    #infra-spa .infra-cta-button { order: 5; }


    #infra-restaurants .infra-blueprint-block { order: 1; }
    
    #infra-restaurants .infra-photo-gallery { order: 2; }
    
    #infra-restaurants .infra-detail-title { order: 3; margin-top: 20px; }
    #infra-restaurants .infra-detail-description { order: 4; }
    
    #infra-restaurants .infra-zones { order: 5; }
    #infra-restaurants .infra-cta-button { order: 6; }

    .infra-video-wrapper,
    .infra-gallery-wrapper {
        aspect-ratio: 16/9 !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 12px;
        overflow: hidden;
    }

    .infra-video-block {
        margin-bottom: 20px;
    }
}


@media (max-width: 1200px) {
    
    .infra-video-wrapper {
        padding-bottom: 0 !important;
        height: auto !important;     
    }

    .infra-video-wrapper,
    .infra-gallery-wrapper {
        width: 100% !important;
        aspect-ratio: 16/9 !important; 
        position: relative !important;
        border-radius: 12px;
        overflow: hidden;
        min-height: 0 !important; 
    }

    .infra-video-wrapper img,
    .infra-video-wrapper iframe,
    .infra-gallery-slide {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important; 
    }
}

@media (max-width: 640px) {
    
    .blueprint-modal {
        display: none; 
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.95) !important;
        z-index: 99999;
        padding: 0 !important;
    }

    .blueprint-modal.active {
        display: flex !important; 
        align-items: center;
        justify-content: center;
    }

    .blueprint-modal-content {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: 100vh !important;
        margin: 0 !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        pointer-events: auto;
    }

    .blueprint-modal-img {
        width: 100% !important;
        height: auto !important;
        max-height: 70vh !important; 
        object-fit: contain !important;
        padding: 10px !important;
        background: #ffffff !important;
        border-radius: 4px;
    }

    .blueprint-modal-close {
        position: fixed !important;
        top: 20px !important;
        right: 20px !important;
        width: 44px !important;
        height: 44px !important;
        background: rgba(178, 150, 104, 0.9) !important;
        z-index: 100000; 
        cursor: pointer;
        pointer-events: auto; 
    }
    
    .blueprint-modal-close i {
        font-size: 20px !important;
        color: #fff !important;
    }

    .blueprint-modal-caption {
        color: #ccc !important;
        margin-top: 20px !important;
        font-size: 14px !important;
        text-align: center;
    }
}


@media (max-width: 1200px) and (min-width: 961px) {
    .map-section {
        height: 550px; 
    }

    .map-info-card {
        top: 30px;
        left: 40px;
        width: 350px;
        padding: 30px;
    }

    .map-info-header h3 {
        font-size: 28px;
    }

    .map-value {
        font-size: 15px;
    }
}


@media (max-width: 960px) and (min-width: 641px) {
    .map-section {
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .map-container {
        display: flex;
        flex-direction: column; 
        height: auto;
    }

    .yandex-map {
        height: 400px;
        width: 100%;
        order: 1; 
    }

    .map-info-card {
        position: relative; 
        top: auto;
        left: auto;
        width: 100%; 
        order: 2; 
        
        border-radius: 0; 
        box-shadow: none;
        border-top: 1px solid #e0e0e0; 
        background: #ffffff;
        
        display: flex; 
        justify-content: space-between;
        align-items: center;
        padding: 40px;
    }

    .map-info-content {
        flex-direction: row; 
        gap: 40px;
        margin-bottom: 0;
    }

    .map-buttons {
        padding-top: 0;
        border-top: none;
        flex-direction: row;
    }
    
    .map-separator { display: none; }
    .map-info-header h3 { margin-bottom: 0; margin-right: 30px; font-size: 24px; }
    .map-info-header { display: flex; align-items: center; }
}


@media (max-width: 640px) {
    .map-section {
        height: auto;
    }

    .map-container {
        display: flex;
        flex-direction: column;
    }

    .yandex-map {
        height: 350px; 
        width: 100%;
        order: 1;
    }

    .map-info-card {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        order: 2;
        padding: 30px 20px;
        
        border-radius: 0;
        box-shadow: none;
        background: #fff;
        border-top: 1px solid #eee;
    }

    .map-info-header h3 {
        font-size: 26px;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .map-separator {
        margin: 0 auto 25px; 
    }

    .map-info-content {
        gap: 20px;
        margin-bottom: 30px;
    }

    .map-buttons {
        flex-direction: column;
        gap: 10px;
        padding-top: 0;
        border: none;
    }

    .map-btn {
        padding: 16px;
        justify-content: center;
        margin: 0 15px;
        width: auto; 
    }

    .map-info-item i {
        font-size: 18px;
        margin: 0 15px;
    }
}

@media (max-width: 480px) {
    .yandex-map {
        height: 280px;
    }

    .map-info-card {
        padding: 25px 15px;
    }

    .map-info-header h3 {
        font-size: 24px;
    }

    .map-value {
        font-size: 15px;
    }
    
    .map-info-item i {
        font-size: 18px;
        margin: 0 15px;
    }

    .map-buttons {
        flex-direction: column;
        gap: 10px;
        padding-top: 0;
        border: none;
    }

    .map-btn {
        padding: 16px;
        justify-content: center;
        margin: 0 15px;
        width: auto; 
    }
}


@media (max-width: 1200px) and (min-width: 961px) {
    .footer-container {
        gap: 20px; 
    }
    
    .footer-logo {
        height: 160px; 
    }

    .footer-contact-card {
        padding: 25px;
        min-width: 280px; 
    }

    .footer-contact-row {
        font-size: 16px;
    }
}

@media (max-width: 960px) and (min-width: 641px) {
    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center; 
        gap: 15px;          
    }
    
    .footer-logo-wrap {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 0; 
    }

    .footer-nav {
        order: 2;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center; 
        padding-top: 0; 
        margin-bottom: 40px; 
    }

    .footer-menu {
        display: flex;
        flex-direction: column; 
        align-items: center;    
        gap: 15px;
        padding: 0;
        width: 100%;
    }

    .footer-nav-title {
        font-family: 'Playfair Display', serif;
        font-size: 24px;
        color: #B29668;
        margin-bottom: 25px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .footer-menu-link {
        font-size: 18px;       
        justify-content: center;
        width: 100%;
        text-align: center;
    }

    .footer-contact-card {
        order: 3;
        width: 100%;
        max-width: 450px;      
        justify-self: center;
    }

    .footer-container::before {
        display: none;
    }

    .footer-logo {
        height: 150px;
    }

    .footer-contact-card {
        width: 100%;
        max-width: 450px; 
        align-items: center; 
    }
    
    .footer-contact-row {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-privacy { text-align: center; }
}


@media (max-width: 640px) {
    .footer-section {
        padding: 40px 20px 30px;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding-bottom: 30px;
        border-bottom-color: rgba(178, 150, 104, 0.1);
    }
    

    .footer-nav-title {
        font-family: 'Playfair Display', serif;
        font-size: 24px;
        color: #B29668;
        margin-bottom: 25px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* .footer-menu-link {
        font-size: 18px;      
        justify-content: center;
        width: 100%;
        text-align: center;
    } */

    .footer-logo-wrap {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 0; 
    }

    .footer-nav {
        order: 2;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center; 
        padding-top: 0; 
        margin-bottom: 40px; 
    }


    .footer-container::before { display: none; }

    .footer-logo {
        height: 120px; 
    }

    .footer-contact-card {
        order: 3;
        width: 100%;
        max-width: 100%;
        padding: 25px 20px;
        align-items: center;
        gap: 15px;
    }

    .footer-contact-row {
        font-size: 14px;
        justify-content: center; 
        text-align: center;
        width: 100%;
    }
    
    .footer-contact-row i {
        margin-top: 0; 
    }

    .footer-social {
        justify-content: center;
        padding-top: 15px;
        border-top: 1px solid rgba(178, 150, 104, 0.15);
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        padding-top: 20px;
    }

    .footer-disclaimer {
        text-align: center;
        font-size: 12px;
        color: #888;
    }

    .footer-privacy {
        text-align: center;
    }

    .footer-link {
        font-size: 13px;
    }
    
    .footer-copyright {
        margin-top: 20px;
        font-size: 12px;
    }

    .footer-nav {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center; 
    }

    .footer-menu {
        flex-direction: column;
        align-items: center; 
        width: 100%;
    }

    .footer-menu-link {
        font-size: 18px;
        justify-content: center; 
        width: 100%;             
        text-align: center;
    }
}


@media (max-width: 480px) {
    .footer-logo {
        height: 120px; 
    }
    
    .footer-contact-card {
        padding: 20px 15px;
    }
    
    .footer-contact-row {
        font-size: 13px;
        gap: 10px;
    }
    
    .footer-social-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .footer-menu-link {
        font-size: 18px;
        justify-content: center; 
        width: 100%;            
        text-align: center;
    }
}


.adv-main-image {
    position: relative;
    width: 100% !important;
    height: auto !important; 
    aspect-ratio: 16/9 !important; 
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15) !important;
    background: #000;
    margin-bottom: 20px;
}

.adv-main-image img,
.adv-gallery-slide {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; 
    border-radius: 0 !important; 
}

.adv-gallery-wrapper {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 1;
}

.adv-image-overlay {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    padding: 20px !important;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%) !important;
    transform: none !important; 
    opacity: 1 !important;
}

.adv-overlay-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(178, 150, 104, 0.95);
    backdrop-filter: blur(5px);
    border-radius: 50px;
}


@media (max-width: 960px) {
    .advantages-content {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .adv-main-image {
        aspect-ratio: 16/9 !important;
        height: auto !important;
        max-height: none !important;
    }
}

@media (max-width: 480px) {
    .adv-main-image {
        aspect-ratio: 16/9 !important;
        margin-bottom: 15px;
    }

    .adv-image-overlay {
        display: none !important;
    }

    .adv-gallery-indicators {
        top: 15px !important;
        bottom: auto !important;
        right: 15px !important;
        left: auto !important;
        transform: none !important;
        background: rgba(0,0,0,0.4);
        padding: 4px 8px;
        border-radius: 20px;
    }

    .adv-gallery-arrow {
        width: 36px !important;
        height: 36px !important;
        background: rgba(255, 255, 255, 0.9) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        opacity: 1 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        margin-top: 0 !important;
    }

    .adv-gallery-arrow i {
        color: #1a1a1a !important;
        font-size: 14px !important;
    }
    
    .adv-gallery-prev { left: 10px !important; }
    .adv-gallery-next { right: 10px !important; }
}


.infra-card-link {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent; 
    position: relative;
}

.infra-card-link:hover {
    background-color: #fff9f0; 
    border-color: #B29668;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(178, 150, 104, 0.15);
}

.infra-card-link:hover .infra-feature-icon {
    background: #977D53; 
    transform: scale(1.1);
}

.infra-card-link:hover h4 {
    color: #B29668;
}

.infra-card-link i.fa-arrow-right {
    transition: transform 0.3s ease;
}
.infra-card-link:hover i.fa-arrow-right {
    transform: translateX(5px);
}


.infra-video-wrapper,
.infra-gallery-wrapper {
    padding-bottom: 0 !important; 
    
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    
    align-self: flex-start !important; 
    
    position: relative !important;
    overflow: hidden !important;
    border-radius: 12px;
}

.infra-video-wrapper iframe,
.infra-video-wrapper img,
.infra-gallery-slide {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; 
}

@media (max-width: 1650px) and (min-width: 1201px) {
    
    .infra-sidebar {
        width: 250px; 
        padding: 40px 15px;
    }
    
    .infra-item[data-category="fitness"] .infra-logo, 
    .infra-item[data-category="hotel"] .infra-logo {
        width: 90px; height: 60px;
    }
    .infra-item[data-category="coffee"] .infra-logo {
        width: 90px; height: 45px;
    }
    .infra-text-label { font-size: 18px; }

    .infra-detail-container {
        grid-template-columns: 45% 1fr; 
        gap: 30px;

        align-items: start !important; 
    }
}


@media (max-width: 1300px) and (min-width: 1201px) {
    .infra-detail-container {
        display: flex;
        flex-direction: column;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .infra-detail-left { margin-bottom: 30px; }
    
    .infra-video-wrapper,
    .infra-gallery-wrapper {
        width: 100% !important;
        aspect-ratio: 16 / 9 !important;
    }
}


@media (max-width: 1300px) and (min-width: 1201px) {
    
    .infra-detail-container {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 750px !important; 
        margin: 0 auto !important;  
        gap: 0 !important;         
    }

    .infra-detail-left,
    .infra-detail-right {
        display: block !important;
        width: 100% !important;
        min-height: auto !important;
        opacity: 1 !important;      
        visibility: visible !important;
    }

    .infra-detail-left {
        order: 1;
        margin-bottom: 40px !important;
    }

    .infra-detail-right {
        order: 2;
        margin-bottom: 20px !important;
    }

    .infra-video-wrapper,
    .infra-gallery-wrapper {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16 / 9 !important;
        display: block !important;
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
    }
}




.header-left-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 40px;
    height: 100%;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-divider {
    display: none;
}

.lang-link {
    font-size: 14px; 
    
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    
    padding: 6px 10px; 
    min-width: 38px;   
    
    display: flex;
    justify-content: center;
    align-items: center;
    color: #B29668;              
    border: 1px solid #B29668; 
    border-radius: 8px;      
    background-color: transparent;
    transition: all 0.3s ease;
}

.lang-link:hover {
    border-color: #B29668;
    color: #B29668;        
    background-color: rgba(178, 150, 104, 0.25); 
}

.lang-link.active {
    background-color: #B29668; 
    color: #fff;              
    border-color: #B29668;     
    font-weight: 700;
    pointer-events: none;      
    box-shadow: 0 4px 10px rgba(178, 150, 104, 0.2); 
}


.mobile-lang-switcher {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px; 
}

.mobile-lang-switcher .lang-link {
    font-size: 16px; 
    font-weight: 500;
    padding: 5px; 
}

.mobile-lang-switcher .lang-link.active {
    font-weight: 800;
    border-bottom: 2px solid #B29668; 
}


@media (max-width: 1200px) {
    .header-left-section {
        padding-left: 20px;
    }
}

@media (max-width: 960px) {
    .header-left-section {
        display: none;
    }
    
    .gs-header {
        display: flex;
        justify-content: space-between;
        padding: 0 20px;
    }
}



.footer-lang-row {
    display: flex;
    justify-content: center; 
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    width: 100%;
}

.fl-link {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #B29668; 
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.fl-link:hover {
    color: #fff; 
    transform: translateY(-2px);
}

.fl-link.active {
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
    cursor: default;
}

.fl-divider {
    display: block;
    width: 4px;
    height: 4px;
    background-color: #B29668;
    border-radius: 50%;
    opacity: 0.5;
}

@media (max-width: 640px) {
    .footer-lang-row {
        gap: 20px; 
    }
    
    .fl-link {
        font-size: 16px; 
    }
}