/* ===== 1. ПЕРЕМЕННЫЕ ===== */
:root {
    --orange: #FF6600;
    --blue: #0B50C3;
    --dark: #0B2250;
    --text-gray: #4B5563;
    --font-main: 'Outfit', sans-serif;
}

/* ===== 2. БАЗОВЫЙ СБРОС ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--dark);
    background-color: #FFFFFF;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== 3. ШАПКА ===== */
.header {
    padding: 20px 0;
    background: #FFFFFF;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
}

.logo img {
    width: 32px;
    height: 32px;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav__link {
    font-weight: 500;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.nav__link:hover {
    color: var(--orange);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
}

.login-btn:hover {
    color: var(--blue);
}

.btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn--orange {
    background: var(--orange);
    color: #FFFFFF;
}

.btn--orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.2);
}

.btn--full {
    width: 100%;
    margin-top: 10px;
}

.btn-outline {
    padding: 12px 24px;
    border-radius: 100px;
    border: 1.5px solid var(--blue);
    color: var(--blue);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--blue);
    color: #FFFFFF;
}

.text-blue {
    color: var(--blue);
}

.btn-outline-full {
    width: 100%;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    background: transparent;
    border: 1.5px solid var(--blue);
    color: var(--blue);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.btn-outline-full:hover {
    background: var(--blue);
    color: #FFFFFF;
}

.btn-ghost-full {
    width: 100%;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    background: transparent;
    border: none;
    color: var(--dark);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 5px;
}

.btn-ghost-full:hover {
    background: #F3F4F6;
}

.btn--green {
    background: #00C853;
    color: #FFFFFF;
    width: 100%;
    margin-top: 16px;
}

.btn--green:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 200, 83, 0.2);
}

/* ===== 4. ГЛАВНЫЙ ЭКРАН (Hero) ===== */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    margin: 0 20px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: bgZoomOut 5s ease-out forwards;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 12, 10, 0.9) 0%, rgba(15, 12, 10, 0.1) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
}

@keyframes bgZoomOut {
    from {
        transform: scale(1.3);
    }

    to {
        transform: scale(1);
    }
}

.hero__info {
    max-width: 800px;
    color: #FFFFFF;
}

.text-orange {
    color: var(--orange);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    backdrop-filter: blur(10px);
    margin-bottom: 24px;
}

.hero__badge .dot {
    width: 8px;
    height: 8px;
    background: #00C853;
    border-radius: 50%;
}

.hero__title {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.5;
}

