:root {
    --primary: #0A4D8C;
    --primary-dark: #083B6B;
    --primary-light: #3A7BB0;
    --secondary: #5FB0E6;
    --accent: #FFB347;
    --dark: #1A2B3C;
    --gray: #6C757D;
    --light-gray: #E9ECEF;
    --white: #FFFFFF;
    --background: #F8FAFD;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: var(--dark);
    background-color: var(--background);
    width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ========== ХЕДЕР ========== */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray);
    width: 100%;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-title {
    font-weight: 700;
    font-size: 20px;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 4px;
    max-width: 400px;
}

.logo-subtitle {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.2;
}

.header-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2px;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 4px rgba(10, 77, 140, 0.15);
    line-height: 1.2;
    display: inline-block;
    max-width: 180px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.header-contacts {
    display: flex;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--dark);
}

.contact-item i {
    color: var(--primary);
    font-size: 16px;
    width: 18px;
}

/* Навигация */
.navbar {
    padding: 8px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 0;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Выпадающее меню */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 10px;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 1000;
    border: 1px solid var(--light-gray);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-column {
    display: flex;
    flex-direction: column;
}

.dropdown-column a {
    padding: 10px 18px;
    color: var(--dark);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
    white-space: nowrap;
    border-left: 2px solid transparent;
}

.dropdown-column a:hover {
    background: var(--light-gray);
    color: var(--primary);
    border-left-color: var(--primary);
    padding-left: 22px;
}

/* Мобильное меню */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

/* ========== РЕКЛАМНЫЙ СЛАЙДЕР ========== */
.promo-slider {
    background: var(--background);
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray);
}

.promo-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 0 20px;
}

.promo-slider-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    position: relative;
    padding-left: 10px;
    border-left: 4px solid var(--primary);
}

.promo-slider-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.promo-slider-link:hover {
    gap: 10px;
    color: var(--primary-dark);
}

.promo-slider-container {
    position: relative;
    width: 100%;
}

.promo-track-wrapper {
    overflow: hidden;
    border-radius: 12px;
    margin: 0 45px;
}

.promo-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 15px;
}

.promo-slide {
    flex: 0 0 calc(33.333% - 10px);
    min-width: 0;
}

.promo-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.promo-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.promo-card-image {
    position: relative;
    height: 100px;
    overflow: hidden;
}

.promo-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.promo-card:hover .promo-card-image img {
    transform: scale(1.1);
}

.promo-card-content {
    padding: 12px 12px 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.promo-card-content h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
    line-height: 1.3;
}

.promo-card-content p {
    font-size: 11px;
    color: var(--gray);
    margin-bottom: 8px;
    line-height: 1.4;
    flex: 1;
}

.promo-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid var(--light-gray);
    padding-top: 8px;
}

.promo-date {
    font-size: 10px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 3px;
}

.promo-date i {
    color: var(--primary);
    font-size: 9px;
}

.promo-card-btn {
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 3px;
    transition: var(--transition);
}

.promo-card-btn:hover {
    background: var(--primary-dark);
    gap: 6px;
    transform: translateX(2px);
}

.promo-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--primary);
    font-size: 14px;
    z-index: 20;
    opacity: 1;
}

.promo-nav:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(10, 77, 140, 0.3);
}

.promo-prev {
    left: 0;
}

.promo-next {
    right: 0;
}

/* ========== HERO СЕКЦИЯ ========== */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--white) 0%, #F0F7FF 100%);
    width: 100%;
}

.hero-with-news {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: stretch;
}

/* Левая колонка */
.hero-left {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hero-left .hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(10, 77, 140, 0.2);
    white-space: nowrap;
    width: auto;
    max-width: fit-content;
}

.hero-left .hero-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-left .hero-subtitle {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.5;
}

.hero-left .hero-image {
    margin-bottom: 25px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    width: 100%;
}

.hero-left .hero-image img {
    width: 100%;
    height: auto;
    max-height: 330px;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.5s;
}

.hero-left .hero-image:hover img {
    transform: scale(1.02);
}

.hero-left .hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    margin-bottom: 30px;
}

/* Правая колонка - новости */
.hero-right-full {
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--light-gray);
    height: fit-content;
    display: flex;
    flex-direction: column;
    max-height: 630px;
}

.hero-right-full .hero-news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--light-gray);
}

.hero-right-full .hero-news-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.hero-right-full .hero-news-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.hero-right-full .hero-news-link:hover {
    gap: 8px;
    color: var(--primary-dark);
}

.hero-right-full .hero-news-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    padding-right: 5px;
    flex: 1;
}

