/* ============================================================
   ELENA YURGENEVA — LIGHT LUXURY EDITION (FULLY RESPONSIVE)
   ============================================================ */

:root {
    --gold: #C6A43F;
    --gold-light: #D8B94A;
    --gold-dark: #A8862E;
    --gold-dim: rgba(198, 164, 63, 0.12);
    --gold-glow: rgba(198, 164, 63, 0.2);
    --white: #FFFFFF;
    --white-lux: #FDFCF8;
    --marble: #F5F2EB;
    --marble-dark: #EBE7DD;
    --sand: #F8F6F0;
    --beige: #F0EDE4;
    --dark: #1A1A1A;
    --dark-soft: #2D2D2D;
    --grey-text: #4A4A4A;
    --grey-light: #6B6B6B;
    --grey-lighter: #9A9A9A;
    --border-light: rgba(0, 0, 0, 0.08);
    --border-gold: rgba(198, 164, 63, 0.25);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.08);
    --shadow-gold: 0 20px 40px rgba(198, 164, 63, 0.12);
    --shadow-hover: 0 25px 50px rgba(0, 0, 0, 0.1);
    --glass-light: rgba(255, 255, 255, 0.9);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background: var(--white-lux);
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.65;
    overflow-x: hidden;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, .logo-main, .stat-number, .section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--dark);
}

h1 { font-size: clamp(2rem, 7vw, 5rem); line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 5vw, 3.2rem); line-height: 1.2; margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 3vw, 1.3rem); margin-bottom: 0.75rem; }

.section-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 16px;
}

.text-center { text-align: center; }
.gold-text { color: var(--gold); }

.section-header {
    max-width: 700px;
    margin-bottom: 40px;
}
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header p { font-size: 0.9rem; color: var(--grey-text); margin-top: 12px; }

/* ---------- CONTAINER ---------- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
    position: relative;
}

section + section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ---------- КНОПКИ ---------- */
.btn-gold, .btn-outline, .btn-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 12px 24px;
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}
.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 1px solid var(--gold);
}
.btn-outline:hover {
    background: var(--gold-dim);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.6rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}
.btn-sm:hover {
    background: var(--gold);
    color: var(--white);
}

/* ============================================================
   HEADER (АДАПТИВНЫЙ)
   ============================================================ */

.main-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(198, 164, 63, 0.15);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}
.main-header.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* ── ЛОГОТИП ── */
.logo-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.logo-main span { color: #C6A43F; }
.logo-sub {
    font-size: 0.42rem;
    letter-spacing: 2.5px;
    color: #aaa;
    margin-top: 4px;
    text-transform: uppercase;
}

/* ── НАВИГАЦИЯ ── */
.main-nav ul {
    display: flex;
    gap: 22px;
    list-style: none;
    margin: 0; padding: 0;
}
.main-nav a {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #333;
    text-decoration: none;
    padding-bottom: 3px;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: #C6A43F;
    transition: width 0.3s ease;
}
.main-nav a:hover { color: #C6A43F; }
.main-nav a:hover::after { width: 100%; }

/* ── ПРАВАЯ ЧАСТЬ ── */
.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Телефон десктоп */
.phone-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #C6A43F;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.phone-link:hover { opacity: 0.8; }
.phone-link i { font-size: 0.65rem; }

/* ── ПЕРЕКЛЮЧАТЕЛЬ ЯЗЫКОВ ── */
/* ── ПЕРЕКЛЮЧАТЕЛЬ ЯЗЫКОВ ── */
.lang-dropdown {
    position: relative;
}

/* Кнопка текущего языка */
.lang-current {
    display: flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    border: 1px solid rgba(198, 164, 63, 0.4);
    border-radius: 40px;
    padding: 7px 14px 7px 11px;
    cursor: pointer;
    font-size: 0.68rem;
    font-weight: 700;
    color: #2a2a2a;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}
.lang-current:hover {
    border-color: #C6A43F;
    background: rgba(198, 164, 63, 0.06);
}
.lang-current .globe-icon {
    color: #C6A43F;
    font-size: 0.72rem;
}
.lang-current .chevron-icon {
    font-size: 0.48rem;
    color: #C6A43F;
    transition: transform 0.25s ease;
    margin-left: 2px;
}
.lang-dropdown.open .lang-current {
    border-color: #C6A43F;
    background: rgba(198, 164, 63, 0.06);
}
.lang-dropdown.open .chevron-icon {
    transform: rotate(180deg);
}

/* Выпадающий список */
.lang-list {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    list-style: none;
    margin: 0;
    padding: 8px;
    background: #ffffff;
    border: 1px solid rgba(198, 164, 63, 0.2);
    border-radius: 16px;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.97);
    transform-origin: top right;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.04),
        0 20px 40px rgba(0, 0, 0, 0.10);
    z-index: 500;
}
.lang-list.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Каждый пункт */
.lang-list li {
    list-style: none;
    border-radius: 10px;
    overflow: hidden;
}
.lang-list li + li {
    margin-top: 2px;
}

/* Разделитель между пунктами */
.lang-list li:not(:last-child) {
    border-bottom: 1px solid rgba(198, 164, 63, 0.1);
    border-radius: 0;
    padding-bottom: 2px;
    margin-bottom: 2px;
}

.lang-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #3a3a3a;
    text-decoration: none;
    letter-spacing: 0.3px;
    font-family: 'Montserrat', sans-serif;
    border-radius: 10px;
    transition: background 0.15s ease, color 0.15s ease;
}