/* ===== 5. БЛОК ПОИСКА И ПЛАШКИ ===== */
.search-box {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 40px;
    max-width: 800px;
    color: var(--dark);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.search-box__tabs {
    display: flex;
    background-color: #F4F6F8;
    padding: 6px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.tab {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-gray);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab.active {
    background-color: var(--blue);
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(11, 80, 195, 0.2);
}

.tab:not(.active):hover {
    color: var(--dark);
    background-color: #EAECEF;
}

.search-box__form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.input-group input {
    border: none;
    outline: none;
    font-family: var(--font-main);
    font-size: 16px;
    width: 100%;
    color: var(--dark);
    background: transparent;
}

.input-group span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.divider {
    width: 1px;
    height: 32px;
    background-color: #E5E7EB;
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
}

.hero__features {
    display: flex;
    gap: 20px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    padding: 16px 20px;
    border-radius: 12px;
    color: var(--dark);
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-text strong {
    font-size: 16px;
}

.feature-text span {
    font-size: 12px;
    color: var(--text-gray);
}

.hero__badge,
.hero__title,
.hero__subtitle,
.search-box,
.hero__features {
    opacity: 0;
    animation: fadeUp 0.8s ease-out forwards;
}

.hero__badge {
    animation-delay: 0.5s;
}

.hero__title {
    animation-delay: 0.7s;
}

.hero__subtitle {
    animation-delay: 0.9s;
}

.search-box {
    animation-delay: 1.1s;
}

.hero__features {
    animation-delay: 1.3s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== 6. КАРТОЧКИ НЕДВИЖИМОСТИ ===== */
.properties {
    padding: 100px 20px;
}

.properties__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.subtitle-blue {
    color: var(--blue);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.properties__title-block h2 {
    font-size: 36px;
    color: var(--dark);
}

.properties__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.property-card {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(11, 34, 80, 0.08);
}

.property-card__img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.property-card__img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-card__img-wrapper img {
    transform: scale(1.08);
}

.card-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.card-badges--static {
    position: static;
    top: auto;
    left: auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.badge img {
    width: 14px;
    height: 14px;
}

.badge--orange {
    background: rgba(255, 102, 0, 0.1);
    color: #FF6600;
}

.badge--green {
    background: rgba(0, 200, 83, 0.1);
    color: #00C853;
    border: 1px solid rgba(0, 200, 83, 0.2);
}

.badge--green img {
    filter: brightness(0) saturate(100%) invert(48%) sepia(99%) saturate(4051%) hue-rotate(128deg) brightness(97%) contrast(101%);
}

.badge--blue {
    background: rgba(11, 80, 195, 0.1);
    color: var(--blue);
}

.badge-micro {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 100px;
    margin-left: 8px;
    background: rgba(0, 200, 83, 0.1);
    color: #00C853;
}

.badge-micro img {
    width: 10px;
    height: 10px;
    filter: brightness(0) saturate(100%) invert(48%) sepia(99%) saturate(4051%) hue-rotate(128deg) brightness(97%) contrast(101%);
}

.heart-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #FFFFFF;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.3s, transform 0.2s;
    z-index: 2;
}

.heart-btn:hover {
    color: #FF3B30;
    transform: scale(1.1);
}

.property-card__content {
    padding: 20px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.price span {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 400;
}

.property-card__content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--dark);
}

.location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.amenities {
    display: flex;
    gap: 16px;
    border-top: 1px solid #E5E7EB;
    padding-top: 16px;
}

.amenities span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
}

/* ===== 7. КАК ЭТО РАБОТАЕТ ===== */
.process {
    padding: 80px 20px;
}

.process__header {
    text-align: center;
    margin-bottom: 60px;
}

.process__header h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 12px;
}

.process__header p {
    color: var(--text-gray);
    font-size: 18px;
}

.process__steps {
    display: flex;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.process__line {
    position: absolute;
    top: 48px;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background: linear-gradient(to right, #0B50C3 0%, #00C853 33%, #FF6600 66%, #0B50C3 100%);
    z-index: 1;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 16px;
}

.step__icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 24px auto;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step__icon--blue {
    background-color: #EBF2FF;
}

.step__icon--green {
    background-color: #E8F7ED;
}

.step__icon--orange {
    background-color: #FFF0E5;
}

.step__icon img {
    width: 40px;
    height: 40px;
}

.step__number {
    position: absolute;
    top: 48px;
    right: 0;
    transform: translate(50%, -50%);
    width: 32px;
    height: 32px;
    background-color: var(--blue);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    z-index: 3;
}

.step__number--last {
    right: 20%;
}

.step h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 12px;
}

.step p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===== 8. СКАЧАТЬ ПРИЛОЖЕНИЕ ===== */
.download-app {
    background-color: #F4F7F9;
    padding: 80px 0;
    overflow: hidden;
}

.download-app__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.download-app__content {
    flex: 1;
    max-width: 550px;
}

.download-app__content h2 {
    font-size: 48px;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.download-app__content p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.app-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon--green {
    background-color: #E8F7ED;
}

.stat-icon--blue {
    background-color: #EBF2FF;
}

.stat-icon--orange {
    background-color: #FFF0E5;
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-text strong {
    font-size: 20px;
    color: var(--dark);
    line-height: 1.2;
}

.stat-text span {
    font-size: 13px;
    color: var(--text-gray);
}

.app-buttons {
    display: flex;
    gap: 20px;
}

.btn-app {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--blue);
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-app:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(11, 80, 195, 0.25);
}

.btn-app__text {
    display: flex;
    flex-direction: column;
}

.btn-app__text span {
    font-size: 11px;
    opacity: 0.8;
    line-height: 1;
    margin-bottom: 4px;
}

.btn-app__text strong {
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
}

.download-app__image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.download-app__image img {
    max-width: 100%;
    animation: floatPhone 4s ease-in-out infinite;
}

@keyframes floatPhone {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ===== 9. СИНЯЯ ПАНЕЛЬ СТАТИСТИКИ ===== */
.blue-stats {
    background-color: var(--blue);
    padding: 60px 0;
    margin-top: 0;
}

.blue-stats__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #FFFFFF;
    text-align: center;
    flex: 1;
    position: relative;
}

.stat-box:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.stat-box__icon {
    width: 64px;
    height: 64px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.stat-box__num {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-box__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.stat-box__desc {
    font-size: 14px;
    opacity: 0.8;
}

/* ===== 10. КАТАЛОГ И РАЗДЕЛИТЕЛИ ===== */
.section-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-gray);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 80px 0 40px;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px dashed #D1D5DB;
}

.section-divider::before {
    margin-right: 24px;
}

.section-divider::after {
    margin-left: 24px;
}

.catalog {
    padding: 40px 20px 100px;
}

.catalog__header {
    margin-bottom: 40px;
}

.catalog__title {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 8px;
}

.catalog__subtitle {
    font-size: 16px;
    color: var(--text-gray);
}

.catalog__layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.sidebar {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 24px;
    height: fit-content;
}

.sidebar__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E5E7EB;
}

.sidebar__title {
    font-weight: 600;
    font-size: 18px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar__clear {
    font-size: 14px;
    color: var(--blue);
    font-weight: 600;
    cursor: pointer;
}

.filter-group {
    margin-bottom: 24px;
}

.filter-group__label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.filter-group__label-row h4 {
    font-size: 16px;
    color: var(--dark);
    margin: 0;
}

.custom-radio {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 12px;
    cursor: pointer;
}

.custom-radio input {
    display: none;
}

.radio-mark {
    width: 18px;
    height: 18px;
    border: 2px solid #D1D5DB;
    border-radius: 50%;
    position: relative;
    transition: all 0.2s;
}

.custom-radio input:checked+.radio-mark {
    border-color: var(--blue);
}

.custom-radio input:checked+.radio-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--blue);
    border-radius: 50%;
}

.slider-mock {
    padding: 10px 0;
}

.slider-track {
    height: 4px;
    background: #E5E7EB;
    border-radius: 2px;
    position: relative;
    margin-bottom: 16px;
}

.slider-mock.single-thumb .slider-fill-blue {
    position: absolute;
    left: 0;
    width: 25%;
    height: 100%;
    background: var(--blue);
    border-radius: 2px 0 0 2px;
}

.slider-mock.single-thumb .slider-fill-green {
    position: absolute;
    left: 25%;
    width: 75%;
    height: 100%;
    background: #00C853;
    border-radius: 0 2px 2px 0;
}

.slider-mock.single-thumb .slider-thumb.left {
    width: 16px;
    height: 16px;
    background: #FFFFFF;
    border: 2px solid var(--blue);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    left: 25%;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 500;
}

.catalog__topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 16px 24px;
    margin-bottom: 32px;
}

.showing {
    font-size: 14px;
    color: var(--text-gray);
}

.showing strong {
    color: var(--dark);
    font-weight: 700;
}

.sort-box {
    display: flex;
    align-items: center;
    gap: 24px;
}

.sort-label {
    font-size: 14px;
    color: var(--text-gray);
}

.sort-label strong {
    color: var(--dark);
    font-weight: 600;
    cursor: pointer;
}

.view-toggles {
    display: flex;
    gap: 8px;
}

.view-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #F3F4F6;
    border-radius: 8px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.view-btn.active {
    background: var(--blue);
    color: #FFFFFF;
}

.catalog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.map-placeholder {
    background: #F4F7F9;
    border-radius: 16px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-gray);
}