.hero-right-full .hero-news-item {
    padding: 12px;
    background: var(--background);
    border-radius: 10px;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.hero-right-full .hero-news-item:hover {
    border-left-color: var(--primary);
    background: var(--white);
    box-shadow: var(--shadow);
}

.hero-right-full .hero-news-category {
    display: inline-block;
    background: var(--primary-light);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 500;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.hero-right-full .hero-news-item-title {
    font-size: 14px;
    margin-bottom: 4px;
    line-height: 1.3;
    font-weight: 600;
}

.hero-right-full .hero-news-item-title a {
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.hero-right-full .hero-news-item-title a:hover {
    color: var(--primary);
}

.hero-right-full .hero-news-meta {
    font-size: 10px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero-right-full .hero-news-meta i {
    color: var(--primary);
    font-size: 9px;
}

/* Статистика на всю ширину */
.hero-stats-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 50px;
    grid-column: 1 / -1;
}

.hero-stats {
    display: flex;
    gap: 80px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 60px;
    backdrop-filter: blur(5px);
    width: fit-content;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 120px;
}

.hero-stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 5px;
}

.hero-stat-label {
    font-size: 15px;
    color: var(--gray);
    font-weight: 500;
    white-space: nowrap;
}

/* ========== КНОПКИ ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    line-height: 1.2;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-small {
    padding: 10px 24px;
    font-size: 13px;
    border-radius: 8px;
}

/* ========== СЕКЦИИ ========== */
.section {
    padding: 60px 0;
    width: 100%;
}

.section-light {
    background: var(--white);
}

.section-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    position: relative;
}

.section-title-light {
    color: var(--white);
    text-align: center;
    margin-bottom: 40px;
}

.section-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.section-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* ========== НОВОСТИ ========== */
.news-grid-full {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.news-card-horizontal {
    display: flex;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    width: 100%;
    margin-bottom: 25px;
}

.news-card-horizontal:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
}

.news-card-horizontal .news-card-image {
    position: relative;
    flex: 0 0 260px;
    height: 200px;
    overflow: hidden;
}

.news-card-horizontal .news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-card-horizontal:hover .news-card-image img {
    transform: scale(1.1);
}

.news-card-category {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    z-index: 2;
}

.news-card-horizontal .news-card-content {
    padding: 25px;
    flex: 1;
}

.news-card-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 10px;
}

.news-card-date i {
    color: var(--primary);
    font-size: 12px;
}

.news-card-title {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-card-title a {
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.news-card-title a:hover {
    color: var(--primary);
}

.news-card-excerpt {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.news-card-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.news-card-link:hover {
    gap: 10px;
}

/* ========== СОБЫТИЯ ========== */
.events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
}

.events-list {
    background: var(--white);
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--shadow);
}

.event-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--light-gray);
}

.event-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.event-date {
    text-align: center;
    min-width: 65px;
    background: var(--light-gray);
    padding: 8px 5px;
    border-radius: 10px;
}

.event-day {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.event-month {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
}

.event-info {
    flex: 1;
}

.event-title {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark);
}

.event-meta {
    display: flex;
    gap: 20px;
    color: var(--gray);
    font-size: 14px;
}

.event-meta i {
    color: var(--primary);
    margin-right: 5px;
    width: 14px;
}

.events-calendar {
    background: var(--white);
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-placeholder {
    text-align: center;
}

.calendar-placeholder i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 15px;
}

.calendar-placeholder p {
    margin-bottom: 20px;
    color: var(--gray);
    font-size: 15px;
}

/* ========== МЕДИА ========== */
.media-tabs {
    display: flex;
    gap: 10px;
}

.media-tab {
    padding: 8px 20px;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.media-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.media-tab:hover:not(.active) {
    border-color: var(--primary);
    color: var(--primary);
}

.media-content {
    display: none;
}

.media-content.active {
    display: block;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow);
    height: 200px;
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
    height: 420px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
}

.video-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-thumbnail {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    z-index: 2;
}

.video-play:hover {
    background: var(--primary-dark);
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.video-card h4 {
    padding: 15px;
    font-size: 15px;
    color: var(--dark);
    font-weight: 500;
}

/* ========== ПРЕИМУЩЕСТВА ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    width: 100%;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--primary);
}

.feature-card h3 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 600;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.5;
}

/* ========== ИНФО КАРТОЧКИ ========== */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    width: 100%;
}

.info-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--dark);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.info-card i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.4;
}