/* Флаг */
.lang-list li a .lang-flag {
    font-size: 1.15rem;
    line-height: 1;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}

/* Название языка */
.lang-list li a .lang-name {
    flex: 1;
    font-size: 0.72rem;
    font-weight: 500;
    color: #3a3a3a;
}

/* Галочка активного */
.lang-list li a .lang-check {
    margin-left: auto;
    color: #C6A43F;
    font-size: 0.65rem;
    opacity: 0.9;
}

/* Hover */
.lang-list li a:hover {
    background: rgba(198, 164, 63, 0.07);
    color: #C6A43F;
}
.lang-list li a:hover .lang-name { color: #C6A43F; }

/* Активный (текущий) язык */
.lang-list li.active a {
    background: linear-gradient(135deg, rgba(198, 164, 63, 0.12), rgba(198, 164, 63, 0.06));
    color: #C6A43F;
}
.lang-list li.active a .lang-name {
    color: #C6A43F;
    font-weight: 700;
}

/* Телефон внутри мобильного меню — скрыт на десктопе */
.mobile-nav-phone { display: none; }

/* ── БУРГЕР ── */
.mobile-menu-btn {
    display: none;
    background: none;
    border: 1px solid #ddd;
    width: 38px; height: 38px;
    border-radius: 8px;
    cursor: pointer;
    color: #333;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    font-size: 0.9rem;
}
.mobile-menu-btn:hover { border-color: #C6A43F; color: #C6A43F; }
.mobile-menu-btn.active {
    border-color: #C6A43F;
    color: #C6A43F;
    background: rgba(198, 164, 63, 0.06);
}

/* ── АДАПТИВ ПЛАНШЕТ (≤ 1024px) ── */
@media (max-width: 1024px) {
    .main-nav ul { gap: 14px; }
    .main-nav a { font-size: 0.58rem; }
    .phone-link .phone-text { display: none; }
    .phone-link {
        width: 36px; height: 36px;
        background: rgba(198, 164, 63, 0.1);
        border: 1px solid rgba(198, 164, 63, 0.3);
        border-radius: 8px;
        justify-content: center;
        gap: 0;
    }
    .phone-link i { font-size: 0.8rem; }
}

/* ── АДАПТИВ МОБИЛЬНЫЙ (≤ 900px) ── */
@media (max-width: 900px) {

    /* Показываем бургер */
    .mobile-menu-btn { display: flex; }

    /* Скрываем десктопную навигацию — показываем только иконку телефона */
    .phone-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px; height: 38px;
        padding: 0; gap: 0;
        background: rgba(198, 164, 63, 0.1);
        border: 1px solid rgba(198, 164, 63, 0.35);
        border-radius: 8px;
        color: #C6A43F;
        font-size: 0;
    }
    .phone-link:hover { background: rgba(198, 164, 63, 0.2); opacity: 1; }
    .phone-link .phone-text { display: none; }
    .phone-link i { font-size: 0.82rem; margin: 0; }

    /* Навигация — выдвижная панель сверху вниз */
    .main-nav {
        display: block;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        border-top: 2px solid rgba(198, 164, 63, 0.2);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }
    .main-nav.active { max-height: 600px; }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 10px 0 0;
    }
    .main-nav li { border-bottom: 1px solid rgba(0, 0, 0, 0.04); }
    .main-nav li a {
        display: block;
        padding: 14px 24px;
        font-size: 0.75rem;
        letter-spacing: 1.5px;
        border-left: 3px solid transparent;
        transition: all 0.2s;
        color: #333;
    }
    .main-nav li a:hover,
    .main-nav li a:active {
        border-left-color: #C6A43F;
        background: rgba(198, 164, 63, 0.05);
        color: #C6A43F;
        padding-left: 30px;
    }
    .main-nav a::after { display: none; }

    /* Телефон внутри открытого меню */
    .mobile-nav-phone {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 16px 24px;
        font-size: 0.82rem;
        font-weight: 700;
        color: #C6A43F;
        text-decoration: none;
        background: rgba(198, 164, 63, 0.04);
        border-top: 1px solid rgba(198, 164, 63, 0.15);
        letter-spacing: 0.5px;
    }
    .mobile-nav-phone i {
        width: 32px; height: 32px;
        background: rgba(198, 164, 63, 0.12);
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        font-size: 0.75rem;
        flex-shrink: 0;
    }

    .lang-current { padding: 6px 10px; }
    .lang-dropdown { margin-left: 0; }
    .header-right { gap: 7px; }
}