.map-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--dark);
}

.map-text {
    font-size: 14px;
}


/* ===== 11. СТРАНИЦА ОПИСАНИЯ (PROPERTY DETAILS) ===== */
.property-details {
    margin-bottom: 80px;
}

.gallery {
    position: relative;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 40px;
}

.gallery__main {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery__top-actions {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.gallery__btn-group {
    display: flex;
    gap: 12px;
}

.icon-btn-round {
    width: 44px;
    height: 44px;
    background: #FFFFFF;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.icon-btn-round:hover {
    transform: scale(1.05);
    color: var(--blue);
}

.gallery__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.gallery__arrow:hover {
    background: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery__arrow.left {
    left: 24px;
}

.gallery__arrow.right {
    right: 24px;
}

.gallery__thumbs {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.4);
    padding: 8px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.thumb {
    width: 64px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.thumb.active,
.thumb:hover {
    border-color: var(--blue);
    transform: scale(1.05);
}

.details-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
}

.details__title {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.2;
}

.details__location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 24px;
}

.details__price-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.details__price-wrap .price {
    margin-bottom: 0;
    font-size: 32px;
}

.tag {
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
}

.tag--outline {
    border: 1px solid #E5E7EB;
    color: var(--dark);
}

.highlights-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F9FAFB;
    border-radius: 16px;
    padding: 24px 32px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: #FFFFFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.highlight-text {
    display: flex;
    flex-direction: column;
}

.highlight-text strong {
    font-size: 20px;
    color: var(--dark);
    line-height: 1.2;
}

.highlight-text span {
    font-size: 13px;
    color: var(--text-gray);
}

.divider-y {
    width: 1px;
    height: 40px;
    background: #E5E7EB;
}

.details__section {
    margin-bottom: 40px;
}

.details__section h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 20px;
}