/* ========== ФУТЕР ========== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
    width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
}

.footer-logo span {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 18px;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 600;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact i {
    width: 20px;
    color: var(--primary);
    margin-right: 8px;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

/* ========== АДАПТИВНОСТЬ ========== */
@media (max-width: 1200px) {
    .hero-right-full {
        max-height: 360px;
    }
    
    .hero-stats {
        gap: 60px;
        padding: 15px 30px;
    }
    
    .hero-stat-number {
        font-size: 42px;
    }
}

@media (max-width: 1024px) {
    .hero-with-news {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-right-full {
        max-height: 350px;
    }
    
    .hero-stats {
        gap: 50px;
    }
    
    .promo-slide {
        flex: 0 0 calc(50% - 8px);
    }
    
    .promo-track-wrapper {
        margin: 0 40px;
    }
}

@media (max-width: 992px) {
    .header-left {
        gap: 10px;
    }
    
    .logo-title {
        font-size: 16px;
        max-width: 300px;
    }
    
    .logo-subtitle {
        font-size: 12px;
    }
    
    .header-badge {
        max-width: 140px;
        font-size: 9px;
        padding: 3px 8px;
        white-space: normal;
        line-height: 1.3;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .header-left {
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        width: 100%;
    }
    
    .logo {
        justify-content: center;
    }
    
    .logo-text {
        text-align: left;
    }
    
    .logo-title {
        font-size: 16px;
        max-width: 100%;
    }
    
    .header-contacts {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .logo img {
        width: 70px;
        height: 70px;
    }
    
    .header-badge {
        max-width: 200px;
        white-space: normal;
        text-align: center;
        margin: 0 auto;
        font-size: 10px;
        padding: 4px 10px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px 0;
        width: 100%;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 20px;
        display: none;
        min-width: 100%;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .hero-left .hero-buttons {
        justify-content: center;
    }
    
    .hero-right-full {
        max-height: 340px;
        padding: 20px;
    }
    
    .hero-stats-wrapper {
        margin-top: 40px;
    }
    
    .hero-stats {
        gap: 30px;
        padding: 15px 20px;
        flex-direction: row;
    }
    
    .hero-stat-item {
        min-width: 100px;
    }
    
    .hero-stat-number {
        font-size: 36px;
    }
    
    .hero-stat-label {
        font-size: 13px;
    }
    
    .promo-slide {
        flex: 0 0 100%;
    }
    
    .promo-slider-header {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 0 15px;
    }
    
    .promo-slider-title {
        padding-left: 0;
        border-left: none;
        text-align: center;
    }
    
    .promo-track-wrapper {
        margin: 0 35px;
    }
    
    .promo-nav {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .features-grid,
    .info-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item-large {
        grid-column: auto;
        grid-row: auto;
        height: 200px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-title {
        font-size: 14px;
    }
    
    .logo-subtitle {
        font-size: 11px;
    }
    
    .header-badge {
        max-width: 180px;
        font-size: 9px;
        padding: 3px 8px;
    }
    
    .hero-left .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-left .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-right-full {
        max-height: 320px;
        padding: 15px;
    }
    
    .hero-stats {
        gap: 15px;
        flex-direction: column;
        padding: 20px;
    }
    
    .hero-stat-item {
        min-width: auto;
    }
    
    .hero-stat-number {
        font-size: 32px;
    }
    
    .hero-stat-label {
        font-size: 12px;
        white-space: normal;
    }
    
    .promo-slider {
        padding: 10px 0;
    }
    
    .promo-slider-header {
        padding: 0 10px;
    }
    
    .promo-card-image {
        height: 90px;
    }
    
    .promo-card-footer {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
    }
    
    .promo-track-wrapper {
        margin: 0 25px;
    }
    
    .promo-nav {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
    
    .features-grid,
    .info-cards-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        width: 100%;
    }
    
    .event-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .event-date {
        align-self: flex-start;
    }
    
    .event-meta {
        flex-direction: column;
        gap: 8px;
    }
}

/* Стилизация скролла для новостей */
.hero-right-full .hero-news-list::-webkit-scrollbar {
    width: 6px;
}

.hero-right-full .hero-news-list::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 10px;
}

.hero-right-full .hero-news-list::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.hero-right-full .hero-news-list::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-card-horizontal,
.feature-card,
.info-card,
.event-item {
    animation: fadeIn 0.6s ease forwards;
}

.news-card-horizontal:nth-child(2) { animation-delay: 0.1s; }
.news-card-horizontal:nth-child(3) { animation-delay: 0.2s; }
.news-card-horizontal:nth-child(4) { animation-delay: 0.3s; }
.news-card-horizontal:nth-child(5) { animation-delay: 0.4s; }
.news-card-horizontal:nth-child(6) { animation-delay: 0.5s; }