@media (max-width: 480px) {
    .logo-sub { display: none; }
    .logo-main { font-size: 0.9rem; letter-spacing: 2px; }
    .header-inner { height: 60px; }
    .main-nav { top: 60px; }
}

/* ============================================================
   HERO (АДАПТИВНЫЙ)
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--marble) 0%, var(--white-lux) 100%);
    padding-top: 70px;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
}
.hero-badge {
    font-size: 0.6rem;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 15px;
}
.hero-title {
    margin-bottom: 15px;
}
.hero-subtitle {
    font-size: 0.85rem;
    color: var(--grey-text);
    margin-bottom: 30px;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}
.stat-item { text-align: center; }
.stat-number { font-size: 1.3rem; font-weight: 700; color: var(--gold); display: block; }
.stat-label { font-size: 0.6rem; color: var(--grey-light); text-transform: uppercase; letter-spacing: 1px; }

@media (max-width: 768px) {
    .hero-content { padding: 80px 15px 40px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-stats { gap: 15px; }
    .hero-stats .stat-item { min-width: 80px; }
}

/* ============================================================
   PARTNERS
   ============================================================ */
.partners-section { background: var(--white); padding: 40px 0; }
.partners-header { text-align: center; margin-bottom: 30px; }
.partners-title { font-size: 0.7rem; letter-spacing: 2px; color: var(--grey-light); }
.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}
.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 50px;
}
.partner-item img {
    max-width: 90px;
    max-height: 35px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}
.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--white); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.about-text .section-tag { margin-bottom: 10px; }
.about-description { font-size: 0.9rem; color: var(--grey-text); line-height: 1.7; margin-bottom: 25px; }

.about-stats {
    display: flex;
    gap: 20px;
    margin: 25px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}
.about-stat { flex: 1; text-align: center; }
.about-stat .stat-number { font-size: 1.3rem; color: var(--gold); }
.about-stat .stat-label { font-size: 0.6rem; color: var(--grey-light); }

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.8rem;
    color: var(--grey-text);
    border-bottom: 1px solid var(--border-light);
}
.about-quote {
    font-size: 0.9rem;
    padding: 20px;
    background: var(--marble);
    border-left: 3px solid var(--gold);
    margin: 25px 0;
}
.about-image { position: relative; }
.about-image img { width: 100%; height: auto; box-shadow: var(--shadow-md); }
.gold-seal {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--gold);
    color: var(--white);
    padding: 10px 15px;
    font-size: 0.6rem;
    text-align: center;
}

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .gold-seal { position: static; margin-top: 15px; display: inline-block; }
    .about-stats { flex-direction: column; gap: 10px; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--white-lux); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.service-card {
    background: var(--white);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}
.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-dim);
    box-shadow: var(--shadow-lg);
}
.service-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 15px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { font-size: 0.8rem; color: var(--grey-text); }
.service-link {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
}

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; gap: 20px; }
    .service-card { padding: 25px 20px; }
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio { background: var(--white); }
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}
.property-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.property-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.property-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.property-card:hover .property-image img { transform: scale(1.05); }
.property-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gold);
    color: var(--white);
    padding: 4px 10px;
    font-size: 0.55rem;
    letter-spacing: 1px;
}
.card-info { padding: 20px; }
.location { font-size: 0.65rem; color: var(--gold); text-transform: uppercase; margin-bottom: 5px; }
.card-info h3 { font-size: 1rem; margin-bottom: 5px; }
.price { font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
}
.features span {
    font-size: 0.65rem;
    padding: 3px 8px;
    background: var(--marble);
}