.details__section p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 16px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #F9FAFB;
    padding: 16px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 14px;
    color: var(--dark);
}

.map-large {
    height: 400px;
}

.details-sidebar {
    position: sticky;
    top: 24px;
    align-self: start;
}

.agent-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.agent-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.agent-avatar {
    width: 64px;
    height: 64px;
    background: #EBF2FF;
    color: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.agent-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

.agent-role {
    font-size: 14px;
    color: var(--text-gray);
}

/* ===== 12. ПОХОЖИЕ ОБЪЕКТЫ ===== */
.similar-properties {
    margin-bottom: 80px;
}

.similar-title {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 32px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* ===== 13. POST PROPERTY ===== */
.post-property {
    margin-bottom: 100px;
}

.post-property__header {
    text-align: center;
    margin-bottom: 40px;
}

.post-property__header h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 12px;
}

.post-property__header p {
    color: var(--text-gray);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.pp-timeline {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 40px;
}

.pp-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
}

.pp-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pp-step.active {
    color: var(--dark);
    font-weight: 700;
}

.pp-step.active .pp-step-icon {
    background: var(--blue);
}

.pp-form {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.pp-form h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #D1D5DB;
}

.pp-type-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.pp-type-card {
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--dark);
    font-weight: 600;
    font-size: 15px;
}

.pp-type-card:hover {
    border-color: var(--blue);
}

.pp-type-card.active {
    border-color: var(--blue);
    background: #EBF2FF;
    color: var(--blue);
}

.pp-inputs-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.pp-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pp-input-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.pp-input-group input,
.pp-input-group textarea {
    padding: 16px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    font-family: var(--font-main);
    font-size: 15px;
    color: var(--dark);
    outline: none;
    transition: border 0.2s;
    background: #F9FAFB;
}

.pp-input-group input:focus,
.pp-input-group textarea:focus {
    border-color: var(--blue);
    background: #FFFFFF;
}

.pp-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #E5E7EB;
    padding-top: 24px;
}

.pp-back {
    color: var(--text-gray);
    font-weight: 500;
    cursor: pointer;
}

.pp-back:hover {
    color: var(--dark);
}

/* ===== 14. ИДЕАЛЬНЫЙ DASHBOARD ===== */
.dashboard-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.dashboard-sidebar {
    background: #FFFFFF;
    border-radius: 24px;
    border: 1px solid #E5E7EB;
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 24px;
}

.dash-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E5E7EB;
    margin-bottom: 24px;
    position: relative;
}

