  

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Inter', sans-serif;
            color: white;
        }

  /* --- HEADER: Прозрачный и Статичный --- */
.header {
    position: absolute; /* Лежит поверх контента, не двигается при скролле */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent; /* Полная прозрачность */
    padding: 10px 40px 10px 50px; /* Больше воздуха сверху и снизу */
}

.header-container {
    margin: 0 auto;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Логотип --- */
.brand {
    display: flex;
    align-items: center;
    z-index: 1002;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

/* --- Навигация и Языки (Правая часть) --- */
.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 50px; /* Большой отступ между меню и языками */
}

.nav-desktop {
    display: flex;
    gap: 35px;
}

/* Общий стиль для ссылок и кнопок языков */
.nav-link, .lang-btn {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #ffffff; /* Если у тебя темный фон, замени на #fff (белый) */
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    text-shadow: 2px 2px 4px rgb(151, 151, 151);
}

/* --- ЭФФЕКТ НАВЕДЕНИЯ (Линия снизу) --- */
/* Применяем и к меню, и к языкам для идеального дизайна */
.nav-link::after, .lang-btn::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%; /* Линия растет из центра */
    background-color: #ffffff; /* Цвет линии (черный или твой фирменный) */
    transition: width 0.3s ease, left 0.3s ease;
}

/* Hover эффект */
.nav-link:hover::after, .lang-btn:hover::after {
    width: 100%;
    left: 0;
}

/* Активное состояние языков (Линия всегда видна) */
.lang-btn.active {
    color: #ffffff;
    font-weight: 800;
}

.lang-btn.active::after {
    width: 100%;
    left: 0;
    background-color: #ff0000;
}

/* Разделитель перед языками убрал, чтобы было чисто */
.lang-switcher {
    display: flex;
    gap: 15px;
}

/* --- Бургер (Скрыт на ПК) --- */
.burger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1002;
}

.burger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #ffffff; /* Цвет полосок бургера */
    transition: .25s ease-in-out;
}

.burger span:nth-child(1) { top: 0px; }
.burger span:nth-child(2) { top: 9px; }
.burger span:nth-child(3) { top: 18px; }

/* Анимация крестика */
.burger.active span:nth-child(1) { top: 9px; transform: rotate(135deg); background-color:rgb(43, 43, 43); }
.burger.active span:nth-child(2) { opacity: 0; left: -60px; background-color:rgb(43, 43, 43);}
.burger.active span:nth-child(3) { top: 9px; transform: rotate(-135deg); background-color:rgb(43, 43, 43);}

/* --- Адаптив --- */
@media (max-width: 900px) {
    .nav-desktop, .lang-switcher { display: none; }
    .burger { display: block; }
}

/* Мобильное меню остается прежним по стилю, но нужно скрыть overflow */
.nav-mobile {
    position: fixed;
    top: 0; right: 0; width: 100%; height: 100vh;
    background: #fff;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 1001;
}
.nav-mobile.active { transform: translateX(0); }
.mobile-links { display: flex; flex-direction: column; gap: 20px; text-align: center; margin-bottom: 30px; }
.nav-mobile a { font-size: 22px; color: #333; text-decoration: none; font-weight: 500; }
.mobile-lang { display: flex; gap: 20px; }
.lang-btn-mob { font-size: 18px; color: #999; cursor: pointer; }
.lang-btn-mob.active { color: #000; text-decoration: underline; }
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 0, 0, 0.88); /* Ваш фирменный красный */
    color: white;
    border: none;
    border-radius: 5px; /* Слегка скругленные углы в стиле кнопок Hero */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0; /* Скрыта по умолчанию */
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: rgba(255, 0, 0, 1);
    transform: translateY(-5px); /* Небольшой прыжок вверх при наведении */
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}/* --- FOOTER --- */
/* БЛОК CTA */
.cta-section {
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
     padding: 70px 100px 0 100px;
    justify-content: center;
    background-position: center;
    background-size: cover;
    background-image:linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/dorsa-masghati-jKeTgRTOQAM-unsplash.jpg');
}

.cta-section h2 {
    font-family: 'Spectral', serif;
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
}
.cta-section p{
    color: #f6f6f6;
}
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ff0000;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    margin-top: 30px;
    transition: 0.3s;
}