@media (max-width: 768px) {
    .property-grid { grid-template-columns: 1fr; }
    .property-image { height: 200px; }
}

/* ============================================================
   VIDEO + FEATURES
   ============================================================ */
.video-features { background: var(--white-lux); }
.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}
.video-wrapper video { width: 100%; display: block; }
.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
}
.play-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gold);
}
.play-text {
    color: white;
    font-size: 0.7rem;
    letter-spacing: 2px;
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 12px;
    border-radius: 20px;
}
.feature-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
}
.feature-icon {
    width: 45px;
    height: 45px;
    background: var(--marble);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--gold);
}
.feature-text h4 { font-size: 0.9rem; margin-bottom: 5px; }
.feature-text p { font-size: 0.75rem; color: var(--grey-text); }

@media (max-width: 900px) {
    .video-grid { grid-template-columns: 1fr; gap: 30px; }
    .play-btn { width: 50px; height: 50px; font-size: 1rem; }
}

/* ============================================================
   FORMS
   ============================================================ */
.forms-section { background: var(--white); }
.forms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}
.form-card {
    background: var(--white);
    padding: 25px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}
.form-card:hover {
    border-color: var(--gold-dim);
    box-shadow: var(--shadow-md);
}
.form-card h3 { font-size: 1.1rem; margin-bottom: 5px; }
.form-card > p { font-size: 0.75rem; color: var(--grey-text); margin-bottom: 20px; }
.form-group { margin-bottom: 15px; }
.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    background: var(--white);
    border: 1px solid var(--border-light);
    font-size: 0.75rem;
    border-radius: 8px;
}
.form-card button { width: 100%; margin-top: 5px; }

.messengers-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 15px 20px;
    background: var(--marble);
    border-radius: 40px;
    flex-wrap: wrap;
}
.messengers-label { font-size: 0.7rem; color: var(--grey-text); }
.messenger-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
}
.messenger-badge.tg {
    border: 1px solid rgba(41, 182, 246, 0.3);
    color: #26A5E4;
}
.messenger-badge.wa {
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25D366;
}
.privacy-note {
    text-align: center;
    margin-top: 30px;
    padding: 12px 20px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 40px;
    font-size: 0.65rem;
    color: var(--grey-text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .forms-grid { gap: 20px; }
    .form-card { padding: 20px; }
    .messengers-row { flex-direction: column; border-radius: 30px; }
    .privacy-note { flex-direction: column; gap: 8px; border-radius: 20px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--white-lux); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}
.testimonial-card {
    background: var(--white);
    padding: 25px;
    border: 1px solid var(--border-light);
    position: relative;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 3rem;
    color: var(--gold-dim);
}
.testimonial-text {
    font-size: 0.85rem;
    color: var(--grey-text);
    line-height: 1.6;
    margin: 20px 0 15px;
    font-style: italic;
}
.testimonial-author strong { display: block; font-size: 0.85rem; color: var(--dark); }
.testimonial-author span { font-size: 0.65rem; color: var(--grey-light); }
.stars { color: var(--gold); font-size: 0.65rem; letter-spacing: 2px; }

@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-card { padding: 20px; }
}

/* ============================================================
   SOCIAL SECTION
   ============================================================ */
.social-section { background: var(--white); }
.social-grid {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: var(--white);
    border: 1px solid var(--border-light);
    text-decoration: none;
    transition: var(--transition);
    min-width: 90px;
}
.social-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}
.social-icon { font-size: 1.3rem; color: var(--gold); }
.social-card span { font-size: 0.65rem; color: var(--dark); }

/* ── ДЗЕН SVG ИКОНКА ── */
.dzen-svg {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    flex-shrink: 0;
}
.social-icon.dzen-svg {
    width: 1.3rem;
    height: 1.3rem;
}
.footer-social .dzen-svg {
    width: 1rem;
    height: 1rem;
}
.footer-bottom-link .dzen-svg {
    width: 0.75rem;
    height: 0.75rem;
    transition: all 0.3s ease;
}