.dash-profile-info h4 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 4px;
}

.dash-profile-info span {
    font-size: 12px;
    color: var(--text-gray);
}

.dash-bell {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
}

/* Навигация слева */
.dash-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
}

.dash-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    color: var(--text-gray);
    font-weight: 500;
    transition: all 0.2s;
}

.dash-link img {
    width: 20px;
    height: 20px;
    opacity: 0.6;
}

.dash-link:hover {
    background: #F3F4F6;
    color: var(--dark);
}

.dash-link.active {
    background: var(--blue);
    color: #FFFFFF;
}

.dash-link.active img {
    opacity: 1;
}

.dash-badge {
    margin-left: auto;
    background: #FFF0E5;
    color: var(--orange);
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.dash-logout {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-gray);
    font-weight: 500;
    border-top: 1px solid #E5E7EB;
    margin-top: 20px;
    cursor: pointer;
}

.dash-logout:hover {
    color: #FF3B30;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.dashboard-header h2 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 8px;
}

.dashboard-header p {
    font-size: 16px;
    color: var(--text-gray);
}

.dashboard__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.stat-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.stat-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card__value {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.stat-card__label {
    font-size: 14px;
    color: var(--text-gray);
}

/* СПИСОК "MY LISTINGS" (Вертикальные кнопки) */
.dashboard__listings {
    margin-bottom: 60px;
    background: #FFFFFF;
    padding: 32px;
    border-radius: 24px;
    border: 1px solid #E5E7EB;
}

.listings__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 1px solid #E5E7EB;
    padding-bottom: 16px;
}

.listings__header h3 {
    font-size: 20px;
    color: var(--dark);
}

.listings__header a {
    font-size: 14px;
    color: var(--blue);
    font-weight: 600;
}

.listing-item {
    border-bottom: 1px solid #E5E7EB;
    padding: 24px 0;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.listing-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.listing-item>img {
    width: 160px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
}

.listing-item__info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.listing-item__info h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 4px;
}

.listing-loc {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.listing-item__price {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.listing-item__price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-gray);
    margin-left: 4px;
}

.listing-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
}

.listing-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.listing-meta img {
    width: 16px;
    height: 16px;
}

.listing-badge {
    background: rgba(0, 200, 83, 0.1);
    color: #00C853;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: lowercase;
}

/* Вертикальная колонка кнопок справа */
.listing-item__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.actions-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.action-btn {
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.action-btn:hover {
    transform: scale(1.1);
}

.action-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.dashboard__performance h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 24px;
}

.performance__chart-placeholder {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-gray);
}

/* ===== 15. ABOUT US ===== */
.about {
    margin-bottom: 100px;
}

.about__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: center;
}

.about__content h2 {
    font-size: 40px;
    color: var(--dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about__content p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.about__tags {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--dark);
    font-size: 14px;
    background: #F9FAFB;
    padding: 12px 16px;
    border-radius: 12px;
}

.about-tag img {
    width: 20px;
    height: 20px;
}

.about__image-wrap {
    position: relative;
    border-radius: 24px;
    height: 100%;
    min-height: 400px;
}

.about__main-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
}

.about__floating-badge {
    position: absolute;
    bottom: 32px;
    left: -32px;
    background: #FFFFFF;
    padding: 20px 32px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about__floating-badge strong {
    font-size: 28px;
    color: var(--blue);
    font-weight: 700;
    line-height: 1;
}

.about__floating-badge span {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
    margin-top: 4px;
}

.about__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-feature-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s;
}

.about-feature-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-feature-icon {
    width: 64px;
    height: 64px;
    background: #EBF2FF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.about-feature-icon img {
    width: 32px;
    height: 32px;
}

.about-feature-card h4 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 12px;
}

.about-feature-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===== 16. СЕКЦИЯ: OUR JOURNEY (TIMELINE) ===== */
.journey {
    margin-bottom: 100px;
}

.journey-header {
    text-align: center;
    margin-bottom: 60px;
}

.journey-header h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 12px;
}