.cta-button:hover {
    background-color: #cc0000;
    transform: translateY(-3px);
}
.cdiv{
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 20px 5px;
    border-top: 1px solid rgb(255, 255, 255);
}
.cdiv a{
    color: red;
}
/* Адаптив для футера */
@media (max-width: 768px) {
    .footer__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer__brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
.hero{
    background-image:linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../img/modern-glass-skyscraper-facade-against-clear-blue-sky.jpg');
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    height: 400px;
    display: flex;
    align-items: end;
    justify-content: left;  
    padding-left: 50px;  
    padding-bottom: 20px;
}
.hero p{
    font-size: 130px;
    color: #ffffff;
    font-weight: 600;
    font-family: Alegreya;
}
/* --- CONTACTS SECTION --- */
.contacts-main {
    padding: 170px 100px;
    display: flex;
 
}

.contacts-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Левая часть (Инфо) */
.poetic-title {
    font-family: 'Alegreya', serif;
    font-size: 48px;
    color: #1f1f1f;
    margin-bottom: 25px;
    position: relative;
}

.poetic-text {
    font-style: italic;
    font-size: 20px;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 40px;
    border-left: 3px solid #ff0000;
    padding-left: 20px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-icon {
    width: 35px; /* Как заказывали */
    height: 35px;
    object-fit: contain;
}

.info-content span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #6d6d6d;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.info-content p, .info-content a {
    font-size: 18px;
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.info-content a:hover {
    color: #ff0000;
}

/* Правая часть (Форма "Олимп") */
.contacts-form-wrapper {
    background-color: rgb(253, 253, 253);
    padding:50px 40px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.195);
    position: relative;
    border-bottom-right-radius: 20px;

}
.contacts-form-wrapper ::placeholder{
    color: #6d6d6d;
    padding-left: 2px;
}
.contacts-form-wrapper h3 {
    font-family: 'Alegreya', serif;
    font-size: 35px;
    margin-bottom: 30px;
    text-align: left;
    color: #1a1a1a;
}


.input-group {
    margin-bottom: 20px;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 15px;
    background: #ffffff64;
    border: 1px solid #5a5a5a;
    color: rgb(0, 0, 0);
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus, .input-group textarea:focus {
    border-color: #ff0000;
    background: #ffffffd7;
}

.form-submit {
    width: 100%;
    padding: 18px;
    background-color: #ff0000;
    color: rgb(255, 255, 255);
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.form-submit:hover {
    background-color: #cc0000;
    transform: translateY(-3px);
}

/* Адаптив */
@media (max-width: 992px) {
    .contacts-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .poetic-title {
        font-size: 36px;
    }
}

@media (max-width: 540px) {
    .contacts-main {
        padding: 60px 6%;
    }
    .contacts-form-wrapper {
        padding: 25px;
    }
}
.contacts-form-area{
    position: relative;
}
.shape-1{
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: #ff0000;
    right: 0;
    transform: translate(20px, -20px);
    z-index: -1;
}
.shape-2{
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: #8e8e8e;
    bottom: 0;
    left: 0;
    transform: translate(-20px, 20px);
     z-index: -1;
}
/* Стили секции */
   :root {
  --map-height: 500px;
}

body {
  margin: 0;
}

.map-controls {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 10px 20px;
}

.btn {
  padding: 10px 16px;
  cursor: pointer;
}

.map {
  position: relative;
  width: 100%;
  height: var(--map-height);
}

.map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: none;
}

.map-frame.active {
  display: block;
}
  .btnn {
    gap:8px;
    padding: 10px 14px;
    border: none;
    background: var(--accent);
    color: rgb(255, 0, 0);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(157, 83, 13, 0.096);
    text-transform: uppercase;
  }
  .mapss{
    padding: 50px ;
    box-shadow: 0 6px 12px rgba(157, 83, 13, 0.096);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
/* Анимация плавного появления */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Адаптив для фигур и карты */
@media (max-width: 768px) {
    .map-shape {
        width: 150px;
        height: 150px;
    }
    .maps-switcher-section {
        padding: 60px 5%;
    }
    .map-card-wrapper {
        height: 400px;
    }
}
@media (max-width: 900px){
        .cta-section div{
        flex-direction: column;
        gap: 10px;
    }
}
@media (max-width: 750px){
    .cta-section{
        padding: 50px;
    }
}
@media (max-width: 630px){
        .cta-section{
        padding: 50px 10px;
        background-position: bottom;
    }
    .hero p{
        font-size: 100px;
    }
}
@media (max-width: 520px){
    .map-controls{
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0 0 20px 0;
    }
    .btnn{
        width: 100%;
    }
}
@media (max-width: 500px){
        .hero{
        margin-bottom: 40px;
        height: 300px;
        justify-content: left;
        align-items: end;
        padding: 10px;
    }
}
@media (max-width: 470px){
    .hero p{
        font-size: 70px;
    }

    .mapss{
        padding: 20px;
    }
}