@media (max-width: 550px) {
    .social-grid { gap: 10px; }
    .social-card { padding: 12px 15px; min-width: 75px; }
    .social-icon { font-size: 1.1rem; }
    .social-icon.dzen-svg { width: 1.1rem; height: 1.1rem; }
}

/* ============================================================
   FOOTER
   ============================================================ */
/* ============================================================
   FOOTER — УВЕЛИЧЕННЫЙ ШРИФТ И ЕДИНЫЙ СТИЛЬ
   ============================================================ */

.main-footer {
    background: var(--white);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-light);
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* Общие стили для всех заголовков футера */
.footer-brand h4,
.footer-contact h4,
.footer-license h4,
.footer-links h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 600;
}

/* Общие стили для всех ссылок и текста футера */
.footer-brand p,
.footer-contact a,
.footer-license p,
.footer-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--grey-text);
}

/* Логотип в футере */
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.footer-logo span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: var(--grey-light);
    letter-spacing: 2px;
    margin-top: 5px;
}

.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 1.5px;
    margin: 15px 0 20px;
    font-weight: 500;
}

/* Социальные иконки */
.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    color: var(--dark);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    text-decoration: none;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

/* Контакты */
.footer-contact a,
.footer-license p,
.footer-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 14px;
    transition: var(--transition);
}

.footer-contact a i {
    width: 24px;
    color: var(--gold);
    font-size: 0.9rem;
}

.footer-contact a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-address {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
    font-size: 0.85rem;
    color: var(--grey-text);
}

.footer-address i {
    color: var(--gold);
}

/* Лицензия */
.footer-license p {
    display: block;
    margin-bottom: 10px;
}

.footer-license p strong {
    color: var(--gold);
}

.footer-cert {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.cert-badge {
    display: inline-block;
    font-size: 0.7rem;
    padding: 6px 14px;
    background: var(--marble);
    color: var(--gold-dark);
    border-radius: 30px;
    font-weight: 500;
}

/* Ссылки */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    display: inline-block;
    padding: 0;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

/* Нижняя часть футера */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    margin-top: 20px;
}

.footer-copyright p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: var(--grey-lighter);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    background: rgba(198, 164, 63, 0.03);
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.footer-bottom-links:hover {
    background: rgba(198, 164, 63, 0.06);
}

.footer-bottom-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--grey-light);
    padding: 8px 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.footer-bottom-link i {
    font-size: 0.85rem;
}

/* Цвета при наведении */
.footer-bottom-link.tg-link:hover {
    background: linear-gradient(135deg, #26A5E4, #1E8BC4);
    color: white;
    transform: translateY(-2px);
}
.footer-bottom-link.wa-link:hover {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    transform: translateY(-2px);
}
.footer-bottom-link.yt-link:hover {
    background: linear-gradient(135deg, #FF0000, #CC0000);
    color: white;
    transform: translateY(-2px);
}
.footer-bottom-link.dzen-link:hover {
    background: linear-gradient(135deg, #1A1A1A, #2D2D2D);
    color: white;
    transform: translateY(-2px);
}

/* Золотой разделитель */
.separator-gold {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}

/* Адаптивность */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }
    
    .footer-contact a {
        justify-content: center;
    }
    
    .footer-address {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        padding: 10px 20px;
        gap: 12px;
    }
    
    .separator-gold {
        display: none;
    }
}

@media (max-width: 550px) {
    .footer-bottom-link span {
        display: none;
    }
    
    .footer-bottom-link {
        padding: 8px 12px;
    }
    
    .footer-bottom-link i {
        font-size: 1rem;
        margin: 0;
    }
    
    .footer-bottom-links {
        gap: 8px;
        background: none;
        padding: 0;
    }
}
/* ============================================================
   АНИМАЦИИ
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Вспомогательные классы */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ============================================================
   БОКОВОЕ МОБИЛЬНОЕ МЕНЮ
   ============================================================ */

/* Затемнение фона */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Боковая панель меню */
.mobile-nav-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: white;
    z-index: 1999;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-nav-sidebar.active {
    right: 0;
}

/* Заголовок меню */
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(198, 164, 63, 0.15);
    background: white;
}

.mobile-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.mobile-logo .logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.mobile-logo .logo-main span {
    color: #C6A43F;
}

.mobile-logo .logo-sub {
    font-size: 0.45rem;
    letter-spacing: 2px;
    color: #999;
    margin-top: 2px;
}