.journey-header p {
    font-size: 18px;
    color: var(--text-gray);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #E5E7EB;
    transform: translateX(-50%);
}

.timeline-item {
    width: 50%;
    padding: 0 40px;
    position: relative;
    margin-bottom: 40px;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 24px;
    width: 16px;
    height: 16px;
    background: var(--blue);
    border: 4px solid #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #EBF2FF;
}

.timeline-item.left::after {
    right: -8px;
}

.timeline-item.right::after {
    left: -8px;
}

.timeline-content {
    background: #FFFFFF;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: inline-block;
    width: 100%;
    text-align: left;
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
}

.timeline-content h4 {
    font-size: 24px;
    margin-bottom: 8px;
}

.timeline-content strong {
    font-size: 18px;
    color: var(--dark);
    display: block;
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* ===== 17. СЕКЦИЯ: MEET OUR TEAM ===== */
.team-section {
    margin-bottom: 100px;
}

.team-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: #F9FAFB;
    border-radius: 24px;
    padding: 60px;
}

.team-text h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 24px;
}

.team-text p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.team-image img:hover {
    transform: scale(1.02);
}

/* ===== 18. СЕКЦИЯ: CONTACT US ===== */
.contact-section {
    margin-bottom: 100px;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 36px;
    color: var(--dark);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

.contact-form {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.contact-form h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 24px;
}

.contact-tags {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.contact-tag {
    padding: 12px 20px;
    border: 1px solid #E5E7EB;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.contact-tag:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.contact-tag.active {
    background: #EBF2FF;
    color: var(--blue);
    border-color: var(--blue);
}

.contact-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.full-width {
    grid-column: 1 / -1;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card-blue {
    background: var(--blue);
    color: #FFFFFF;
    border-radius: 24px;
    padding: 40px;
}

.contact-card-blue h3 {
    font-size: 20px;
    margin-bottom: 32px;
}

.c-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.c-info:last-child {
    margin-bottom: 0;
}

.c-info span {
    display: block;
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 4px;
}

.c-info strong {
    font-size: 16px;
    font-weight: 600;
}

.contact-card-white {
    background: #F9FAFB;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #E5E7EB;
}

.contact-card-white h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 24px;
}

.office-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.office-item strong {
    font-size: 16px;
    color: var(--dark);
    display: block;
    margin-bottom: 4px;
}

.office-item p {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 8px;
    line-height: 1.4;
}

.office-item span {
    font-size: 13px;
    font-weight: 600;
}

.social-follow {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #E5E7EB;
}

.social-follow span {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    display: block;
    margin-bottom: 16px;
}

/* ИСПРАВЛЕННЫЕ СОЦСЕТИ */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #E5E7EB;
    border-radius: 50%;
    background: #FFFFFF;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    border-color: var(--blue);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(11, 80, 195, 0.1);
}

.social-icons img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

/* ===== 19. ФИНАЛЬНЫЙ ПОДВАЛ (FOOTER) ===== */
/* ИСПРАВЛЕНО: Точный темно-синий цвет из макета */
.footer {
    background: #0B1727;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 20px 40px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.brand-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 300px;
}

/* ИСПРАВЛЕНО: Белый текст и синий Connect в футере */
.footer-logo {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 700;
}

.footer-logo img {
    width: 32px;
    height: 32px;
}

/* ИСПРАВЛЕНО: Маленькие аккуратные круглые соцсети в футере */
.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--blue);
    transform: translateY(-3px);
}

.footer-socials img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.footer-col h4 {
    color: #FFFFFF;
    margin-bottom: 24px;
    font-size: 18px;
}

.footer-link {
    display: block;
    color: inherit;
    margin-bottom: 16px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 24px;
}

/* ИСПРАВЛЕНО: Интерактивные кликабельные контакты */
.footer-contact-row {
    display: flex;
    gap: 32px;
    align-items: center;
}

.footer-contact-row a {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
    cursor: pointer;
}

.footer-contact-row a:hover {
    color: #FFFFFF;
}

.footer-contact-row a img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.footer-copyright {
    text-align: center;
    font-size: 13px;
    opacity: 0.6;
}