.mobile-nav-close {
    width: 36px;
    height: 36px;
    background: rgba(198, 164, 63, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #333;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: #C6A43F;
    color: white;
}

/* Ссылки меню */
.mobile-nav-menu {
    flex: 1;
    padding: 20px;
}

.mobile-nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li {
    margin-bottom: 5px;
}

.mobile-nav-menu a {
    display: block;
    padding: 14px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-nav-menu a:hover {
    background: rgba(198, 164, 63, 0.08);
    color: #C6A43F;
    padding-left: 24px;
}

/* Контакты в меню */
.mobile-nav-contact {
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: white;
}

.mobile-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(198, 164, 63, 0.08);
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    color: #C6A43F;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.mobile-phone i {
    width: 32px;
    height: 32px;
    background: rgba(198, 164, 63, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.mobile-phone:hover {
    background: #C6A43F;
    color: white;
}

.mobile-phone:hover i {
    background: rgba(255, 255, 255, 0.2);
}

/* Переключатель языков в мобильном меню */
.mobile-lang-switch ul {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 10px 0 0;
}

.mobile-lang-switch li {
    margin: 0;
}

.mobile-lang-switch a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 0.7rem;
    font-weight: 500;
    text-decoration: none;
    color: #666;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.mobile-lang-switch a:hover,
.mobile-lang-switch .current-lang a {
    background: #C6A43F;
    color: white;
}

/* Блокировка скролла при открытом меню */
body.menu-open {
    overflow: hidden;
}

/* Десктопная навигация (видна только на больших экранах) */
@media (min-width: 901px) {
    .mobile-nav-overlay,
    .mobile-nav-sidebar,
    .mobile-menu-btn {
        display: none;
    }
    .main-nav {
        display: block;
    }
}

/* Мобильная навигация (скрываем десктопную) */
@media (max-width: 900px) {
    .main-nav {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .phone-link .phone-text {
        display: none;
    }
    .phone-link {
        width: 38px;
        height: 38px;
        background: rgba(198, 164, 63, 0.1);
        border-radius: 8px;
        justify-content: center;
        gap: 0;
    }
    .phone-link i {
        margin: 0;
    }
}

/* ============================================================
   ПРЕМИУМ ФУТЕР — BOTTOM LINKS
   ============================================================ */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(198, 164, 63, 0.15);
    margin-top: 20px;
}

.footer-copyright p {
    font-size: 0.7rem;
    color: var(--grey-lighter);
    letter-spacing: 0.5px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    background: rgba(198, 164, 63, 0.03);
    padding: 8px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.footer-bottom-links:hover {
    background: rgba(198, 164, 63, 0.06);
}

.footer-bottom-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--grey-light);
    padding: 8px 16px;
    border-radius: 30px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.footer-bottom-link i {
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

/* Telegram стиль */
.footer-bottom-link.tg-link:hover {
    background: linear-gradient(135deg, #26A5E4, #1E8BC4);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 182, 246, 0.3);
}

.footer-bottom-link.tg-link:hover i {
    color: white;
}

/* WhatsApp стиль */
.footer-bottom-link.wa-link:hover {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.footer-bottom-link.wa-link:hover i {
    color: white;
}

/* YouTube стиль */
.footer-bottom-link.yt-link:hover {
    background: linear-gradient(135deg, #FF0000, #CC0000);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.footer-bottom-link.yt-link:hover i {
    color: white;
}

/* Дзен стиль */
.footer-bottom-link.dzen-link:hover {
    background: linear-gradient(135deg, #1A1A1A, #2D2D2D);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-bottom-link.dzen-link:hover i {
    color: white;
}

/* Золотой разделитель */
.separator-gold {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}

/* Адаптивность */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        padding: 10px 16px;
        gap: 10px;
    }
    
    .footer-bottom-link {
        padding: 6px 12px;
        font-size: 0.65rem;
    }
    
    .separator-gold {
        display: none;
    }
    
    .footer-bottom-links {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .footer-bottom-link span {
        display: none;
    }
    
    .footer-bottom-link {
        padding: 8px 10px;
    }
    
    .footer-bottom-link i {
        font-size: 0.9rem;
        margin: 0;
    }
    
    .footer-bottom-links {
        gap: 5px;
        background: none;
        padding: 0;
    }
}

/* ============================================================
   ЛОГОТИП В HERO — ПРЕМИАЛЬНЫЙ
   ============================================================ */

/* ============================================================
   HERO ЛОГОТИП — ПРЕМИАЛЬНЫЙ
   ============================================================ */

.hero-logo {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.hero-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(198, 164, 63, 0.2);
}

.hero-logo-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(198, 164, 63, 0.35);
    transition: all 0.3s ease;
}

.hero-logo-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter: drop-shadow(0 0 2px rgba(0,0,0,0.3));
}

.hero-logo-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.hero-logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #1a1a1a;
    line-height: 1.2;
}

.hero-logo-main .gold {
    color: var(--gold);
}

.hero-logo-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 2.5px;
    color: #aaa;
    margin-top: 3px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero-logo {
        padding: 8px 20px;
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .hero-logo-icon {
        width: 45px;
        height: 45px;
    }
    
    .hero-logo-icon img {
        width: 24px;
        height: 24px;
    }
    
    .hero-logo-main {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .hero-logo-sub {
        font-size: 0.45rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 550px) {
    .hero-logo-sub {
        display: none;
    }
    
    .hero-logo {
        padding: 6px 16px;
    }
    
    .hero-logo-icon {
        width: 38px;
        height: 38px;
    }
    
    .hero-logo-icon img {
        width: 20px;
        height: 20px;
    }
    
    .hero-logo-main {
        font-size: 0.85rem;
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero-logo {
        padding: 8px 20px;
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .hero-logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .hero-logo-icon img {
        width: 22px;
        height: 22px;
    }
    
    .hero-logo-main {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .hero-logo-sub {
        font-size: 0.45rem;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 550px) {
    .hero-logo {
        padding: 6px 16px;
    }
    
    .hero-logo-icon {
        width: 34px;
        height: 34px;
    }
    
    .hero-logo-icon img {
        width: 18px;
        height: 18px;
    }
    
    .hero-logo-main {
        font-size: 0.85rem;
    }
    
    .hero-logo-sub {
        display: none;
    }
}

/* ============================================================
   ПРЕМИАЛЬНЫЙ БЛОК СТАТИСТИКИ
   ============================================================ */

.hero-stats-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 50px;
    padding-top: 35px;
    border-top: 1px solid rgba(198, 164, 63, 0.2);
    position: relative;
}

.hero-stats-premium::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stat-premium-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(198, 164, 63, 0.1);
}

.stat-premium-item:hover {
    transform: translateY(-3px);
    border-color: rgba(198, 164, 63, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.stat-premium-icon {
    font-size: 1.8rem;
    min-width: 45px;
    text-align: center;
}

.stat-premium-content {
    text-align: left;
    flex: 1;
}

.stat-premium-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
    margin-bottom: 4px;
}

.stat-premium-number-small {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-left: 8px;
}

.stat-premium-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--grey-text);
    text-transform: uppercase;
    line-height: 1.4;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .hero-stats-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-stats-premium {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 35px;
        padding-top: 25px;
    }
    
    .stat-premium-item {
        padding: 12px 16px;
    }
    
    .stat-premium-icon {
        font-size: 1.5rem;
        min-width: 40px;
    }
    
    .stat-premium-number {
        font-size: 1.3rem;
    }
    
    .stat-premium-number-small {
        font-size: 1rem;
    }
    
    .stat-premium-label {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .hero-stats-premium {
        grid-template-columns: 1fr;
    }
    
    .stat-premium-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .stat-premium-content {
        text-align: center;
    }
}


/* ============================================================
   PARTNERS SECTION — ПРЕМИУМ БЛОК С ЗАСТРОЙЩИКАМИ
   ============================================================ */

.partners-section {
    background: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-light);
}

.partners-header {
    text-align: center;
    margin-bottom: 50px;
}

.partners-header .section-tag {
    font-size: 0.7rem;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: 15px;
}

.partners-title {
    font-size: 0.85rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--grey-text);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

/* Сетка для логотипов */
.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Каждый элемент логотипа */
.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    height: 70px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 5px 10px;
}

/* Стили для всех изображений логотипов */
.partner-item img {
    max-width: 130px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    
    /* Усиленный контраст — делаем логотипы насыщеннее */
    filter: grayscale(100%) brightness(0.9) contrast(1.2);
    opacity: 0.7;
    transition: all 0.3s ease;
}

/* При наведении — цветные и яркие, с эффектом подъёма */
.partner-item:hover {
    transform: translateY(-3px);
    background: rgba(198, 164, 63, 0.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.partner-item:hover img {
    filter: grayscale(0%) brightness(1) contrast(1);
    opacity: 1;
    transform: scale(1.05);
}

/* Особые стили для широких логотипов */
.partner-item img[alt="Dubai Properties"],
.partner-item img[alt="Meraas"] {
    max-width: 140px;
    max-height: 45px;
}

/* Адаптивность */
@media (max-width: 992px) {
    .partners-grid {
        gap: 20px;
    }
    
    .partner-item {
        min-width: 95px;
        height: 65px;
        padding: 4px 8px;
    }
    
    .partner-item img {
        max-width: 110px;
        max-height: 45px;
    }
}

@media (max-width: 768px) {
    .partners-grid {
        gap: 15px;
    }
    
    .partner-item {
        min-width: 85px;
        height: 60px;
    }
    
    .partner-item img {
        max-width: 95px;
        max-height: 40px;
    }
    
    .partner-item img[alt="Dubai Properties"],
    .partner-item img[alt="Meraas"] {
        max-width: 110px;
        max-height: 35px;
    }
    
    .partners-title {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 550px) {
    .partners-grid {
        gap: 10px;
    }
    
    .partner-item {
        min-width: 75px;
        height: 55px;
    }
    
    .partner-item img {
        max-width: 80px;
        max-height: 35px;
    }
    
    .partner-item img[alt="Dubai Properties"],
    .partner-item img[alt="Meraas"] {
        max-width: 95px;
        max-height: 30px;
    }
}


/* ============================================================
   ABOUT — ПРЕМИАЛЬНАЯ СЕКЦИЯ
   ============================================================ */

/* Обновлённая статистика */
.about-stats-premium {
    display: flex;
    gap: 20px;
    margin: 35px 0;
    padding: 25px 0;
    border-top: 1px solid rgba(198, 164, 63, 0.2);
    border-bottom: 1px solid rgba(198, 164, 63, 0.2);
}

.about-stat-premium {
    flex: 1;
    text-align: center;
}

.about-stat-premium .stat-premium-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.about-stat-premium .stat-premium-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--grey-light);
    text-transform: uppercase;
}

/* Обновлённый список достижений */
.about-list-premium {
    list-style: none;
    margin: 30px 0;
}

.about-list-premium li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    font-size: 0.85rem;
    color: var(--grey-text);
    border-bottom: 1px solid rgba(198, 164, 63, 0.1);
}

.about-list-premium li:last-child {
    border-bottom: none;
}

.about-list-premium .list-icon {
    width: 28px;
    height: 28px;
    background: rgba(198, 164, 63, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--gold);
    flex-shrink: 0;
}

/* Обновлённая цитата */
.about-quote-premium {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--dark);
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--marble) 0%, var(--white) 100%);
    border-left: 3px solid var(--gold);
    margin: 30px 0;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -12px;
    left: 20px;
    font-size: 1.2rem;
    color: var(--gold);
    background: var(--white);
    padding: 0 8px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .about-stats-premium {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
    }
    
    .about-stat-premium .stat-premium-number {
        font-size: 1rem;
    }
    
    .about-list-premium li {
        padding: 10px 0;
        font-size: 0.8rem;
    }
    
    .about-quote-premium {
        font-size: 0.85rem;
        padding: 20px 25px;
    }
}

.hero-stats-tag {
    text-align: center;
    margin-bottom: 20px;
    padding-top: 10px;
}

.stats-tag-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 500;
}

/* ============================================================
   СТАТИСТИКА В ОДНУ ЛИНИЮ
   ============================================================ */

.hero-stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(198, 164, 63, 0.2);
}

.stat-row-item {
    text-align: center;
    flex-shrink: 0;
}

.stat-row-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
    margin-bottom: 5px;
    white-space: nowrap;
}

.stat-row-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--grey-text);
    text-transform: uppercase;
    white-space: nowrap;
}

.stat-row-divider {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.6;
    flex-shrink: 0;
}

/* Адаптивность — на мобильных делаем перенос */
@media (max-width: 1100px) {
    .hero-stats-row {
        flex-wrap: wrap;
        gap: 20px 25px;
    }
    
    .stat-row-divider {
        display: none;
    }
    
    .stat-row-item {
        flex: 1;
        min-width: 160px;
    }
    
    .stat-row-number {
        white-space: normal;
    }
    
    .stat-row-label {
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .hero-stats-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-row-item {
        min-width: auto;
        width: 100%;
        border-bottom: 1px solid rgba(198, 164, 63, 0.1);
        padding-bottom: 12px;
    }
    
    .stat-row-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}