/* ===================================
   ПОЛНЫЙ CSS С НУЛЯ
   =================================== */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: white;
    padding: 20px 0 0 0;
    margin: 0;
    line-height: 1.6;
    color: #333;
}

.site-header-new {
    max-width: 1600px;
    margin: 0 auto;
}

.container-custom {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

/* ========== ВЕРХНЯЯ ПАНЕЛЬ ========== */
.top-bar {
    background: linear-gradient(to right, #0d5268 0%, #267a9b 50%, #4da8d0 100%);
    padding: 28px 0;
    border-radius: 20px 20px 0 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.company-info {
    flex-shrink: 0;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-right: 30px;
}

.logo-circle {
    width: 110px;
    height: 110px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #267a9b;
    flex-shrink: 0;
    overflow: hidden;
}

.logo-circle.logo-svg {
    background: transparent;
    padding: 0;
}

.logo-image {
    width: 110px;
    height: 110px;
    display: block;
    object-fit: contain;
    object-position: center;
}

.company-text {
    color: white;
    min-width: 240px;
}

.company-name {
    font-size: 23px;
    font-weight: 700;
    margin: 0 0 2px 0;
    line-height: 1.2;
    white-space: nowrap;
}

.company-subtitle {
    font-size: 13px;
    margin: 0;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.3;
    white-space: nowrap;
    font-style: italic;
}

.contact-info {
    display: flex;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.contact-item i {
    font-size: 20px;
}

.contact-item small {
    display: block;
    font-size: 11px;
    opacity: 0.85;
}

.contact-item div {
    font-size: 16px;
    white-space: nowrap;
}

.phone-number {
    font-size: 17px;
    font-weight: 700;
}

.email-address {
    font-size: 17px;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.email-address:hover {
    color: #ffc107;
    text-decoration: underline;
}

.contact-address {
    font-size: 17px;
    font-weight: 700;
    color: white;
}

/* ========== HERO БАННЕР ========== */
.hero-banner {
    position: relative;
    height: 765px;
    background: linear-gradient(to right, rgba(13, 82, 104, 0.75) 0%, rgba(38, 122, 155, 0.65) 50%, rgba(77, 168, 208, 0.55) 100%),
                url('/assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center center;
    margin-bottom: 0;
}

.hero-overlay {
    display: none;
}

/* ========== МЕНЮ ВВЕРХУ ========== */
.main-nav {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 10;
}

.main-nav .container-custom {
    padding-left: 60px;
}

.nav-menu {
    display: inline-flex;
    list-style: none;
    margin: 0;
    padding: 5px 6px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 8px;
}

.nav-menu-item {
    margin: 0;
}

.nav-menu-link {
    display: block;
    padding: 11px 22px;
    color: white;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    white-space: nowrap;
    transition: background 0.2s;
}

.nav-menu-link:hover,
.nav-menu-link.active {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

/* ========== КОНТЕНТ HERO - СЛЕВА ========== */
.hero-container {
    height: 100%;
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    padding-top: 165px;
}

.hero-content-left {
    max-width: 700px;
    color: white;
}

.hero-title {
    font-size: 100px;
    font-weight: 800;
    line-height: 0.9;
    margin: 0 0 45px 0;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-title-outline {
    color: transparent;
    -webkit-text-stroke: 2.5px white;
}

.hero-text {
    font-size: 19px;
    line-height: 1.65;
    margin: 0 0 30px 0;
    opacity: 0.95;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    padding: 20px 50px;
    background: #ff5722;
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 87, 34, 0.4);
}

.hero-btn:hover {
    background: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.5);
    color: white;
}

.hero-btn i {
    width: 38px;
    height: 38px;
    background: white;
    color: #ff5722;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* ========== СТАТИЧЕСКОЕ МЕНЮ НА ДРУГИХ СТРАНИЦАХ ========== */
.main-nav-static {
    background: linear-gradient(to right, #0d5268 0%, #267a9b 50%, #4da8d0 100%);
    padding: 0;
    position: relative;
}

.main-nav-static .nav-menu {
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    padding: 0;
    display: flex;
}

.main-nav-static .nav-menu-link {
    padding: 16px 22px;
    border-radius: 0;
}

/* ========== КОНТЕНТ ========== */
.main-content {
    max-width: 1600px;
    margin: 0 auto;
    background: white;
    min-height: 500px;
    padding: 0;
}


/* ========== КАРТОЧКИ И КОНТЕНТ ========== */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.card-header {
    border-radius: 15px 15px 0 0;
    border: none;
    font-weight: 600;
}

.card-header.bg-primary {
    background: linear-gradient(to right, #0d5268 0%, #267a9b 100%);
    color: white;
}

.btn-primary {
    background: linear-gradient(to right, #0d5268 0%, #267a9b 100%);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 82, 104, 0.3);
}

.table {
    border-radius: 10px;
    overflow: hidden;
}

.table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #267a9b;
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
    background: transparent;
    padding: 15px 0;
    margin-bottom: 20px;
}

.breadcrumb-item a {
    color: #267a9b;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #666;
}

/* ========== СОЦИАЛЬНЫЕ СЕТИ В ШАПКЕ ========== */
.social-links {
    align-items: center !important;
}

.social-links small {
    margin-top: 8px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    font-size: 26px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px) scale(1.15);
}

.social-icons a i {
    font-size: 26px;
}

/* Max Messenger */
.max-messenger {
    background: linear-gradient(135deg, #ff6b35 0%, #ff5722 100%) !important;
}

.max-messenger:hover {
    background: linear-gradient(135deg, #ff5722 0%, #e64a19 100%) !important;
}

.max-icon {
    font-weight: 800;
    font-size: 18px;
    font-family: Arial, sans-serif;
}

/* ========== ФОРМА ПОИСКА В HERO ========== */
.hero-container {
    justify-content: flex-start;
    gap: 80px;
}

.hero-search-form {
    width: 600px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 35px 30px 45px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
}

.search-form-title {
    color: white;
    font-size: 23px;
    font-weight: 700;
    margin: 0 0 28px 0;
    text-align: center;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.search-field label {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 15px 16px;
    transition: all 0.3s;
}

.search-field label:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.search-field i {
    color: #267a9b;
    font-size: 15px;
    width: 18px;
    text-align: center;
}

.search-field input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    background: transparent;
    color: #333;
}

.search-field input::placeholder {
    color: #999;
}

.search-field-group {
    display: flex;
    gap: 12px;
    width: 100%;
}

.search-field-half {
    flex: 1;
    min-width: 0;
}

.search-field-half label {
    width: 100%;
}

.search-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    background: #ff5722;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 15px;
}

.search-submit-btn:hover {
    background: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

.search-submit-btn i {
    font-size: 16px;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .hero-search-form {
        width: 380px;
        padding: 30px 25px;
    }
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-search-form {
        width: 100%;
        max-width: 500px;
    }
}

/* ========== АВТОДОПОЛНЕНИЕ ГОРОДА ========== */
.search-field {
    position: relative;
}

.autocomplete-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    margin-top: 5px;
}

.autocomplete-list.active {
    display: block;
}

.autocomplete-item {
    padding: 12px 18px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    color: #333;
    transition: background 0.2s;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background: #f0f8ff;
    color: #267a9b;
}

.autocomplete-item i {
    color: #267a9b;
    margin-right: 8px;
}

.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    margin-top: 2px;
}

.autocomplete-suggestions .autocomplete-item {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    transition: background 0.2s;
}

.autocomplete-suggestions .autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-suggestions .autocomplete-item:hover {
    background: #f0f8ff;
    color: #267a9b;
}

/* ========== МАСКА ЦЕНЫ ========== */
.price-input {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.price-input::placeholder {
    font-weight: 400;
}

.search-field-half input {
    text-align: left;
}

/* ========== БЛОК "КАК НАЧАТЬ" (HOW START) ========== */
.how-start-section {
    padding: 90px 0 90px 0;
    margin-top: 0;
    background: linear-gradient(135deg, #0d5268 0%, #267a9b 50%, #4da8d0 100%);
    position: relative;
}

.how-start-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff5722 0%, #ff5722 50%, rgba(255,255,255,0.8) 100%);
}

.how-start-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    padding-bottom: 30px;
}

.how-start-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    border-radius: 2px;
}

.how-start-subtitle {
    display: block;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 12px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.how-start-title {
    font-size: 58px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 3px;
    margin: 0;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.3);
    position: relative;
    display: inline-block;
}

.how-start-steps {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.how-start-steps > div:nth-child(1) {
    flex: 0 0 calc(30% - 10px);
    transform: translateX(-10px);
}

.how-start-steps > div:nth-child(2) {
    flex: 0 0 calc(40% - 10px);
}

.how-start-steps > div:nth-child(3) {
    flex: 0 0 calc(30% - 10px);
    transform: translateX(10px);
}

.how-start-item {
    text-align: center;
}

.how-start-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    height: 170px;
    margin-bottom: 35px;
}

/* Блок с цифрой */
.how-start-num-block {
    flex: 0 0 auto;
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-start-num {
    font-size: 180px;
    font-weight: 900;
    color: transparent;
    line-height: 1;
    -webkit-text-stroke: 3px rgba(255,255,255,0.4);
    text-stroke: 3px rgba(255,255,255,0.4);
    text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}

/* Блок с "ШАГ" */
.how-start-label-block {
    flex: 0 0 auto;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-start-label {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 5px;
    color: rgba(255,255,255,0.7);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* Блок с иконкой */
.how-start-icon-block {
    flex: 0 0 auto;
    width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-start-icon-wrap {
    width: 110px;
    height: 110px;
    background: #ffffff;
    border: 5px solid rgba(255,255,255,0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.how-start-icon-wrap i {
    font-size: 48px;
    color: #267a9b;
}

.how-start-item-title {
    font-size: 22px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    line-height: 1.4;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.how-start-item-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 15px;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.how-start-text {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    line-height: 1.7;
    font-weight: 400;
}

@media (max-width: 992px) {
    .how-start-title {
        font-size: 42px;
    }
    
    .how-start-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .how-start-steps > div:nth-child(1),
    .how-start-steps > div:nth-child(2),
    .how-start-steps > div:nth-child(3) {
        flex: 0 0 auto;
        width: 100%;
        max-width: 600px;
        transform: translateX(0);
    }
    
    .how-start-num-block {
        width: 140px;
    }
    
    .how-start-num {
        font-size: 140px;
    }
}

@media (max-width: 768px) {
    .how-start-title {
        font-size: 36px;
    }
    
    .how-start-visual {
        height: 130px;
        gap: 10px;
    }
    
    .how-start-num-block {
        width: 110px;
    }
    
    .how-start-num {
        font-size: 110px;
    }
    
    .how-start-label-block {
        width: 20px;
    }
    
    .how-start-label {
        font-size: 11px;
    }
    
    .how-start-icon-block {
        width: 80px;
    }
    
    .how-start-icon-wrap {
        width: 80px;
        height: 80px;
    }
    
    .how-start-icon-wrap i {
        font-size: 36px;
    }
}

/* ========== КНОПКА "НАЧАТЬ СЕЙЧАС" В HOW START ========== */
.how-start-section .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    padding: 20px 50px;
    background: #ff5722;
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 87, 34, 0.4);
}

.how-start-section .btn-primary:hover {
    background: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.5);
    color: white;
}

.how-start-section .btn-primary i {
    font-size: 20px;
}

/* ========== БЛОК "КАДАСТРОВЫЕ УСЛУГИ" ========== */
.cadastral-services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d5268 0%, #267a9b 50%, #4da8d0 100%);
    position: relative;
}

.cadastral-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff5722 0%, #ff5722 50%, rgba(255,255,255,0.8) 100%);
    box-shadow: 0 2px 10px rgba(255,87,34,0.5);
}

.cadastral-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    padding-bottom: 30px;
}

.cadastral-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    border-radius: 2px;
}

.cadastral-subtitle {
    display: block;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 12px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.cadastral-title {
    font-size: 58px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 3px;
    margin: 0;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.3);
    position: relative;
    display: inline-block;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px 30px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    border-left: 5px solid transparent;
}

.service-item:hover {
    transform: translateX(15px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255,255,255,0.2);
    border-left-color: #ff5722;
    background: rgba(255,255,255,0.25);
}

.service-icon-box {
    width: 85px;
    height: 85px;
    background: rgba(255,255,255,0.95);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.service-item:hover .service-icon-box {
    transform: rotate(-5deg) scale(1.1);
    background: white;
}

.service-icon-box i {
    font-size: 42px;
    color: #267a9b;
}

.service-item-title {
    font-size: 21px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* Стили для кликабельного пункта меню */
.service-item-link {
    text-decoration: none;
    cursor: pointer;
}

.service-item-link:hover {
    text-decoration: none;
}

.service-item-link .service-item-title {
    color: #ffffff;
}

.services-content {
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.services-text {
    margin-bottom: auto;
    flex: 1;
}

.services-text p {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    line-height: 1.8;
    margin-bottom: 20px;
}

.cadastral-services-section .btn-warning {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 50px;
    background: #ff5722;
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 87, 34, 0.4);
    letter-spacing: 1px;
}

.cadastral-services-section .btn-warning:hover {
    background: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.5);
    color: white;
}

@media (max-width: 992px) {
    .services-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .services-main-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .services-main-title {
        font-size: 32px;
    }
    
    .service-icon-box {
        width: 60px;
        height: 60px;
    }
    
    .service-icon-box i {
        font-size: 28px;
    }
    
    .service-item-title {
        font-size: 16px;
    }
}



    background: #e64a19;
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(255, 87, 34, 0.7);
    color: white;
}

/* ========== ГЛАВНЫЙ ФУТЕР ========== */
.main-footer {
    max-width: 1600px;
    margin: 0 auto 30px auto;
    background: linear-gradient(135deg, #0d5268 0%, #1a6b87 100%);
    border-radius: 0 0 20px 20px;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff5722 0%, #ff5722 50%, rgba(255,255,255,0.5) 100%);
}

.footer-inner {
    padding: 70px 60px 40px 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 0;
}

.footer-block {
    text-align: center;
}

.footer-heading {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 35px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    display: block;
    padding-bottom: 18px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
    border-radius: 2px;
}

.footer-text {
    font-size: 18px;
    color: #ffffff;
    margin: 15px 0;
    line-height: 1.8;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.footer-text strong {
    color: #ffffff;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 0.3px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.footer-contact-item i {
    font-size: 18px;
    color: #ffffff;
}

.footer-contact-item a {
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: #ff5722;
}

.footer-social-icons {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 15px;
}

.footer-social-icons a {
    font-size: 48px;
    color: #ffffff;
    transition: all 0.3s;
}

.footer-social-icons a:hover {
    color: #ff5722;
    transform: scale(1.3) rotate(10deg);
}

/* Copyright */
.footer-copyright {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-copyright p {
    margin: 0;
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

/* Адаптив */
@media (max-width: 992px) {
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-heading {
        font-size: 38px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

/* Кликабельные ссылки в шапке */
.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #ff5722;
}


/* ========== БЛОК FAQ (ВОПРОСЫ И ОТВЕТЫ) ========== */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d5268 0%, #267a9b 50%, #4da8d0 100%);
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff5722 0%, #ff5722 50%, rgba(255,255,255,0.8) 100%);
    box-shadow: 0 2px 10px rgba(255,87,34,0.5);
}

.faq-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    padding-bottom: 30px;
}

.faq-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
    border-radius: 2px;
}

.faq-subtitle {
    display: block;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 12px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.faq-main-title {
    font-size: 58px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 3px;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.faq-new-layout {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: stretch;
}

.faq-left-panel {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.faq-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 8px;
    margin-bottom: 25px;
    text-transform: uppercase;
    align-self: flex-start;
}

.faq-left-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.faq-description {
    font-size: 18px;
    color: rgba(255,255,255,0.95);
    line-height: 1.7;
    margin-bottom: 35px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.faq-btn-yellow {
    display: inline-block;
    background: #ff5722;
    color: white !important;
    padding: 18px 45px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
    text-align: center;
}

.faq-btn-yellow:hover {
    background: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.5);
    color: white !important;
}

.faq-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-card-item {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 25px 30px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-card-item:hover {
    background: #ffffff;
    border-color: #ff5722;
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.faq-card-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    flex: 1;
}

.faq-arrow-btn {
    width: 50px;
    height: 50px;
    background: #ff5722;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 20px;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.faq-arrow-btn i {
    color: #333;
    font-size: 18px;
}

.faq-card-item:hover .faq-arrow-btn {
    background: #ff5722;
    transform: rotate(45deg);
}

.faq-card-item:hover .faq-arrow-btn i {
    color: #ffffff;
}

@media (max-width: 992px) {
    .faq-new-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-main-title {
        font-size: 42px;
    }
    
    .faq-left-title {
        font-size: 32px;
    }
    
    .faq-card-text {
        font-size: 16px;
    }
}

/* ========== ГЛАВНЫЙ ФУТЕР ========== */
.main-footer {
    max-width: 1600px;
    margin: 0 auto 30px auto;
    background: linear-gradient(135deg, #0d5268 0%, #1a6b87 100%);
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff5722 0%, #ff5722 50%, rgba(255,255,255,0.5) 100%);
}

.footer-inner {
    padding: 70px 60px 40px 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 0;
}

.footer-block {
    text-align: center;
}

.footer-heading {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 35px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    display: block;
    padding-bottom: 18px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
    border-radius: 2px;
}

.footer-text {
    font-size: 18px;
    color: #ffffff;
    margin: 15px 0;
    line-height: 1.8;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.footer-text strong {
    color: #ffffff;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 0.3px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.footer-contact-item i {
    font-size: 18px;
    color: #ffffff;
}

.footer-contact-item a {
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: #ff5722;
}

.footer-social-icons {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 15px;
}

.footer-social-icons a {
    font-size: 48px;
    color: #ffffff;
    transition: all 0.3s;
}

.footer-social-icons a:hover {
    color: #ff5722;
    transform: scale(1.3) rotate(10deg);
}

.footer-copyright {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-copyright p {
    margin: 0;
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #ff5722;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

/* Стили для раскрывающихся ответов FAQ */
.faq-card-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-card-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-card-item.active .faq-card-answer {
    max-height: 500px;
    padding-top: 20px;
}

.faq-card-answer p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.faq-card-item.active .faq-arrow-btn i {
    transform: rotate(45deg);
}

/* ========== БЛОК ОТЗЫВЫ ========== */
.reviews-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d5268 0%, #267a9b 50%, #4da8d0 100%);
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff5722 0%, #ff5722 50%, rgba(255,255,255,0.8) 100%);
    box-shadow: 0 2px 10px rgba(255,87,34,0.5);
}

.reviews-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    padding-bottom: 30px;
}

.reviews-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
    border-radius: 2px;
}

.reviews-badge {
    display: block;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 12px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.reviews-main-title {
    font-size: 58px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 3px;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.reviews-slider {
    position: relative;
    overflow: hidden;
}

.reviews-cards {
    position: relative;
    width: 100%;
}

.review-slide {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    opacity: 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.review-slide.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.reviews-section .review-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    display: flex;
    gap: 30px;
    transition: all 0.3s;
}

.reviews-section .review-card:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    transform: translateY(-5px);
}

.review-avatar {
    flex-shrink: 0;
}

.review-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.review-content {
    flex: 1;
}

.review-name {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 5px 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.reviews-section .review-position {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin: 0 0 5px 0;
}

.reviews-section .review-date {
    font-size: 14px;
    color: rgba(255,255,255,0.9) !important;
    margin: 0 0 15px 0;
}

.reviews-section .review-stars {
    margin-bottom: 15px;
}

.review-stars i {
    color: #ffc107;
    font-size: 18px;
    margin-right: 3px;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.3));
}

.review-text {
    font-size: 16px;
    color: rgba(255,255,255,0.95);
    line-height: 1.7;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.reviews-empty-state {
    width: 100%;
    text-align: center;
    padding: 80px 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 2px dashed rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.empty-state-icon {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    animation: fadeInScale 0.8s ease-out;
}

.empty-state-icon i {
    font-size: 40px;
    color: #ffc107;
    opacity: 0.3;
    animation: starPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(255, 193, 7, 0.3));
}

.empty-state-icon i:nth-child(1) { animation-delay: 0s; }
.empty-state-icon i:nth-child(2) { animation-delay: 0.2s; }
.empty-state-icon i:nth-child(3) { animation-delay: 0.4s; }
.empty-state-icon i:nth-child(4) { animation-delay: 0.6s; }
.empty-state-icon i:nth-child(5) { animation-delay: 0.8s; }

@keyframes starPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.empty-state-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.empty-state-text {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin: 0 0 40px 0;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.empty-state-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #ff5722 0%, #ff7043 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.4);
}

.empty-state-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 87, 34, 0.6);
    color: white;
    text-decoration: none;
}

.empty-state-btn i {
    font-size: 20px;
}

.reviews-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.reviews-nav {
    display: flex;
    gap: 15px;
}

.reviews-nav-btn {
    width: 60px;
    height: 60px;
    background: #ff5722;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
}

.reviews-nav-btn:hover {
    background: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.5);
}

.reviews-actions {
    display: flex;
    gap: 20px;
}

.btn-reviews,
.btn-add-review {
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.btn-reviews {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-reviews:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-add-review {
    background: #ff5722;
    color: white;
    box-shadow: 0 5px 20px rgba(255, 87, 34, 0.4);
}

.btn-add-review:hover {
    background: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.5);
    color: white;
}

@media (max-width: 992px) {
    .reviews-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .reviews-title {
        font-size: 42px;
    }
    
    .reviews-controls {
        flex-direction: column;
        gap: 30px;
    }
    
    .reviews-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-reviews,
    .btn-add-review {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .review-card {
        flex-direction: column;
        text-align: center;
    }
    
    .review-avatar {
        margin: 0 auto;
    }
}

/* ========== МОДАЛЬНОЕ ОКНО ОТЗЫВА ========== */
#addReviewModal .modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

#addReviewModal .modal-header {
    background: linear-gradient(135deg, #0d5268 0%, #267a9b 100%);
    color: white;
    border-radius: 20px 20px 0 0;
    padding: 25px 30px;
    border: none;
}

#addReviewModal .modal-title {
    font-size: 28px;
    font-weight: 700;
}

#addReviewModal .btn-close {
    filter: brightness(0) invert(1);
}

#addReviewModal .modal-body {
    padding: 30px;
}

#addReviewModal .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 15px;
}

#addReviewModal .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 15px;
    transition: all 0.3s;
}

#addReviewModal .form-control:focus {
    border-color: #267a9b;
    box-shadow: 0 0 0 0.2rem rgba(38, 122, 155, 0.25);
}

#addReviewModal textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 10px;
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-input label {
    cursor: pointer;
    font-size: 35px;
    color: #ddd;
    transition: all 0.2s;
}

.rating-input label:hover {
    color: #ff5722;
    transform: scale(1.1);
}

.rating-input label:hover ~ label,
.rating-input input[type="radio"]:checked ~ label {
    color: #ff5722;
}

#addReviewModal .alert-info {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: none;
    border-left: 4px solid #267a9b;
    color: #0d5268;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 14px;
}

#addReviewModal .form-text {
    color: #666;
    font-size: 13px;
    margin-top: 5px;
}

#addReviewModal .modal-footer {
    border: none;
    padding: 20px 30px;
    background: #f8f9fa;
    border-radius: 0 0 20px 20px;
}

#addReviewModal .modal-footer .btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

#addReviewModal .modal-footer .btn-secondary {
    background: #6c757d;
    border: none;
}

#addReviewModal .modal-footer .btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.4);
}

#addReviewModal .modal-footer .btn-primary {
    background: #ff5722;
    border: none;
}

#addReviewModal .modal-footer .btn-primary:hover {
    background: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
}

#addReviewModal #captchaAnswer {
    max-width: 150px;
}

#addReviewModal #captchaQuestion {
    font-weight: 700;
    color: #ff5722;
    font-size: 18px;
}

.btn-add-review {
    border: none;
    cursor: pointer;
}

/* ========== СТРАНИЦА ВСЕХ ОТЗЫВОВ ========== */
.reviews-page {
    padding: 60px 0;
    min-height: 600px;
}

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

.page-header h1 {
    font-size: 48px;
    font-weight: 900;
    color: #333;
    margin-bottom: 20px;
}

.page-header .lead {
    font-size: 20px;
    color: #666;
}

.reviews-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.review-card-page {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.review-card-page:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.review-card-header {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.review-avatar-page img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
}

.review-info {
    flex: 1;
}

.review-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 5px 0;
}

.review-position-page {
    font-size: 14px;
    color: #666;
    margin: 0 0 10px 0;
}

.review-date {
    font-size: 13px;
    color: #999;
    margin: 5px 0 0 0;
}

.review-text-page {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .reviews-grid-page {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
}

/* ========== КНОПКА "НАВЕРХ" ========== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff5722 0%, #e64a19 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.scroll-to-top:hover {
    background: linear-gradient(135deg, #e64a19 0%, #d43f15 100%);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.6);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* ========== БЛОК О НАС ========== */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d5268 0%, #267a9b 50%, #4da8d0 100%);
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff5722 0%, #ff5722 50%, rgba(255,255,255,0.8) 100%);
    box-shadow: 0 2px 10px rgba(255,87,34,0.5);
}

.about-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    padding-bottom: 30px;
}

.about-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
    border-radius: 2px;
}

.about-subtitle {
    display: block;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 12px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.about-main-title {
    font-size: 58px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 3px;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.about-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 50px;
    align-items: stretch;
}

.about-image-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    height: 100%;
    min-height: 600px;
    display: flex;
    align-items: stretch;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

.about-text {
    color: white;
}

.about-description {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255,255,255,0.95);
    line-height: 1.8;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    letter-spacing: 0.3px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.about-feature-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.about-feature-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff5722 0%, #e64a19 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
}

.feature-icon-small i {
    font-size: 22px;
    color: white;
}

.about-feature-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.about-feature-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-main-title {
        font-size: 42px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-main-title {
        font-size: 36px;
    }
    
    .about-description {
        font-size: 16px;
    }
}

/* ========== БЕГУЩАЯ СТРОКА С НОВОСТЯМИ ========== */
.news-ticker-wrapper {
    background: linear-gradient(135deg, rgba(13, 82, 104, 0.65) 0%, rgba(38, 122, 155, 0.65) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 0;
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    z-index: 11;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

.news-ticker {
    display: flex;
    align-items: center;
    gap: 20px;
}

.news-ticker-label {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff5722 0%, #ff7043 100%);
    padding: 5px 15px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: #fff;
    white-space: nowrap;
    box-shadow: 
        0 0 12px rgba(255, 87, 34, 0.6),
        0 3px 8px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    animation: led-pulse 3s ease-in-out infinite;
}

@keyframes led-pulse {
    0%, 100% {
        box-shadow: 
            0 0 12px rgba(255, 87, 34, 0.6),
            0 3px 8px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 
            0 0 20px rgba(255, 87, 34, 0.9),
            0 3px 8px rgba(0, 0, 0, 0.3);
    }
}

.news-ticker-label i {
    font-size: 14px;
}

.news-ticker-content {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 35px;
    display: flex;
    align-items: center;
}

.news-ticker-text {
    display: inline-block;
    white-space: nowrap;
    animation: ticker-scroll 60s linear infinite;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Segoe UI', Arial, sans-serif;
    padding-left: 100%;
    text-shadow: 
        0 0 15px rgba(255, 235, 59, 0.8),
        0 0 25px rgba(255, 235, 59, 0.5),
        2px 2px 6px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.news-ticker-text:hover {
    animation-play-state: paused;
}

.news-date {
    display: inline-block;
    background: rgba(255, 87, 34, 0.9);
    color: #fff;
    padding: 3px 12px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 800;
    margin-right: 12px;
    box-shadow: 
        0 0 12px rgba(255, 87, 34, 0.7),
        inset 0 1px 2px rgba(255, 255, 255, 0.3),
        inset 0 -1px 2px rgba(0, 0, 0, 0.4);
    text-shadow: 
        0 0 8px rgba(255, 255, 255, 0.8),
        1px 1px 2px rgba(0, 0, 0, 0.5);
}

.news-ticker-link {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #ff5722 0%, #ff7043 100%);
    padding: 5px 16px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
    transition: all 0.3s;
    flex-shrink: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.news-ticker-link:hover {
    background: linear-gradient(135deg, #ff7043 0%, #ff8a65 100%);
    box-shadow: 
        0 0 15px rgba(255, 87, 34, 0.7),
        0 4px 12px rgba(0, 0, 0, 0.3);
    color: #fff;
    transform: translateX(3px);
}

.news-ticker-link i {
    font-size: 12px;
}

@media (max-width: 768px) {
    .news-ticker {
        gap: 10px;
    }
    
    .news-ticker-label span {
        display: none;
    }
    
    .news-ticker-label {
        padding: 8px 12px;
    }
    
    .news-ticker-text {
        font-size: 14px;
        animation-duration: 30s;
    }
    
    .news-ticker-link {
        padding: 8px 12px;
        font-size: 13px;
    }
}

/* ========== ЭФФЕКТ ПЕЧАТНОЙ МАШИНКИ ========== */
#typingText {
    position: relative;
    display: inline-block;
}

#typingText::after {
    content: '|';
    position: absolute;
    right: -15px;
    color: white;
    animation: blink 0.8s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* ========== АНИМАЦИИ ПОЯВЛЕНИЯ БЛОКОВ ПРИ ПРОКРУТКЕ ========== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Разные задержки для эффекта мозаики */
.animate-delay-1 {
    transition-delay: 0.1s;
}

.animate-delay-2 {
    transition-delay: 0.2s;
}

.animate-delay-3 {
    transition-delay: 0.3s;
}

.animate-delay-4 {
    transition-delay: 0.4s;
}

/* Анимация слева */
.animate-from-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-from-left.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Анимация справа */
.animate-from-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-from-right.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Анимация масштабирования */
.animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-scale.animated {
    opacity: 1;
    transform: scale(1);
}

/* Анимация вращения */
.animate-fade {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.animate-fade.animated {
    opacity: 1;
}

/* ========== СТИЛИ КАТАЛОГА ОБЪЕКТОВ ========== */
.catalog-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    min-height: 100vh;
    padding: 40px 0 60px;
}

.catalog-page .container {
    max-width: 1600px !important;
    margin: 0 auto;
}

.catalog-page h1 {
    color: #0d5268;
    font-weight: 800;
    font-size: 42px;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.catalog-page h1 i {
    color: #ff5722;
    margin-right: 15px;
}

/* Карточка фильтров */
.catalog-page .card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(13, 82, 104, 0.1);
    overflow: hidden;
}

.catalog-page .card-header {
    background: linear-gradient(135deg, #0d5268 0%, #267a9b 100%);
    border: none;
    padding: 20px 25px;
}

.catalog-page .card-header h5 {
    color: white;
    font-weight: 700;
    font-size: 20px;
    margin: 0;
}

.catalog-page .card-header i {
    margin-right: 10px;
}

.catalog-page .card-header .btn-link {
    color: white;
    text-decoration: none;
}

.catalog-page .card-body {
    padding: 30px;
    background: white;
}

/* Стили форм */
.catalog-page .form-label {
    color: #0d5268;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.catalog-page .form-control,
.catalog-page .form-select {
    border: 2px solid #e0e7ef;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.3s;
}

.catalog-page .form-control:focus,
.catalog-page .form-select:focus {
    border-color: #267a9b;
    box-shadow: 0 0 0 0.2rem rgba(38, 122, 155, 0.15);
}

/* Кнопки */
.catalog-page .btn-primary {
    background: linear-gradient(135deg, #0d5268 0%, #267a9b 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.catalog-page .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 82, 104, 0.3);
}

.catalog-page .btn-secondary {
    background: #95a5a6;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.catalog-page .btn-secondary:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
}

/* Панель управления */
.catalog-page .d-flex.justify-content-between {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

/* Таблица объектов */
.catalog-page .table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.catalog-page .table thead {
    background: linear-gradient(135deg, #0d5268 0%, #267a9b 100%);
}

.catalog-page .table thead th {
    color: white;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 18px 15px;
    border: none;
}

.catalog-page .table tbody tr {
    transition: all 0.3s;
}

.catalog-page .table tbody tr:hover {
    background: rgba(38, 122, 155, 0.05);
    transform: scale(1.01);
}

.catalog-page .table tbody td {
    padding: 16px 15px;
    vertical-align: middle;
    border-bottom: 1px solid #e8eef5;
}

/* Бейджи статусов */
.catalog-page .badge {
    padding: 6px 12px;
    font-weight: 600;
    font-size: 12px;
    border-radius: 6px;
}

.catalog-page .bg-success {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%) !important;
}

.catalog-page .bg-warning {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%) !important;
}

.catalog-page .bg-danger {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
}

/* Кнопки действий */
.catalog-page .btn-info {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    color: white;
    transition: all 0.3s;
}

.catalog-page .btn-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* Пагинация */
.catalog-page .pagination {
    margin-top: 30px;
    justify-content: center;
}

.catalog-page .page-link {
    color: #0d5268;
    border: 2px solid #e0e7ef;
    border-radius: 8px;
    margin: 0 5px;
    padding: 10px 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.catalog-page .page-link:hover {
    background: #267a9b;
    color: white;
    border-color: #267a9b;
    transform: translateY(-2px);
}

.catalog-page .page-item.active .page-link {
    background: linear-gradient(135deg, #0d5268 0%, #267a9b 100%);
    border-color: #267a9b;
    color: white;
}

.catalog-page .page-item.disabled .page-link {
    opacity: 0.5;
}

/* Адаптивность */
@media (max-width: 1400px) {
    .catalog-page .container {
        max-width: 1200px !important;
    }
}

@media (max-width: 992px) {
    .catalog-page .container {
        max-width: 960px !important;
    }
    
    .catalog-page h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .catalog-page h1 {
        font-size: 28px;
    }
    
    .catalog-page .table {
        font-size: 13px;
    }
}

/* ========== СТИЛИ КАРТОЧКИ ОБЪЕКТА ========== */
.object-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    min-height: 100vh;
    padding: 40px 0 60px;
}

.object-page .container {
    max-width: 1600px !important;
    margin: 0 auto;
}

/* Хлебные крошки */
.object-page .breadcrumb {
    background: white;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.object-page .breadcrumb-item a {
    color: #0d5268;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.object-page .breadcrumb-item a:hover {
    color: #ff5722;
}

.object-page .breadcrumb-item.active {
    color: #7f8c8d;
    font-weight: 600;
}

/* Основная карточка */
.object-page .card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(13, 82, 104, 0.1);
    margin-bottom: 25px;
    overflow: hidden;
}

.object-page .card-header {
    background: linear-gradient(135deg, #0d5268 0%, #267a9b 100%);
    border: none;
    padding: 20px 30px;
}

.object-page .card-header h1,
.object-page .card-header h2,
.object-page .card-header h3,
.object-page .card-header h4,
.object-page .card-header h5 {
    color: white;
    margin: 0;
    font-weight: 700;
}

.object-page .card-body {
    padding: 30px;
    background: white;
}

/* Заголовки */
.object-page h1 {
    color: #0d5268;
    font-weight: 800;
    font-size: 32px;
    margin-bottom: 20px;
}

.object-page h2 {
    color: #0d5268;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #ff5722;
}

.object-page h3, 
.object-page h4 {
    color: #0d5268;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Таблицы */
.object-page .table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0;
}

.object-page .table thead {
    background: linear-gradient(135deg, #0d5268 0%, #267a9b 100%);
}

.object-page .table thead th {
    color: white;
    font-weight: 700;
    padding: 15px 20px;
    border: none;
    font-size: 14px;
}

.object-page .table tbody td {
    padding: 15px 20px;
    border-bottom: 1px solid #e8eef5;
    vertical-align: middle;
}

.object-page .table tbody tr:last-child td {
    border-bottom: none;
}

.object-page .table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.object-page .table tbody tr:hover {
    background: rgba(38, 122, 155, 0.05);
}

/* Бейджи */
.object-page .badge {
    padding: 8px 15px;
    font-weight: 700;
    font-size: 13px;
    border-radius: 8px;
    text-transform: uppercase;
}

.object-page .badge.bg-success {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%) !important;
}

.object-page .badge.bg-warning {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%) !important;
}

.object-page .badge.bg-danger {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
}

.object-page .badge.bg-info {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%) !important;
}

.object-page .badge.bg-primary {
    background: linear-gradient(135deg, #0d5268 0%, #267a9b 100%) !important;
}

/* Кнопки */
.object-page .btn-primary {
    background: linear-gradient(135deg, #0d5268 0%, #267a9b 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.object-page .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 82, 104, 0.3);
}

.object-page .btn-success {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s;
}

.object-page .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.object-page .btn-outline-primary {
    border: 2px solid #267a9b;
    color: #267a9b;
    padding: 10px 25px;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s;
}

.object-page .btn-outline-primary:hover {
    background: linear-gradient(135deg, #0d5268 0%, #267a9b 100%);
    color: white;
    border-color: #267a9b;
    transform: translateY(-2px);
}

/* Списки */
.object-page ul {
    list-style: none;
    padding-left: 0;
}

.object-page ul li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.object-page ul li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #ff5722;
    font-weight: bold;
    font-size: 18px;
}

/* Боковая панель */
.object-page .sidebar .card {
    position: sticky;
    top: 20px;
}

/* Цена */
.object-page .price-block {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
}

.object-page .price-block h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.object-page .price-block .price {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
}

/* Карта */
.object-page #map {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Изображения */
.object-page img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
}

/* Алерты */
.object-page .alert {
    border: none;
    border-radius: 12px;
    padding: 20px;
    font-weight: 600;
}

.object-page .alert-info {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(41, 128, 185, 0.1) 100%);
    color: #2980b9;
    border-left: 4px solid #3498db;
}

.object-page .alert-warning {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.1) 0%, rgba(230, 126, 34, 0.1) 100%);
    color: #e67e22;
    border-left: 4px solid #f39c12;
}

/* Адаптивность */
@media (max-width: 1400px) {
    .object-page .container {
        max-width: 1200px !important;
    }
}

@media (max-width: 992px) {
    .object-page .container {
        max-width: 960px !important;
    }
    
    .object-page h1 {
        font-size: 28px;
    }
    
    .object-page h2 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .object-page h1 {
        font-size: 24px;
    }
    
    .object-page .price-block .price {
        font-size: 26px;
    }
}

/* ========== УЛУЧШЕННЫЕ БЛОКИ ЦЕН ========== */
.object-page .price-display-block {
    margin-bottom: 30px;
}

.object-page .price-card {
    background: linear-gradient(135deg, #0d5268 0%, #267a9b 100%);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(13, 82, 104, 0.3);
    transition: all 0.3s;
    height: 100%;
}

.object-page .price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(13, 82, 104, 0.4);
}

.object-page .price-card.price-final {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

.object-page .price-card.price-final:hover {
    box-shadow: 0 12px 35px rgba(39, 174, 96, 0.4);
}

.object-page .price-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.object-page .price-value {
    color: white;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
}

.object-page .price-currency {
    font-size: 28px;
    font-weight: 700;
    opacity: 0.9;
}

/* Исправление для таблиц без tbody */
.object-page .table tr:last-child td,
.object-page .table tr:last-child th {
    border-bottom: none !important;
}

.object-page .table th {
    background: rgba(13, 82, 104, 0.05);
    font-weight: 700;
    color: #0d5268;
}

/* ========== БЛОКИ ЦЕН - УСИЛЕННЫЕ СЕЛЕКТОРЫ ========== */
.object-page .price-display-block {
    margin-bottom: 30px !important;
}

.object-page .price-card {
    background: linear-gradient(135deg, #0d5268 0%, #267a9b 100%) !important;
    padding: 25px !important;
    border-radius: 16px !important;
    text-align: center !important;
    box-shadow: 0 8px 25px rgba(13, 82, 104, 0.3) !important;
    transition: all 0.3s !important;
    height: 100% !important;
    border: none !important;
}

.object-page .price-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 35px rgba(13, 82, 104, 0.4) !important;
}

.object-page .price-card.price-final {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%) !important;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3) !important;
}

.object-page .price-card.price-final:hover {
    box-shadow: 0 12px 35px rgba(39, 174, 96, 0.4) !important;
}

.object-page .price-label {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 10px !important;
}

.object-page .price-value {
    color: white !important;
    font-size: 36px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
}

.object-page .price-currency {
    font-size: 28px !important;
    font-weight: 700 !important;
    opacity: 0.9 !important;
}

/* ========== ТАБЛИЦЫ - УЛУЧШЕННЫЕ ГРАНИЦЫ ========== */
.object-page table.table-bordered {
    border: 2px solid #e0e7ef !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}

.object-page table.table-bordered tr:last-child td,
.object-page table.table-bordered tr:last-child th {
    border-bottom: 2px solid #e0e7ef !important;
}

.object-page table.table-bordered th {
    background: linear-gradient(135deg, rgba(13, 82, 104, 0.08) 0%, rgba(38, 122, 155, 0.08) 100%) !important;
    font-weight: 700 !important;
    color: #0d5268 !important;
    border: 1px solid #d0dae5 !important;
    padding: 15px !important;
}

.object-page table.table-bordered td {
    border: 1px solid #e0e7ef !important;
    padding: 15px !important;
    background: white !important;
}

/* ========== ТАБЛИЦА ОСНОВНОЙ ИНФОРМАЦИИ - УСИЛЕННЫЕ СТИЛИ ========== */
.object-page .table.table-bordered {
    border-collapse: separate !important;
    border-spacing: 0 !important;
    border: 2px solid #d0dae5 !important;
}

.object-page .table.table-bordered tbody tr th {
    background: linear-gradient(135deg, #e8f4f8 0%, #dceef5 100%) !important;
    font-weight: 700 !important;
    color: #0d5268 !important;
    border: 1px solid #c5d9e3 !important;
    padding: 15px 20px !important;
    vertical-align: middle !important;
}

.object-page .table.table-bordered tbody tr td {
    border: 1px solid #d0dae5 !important;
    padding: 15px 20px !important;
    background: #ffffff !important;
    vertical-align: middle !important;
}

.object-page .table.table-bordered tbody tr {
    border-bottom: 1px solid #d0dae5 !important;
}

.object-page .table.table-bordered tbody tr:hover {
    background: rgba(38, 122, 155, 0.03) !important;
}

.object-page .table.table-bordered tbody tr:hover td {
    background: rgba(38, 122, 155, 0.03) !important;
}

/* ========== ТАБЛИЦА С ВИДИМЫМИ ГРАНИЦАМИ - ФИНАЛЬНАЯ ВЕРСИЯ ========== */
.object-page .table.table-bordered,
.object-page table.table-bordered {
    border: 2px solid #94a3b8 !important;
    border-collapse: collapse !important;
    border-radius: 0 !important;
}

.object-page .table.table-bordered tbody tr th,
.object-page table.table-bordered tbody tr th,
.object-page .table.table-bordered th,
.object-page table.table-bordered th {
    background: linear-gradient(135deg, #0d5268 0%, #267a9b 100%) !important;
    font-weight: 700 !important;
    color: white !important;
    border: 2px solid #94a3b8 !important;
    padding: 15px 20px !important;
    vertical-align: middle !important;
}

.object-page .table.table-bordered tbody tr td,
.object-page table.table-bordered tbody tr td,
.object-page .table.table-bordered td,
.object-page table.table-bordered td {
    border: 2px solid #94a3b8 !important;
    padding: 15px 20px !important;
    background: #ffffff !important;
    vertical-align: middle !important;
    color: #2c3e50 !important;
}

.object-page .table.table-bordered tbody tr:hover td,
.object-page table.table-bordered tbody tr:hover td {
    background: #f0f9ff !important;
}

/* ========== ОПИСАНИЕ ОБЪЕКТА ========== */
.object-page .object-description {
    font-size: 18px !important;
    line-height: 1.8 !important;
    color: #2c3e50 !important;
}

/* ========== СТИЛИ ДЛЯ ПЕЧАТИ ========== */

/* ========== ПРОСТЫЕ СТИЛИ ТОЛЬКО ДЛЯ ПЕЧАТИ ========== */
@media print {
    /* Скрываем шапку, меню и футер сайта */
    header, .site-header-new, .top-bar, .main-menu, .news-ticker, footer, .main-footer {
        display: none !important;
    }
    
    /* Скрываем кнопки и навигацию */
    .btn, button, .breadcrumb, nav {
        display: none !important;
    }
    
    /* Скрываем боковую колонку на странице объекта */
    .object-page .col-lg-4 {
        display: none !important;
    }
    
    /* Растягиваем основную колонку */
    .object-page .col-lg-8 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    /* Убираем фон */
    body, .object-page {
        background: white !important;
    }
    
    /* Компактные отступы */
    body {
        margin: 0;
        padding: 5mm;
    }
    
    /* Чёрно-белые таблицы */
    table {
        border: 1px solid #000 !important;
    }
    
    th, td {
        border: 1px solid #000 !important;
        padding: 5px !important;
    }
    
    /* Убираем тени */
    * {
        box-shadow: none !important;
    }
}

/* ========== СТРАНИЦА ОТЗЫВОВ ========== */
.reviews-page-new {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    min-height: 100vh;
    padding: 40px 0 60px;
}

.container-reviews {
    max-width: 1600px !important;
    margin: 0 auto;
    padding: 0 15px;
}

/* Заголовок страницы */
.reviews-page-header {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-page-header h1 {
    color: #0d5268;
    font-weight: 800;
    font-size: 42px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.reviews-page-header h1 i {
    color: #ff5722;
    margin-right: 15px;
}

.reviews-subtitle {
    color: #7f8c8d;
    font-size: 18px;
    font-weight: 500;
}

/* Панель управления */
.reviews-page-new .reviews-controls {
    background: white;
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.reviews-stats {
    color: #0d5268;
    font-size: 18px;
    font-weight: 600;
}

.reviews-stats i {
    color: #ff5722;
    margin-right: 8px;
}

.reviews-filters {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

.filter-group label {
    color: #0d5268;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

.filter-group label i {
    color: #ff5722;
    margin-right: 5px;
}

.filter-group select {
    border: 2px solid #e0e7ef;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 600;
    color: #0d5268;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-group select:hover {
    border-color: #267a9b;
}

.filter-group select:focus {
    outline: none;
    border-color: #267a9b;
    box-shadow: 0 0 0 0.2rem rgba(38, 122, 155, 0.15);
}

/* Сетка отзывов */
.reviews-grid-new {
    display: block;
    margin-bottom: 40px;
}

/* Карточка отзыва */
/* Элемент отзыва в строчном виде */
.review-item {
    background: white;
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(13, 82, 104, 0.08);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.review-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #ff5722 0%, #ff7043 100%);
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(13, 82, 104, 0.15);
}

.review-item-header {
    display: flex;
    gap: 15px;
    margin-bottom: 0;
}

.review-avatar-block {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #ff5722;
    box-shadow: 0 2px 10px rgba(255, 87, 34, 0.3);
}

.review-avatar-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-title-and-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-title-block {
    flex: 0 0 auto;
}

.review-title-block h3 {
    color: #0d5268;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.review-meta-line {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #7f8c8d;
    font-weight: 600;
    align-items: center;
}

.review-meta-line span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-meta-line i {
    font-size: 11px;
}

.review-city i {
    color: #ff5722;
}

.review-date i {
    color: #0d5268;
}

.review-rating {
    font-size: 14px;
}

.review-rating i {
    color: #ffc107;
}

.review-item-content {
    color: #2c3e50;
    font-size: 14px;
    line-height: 1.6;
    padding-left: 0;
    margin-top: 5px;
}

/* Ответ администратора */
.admin-reply {
    margin-top: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f7ff 100%);
    border-left: 4px solid #0d5268;
    border-radius: 8px;
}

.admin-reply-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #0d5268;
    font-size: 13px;
}

.admin-reply-header i {
    font-size: 14px;
}

.admin-reply-date {
    margin-left: auto;
    font-size: 11px;
    color: #666;
    font-weight: normal;
}

.admin-reply-text {
    color: #2c3e50;
    font-size: 13px;
    line-height: 1.6;
    padding-left: 22px;
}

/* Адаптивность для отзывов */
@media (max-width: 768px) {
    .review-item-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .review-title-and-content {
        align-items: center;
    }
    
    .review-meta-line {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .admin-reply-text {
        padding-left: 0;
    }
}

.review-date-badge i {
    margin-right: 5px;
}

.review-content {
    color: #2c3e50;
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}

/* Пагинация */
.reviews-pagination {
    margin-top: 40px;
}

.reviews-pagination .pagination {
    gap: 8px;
}

.reviews-pagination .page-link {
    color: #0d5268;
    border: 2px solid #e0e7ef;
    border-radius: 10px;
    padding: 10px 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.reviews-pagination .page-link:hover {
    background: #267a9b;
    color: white;
    border-color: #267a9b;
    transform: translateY(-2px);
}

.reviews-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #0d5268 0%, #267a9b 100%);
    border-color: #267a9b;
    color: white;
}

.reviews-pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Адаптивность */
@media (max-width: 1400px) {
    .container-reviews {
        max-width: 1200px !important;
    }
    
    .reviews-grid-new {
        display: block;
    }
}

@media (max-width: 992px) {
    .container-reviews {
        max-width: 960px !important;
    }
    
    .reviews-page-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .reviews-grid-new {
        display: block;
    }
    
    .reviews-page-header h1 {
        font-size: 28px;
    }
    
    .reviews-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .reviews-filters {
        flex-direction: column;
    }
}

/* ========== СТРАНИЦА НОВОСТЕЙ ========== */
.news-page-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    min-height: 100vh;
    padding: 40px 0 60px;
}

.news-page-container {
    max-width: 1600px !important;
    margin: 0 auto;
    padding: 0 15px;
}

/* Заголовок страницы */
.news-page-header {
    text-align: center;
    margin-bottom: 50px;
}

.news-page-header h1 {
    color: #0d5268;
    font-weight: 800;
    font-size: 42px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.news-page-header h1 i {
    color: #ff5722;
    margin-right: 15px;
}

.news-page-subtitle {
    color: #7f8c8d;
    font-size: 18px;
    font-weight: 500;
}

/* Панель управления */
.news-controls {
    background: white;
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.news-stats {
    color: #0d5268;
    font-size: 18px;
    font-weight: 600;
}

.news-stats i {
    color: #ff5722;
    margin-right: 8px;
}

.news-filter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-filter label {
    color: #0d5268;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

.news-filter label i {
    color: #ff5722;
    margin-right: 5px;
}

.news-filter select {
    border: 2px solid #e0e7ef;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 600;
    color: #0d5268;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
}

.news-filter select:hover {
    border-color: #267a9b;
}

.news-filter select:focus {
    outline: none;
    border-color: #267a9b;
    box-shadow: 0 0 0 0.2rem rgba(38, 122, 155, 0.15);
}

/* Список новостей */
.news-list {
    max-width: 1600px;
    margin: 0 auto;
}

/* Элемент новости */
.news-item {
    background: white;
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(13, 82, 104, 0.08);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #ff5722 0%, #ff7043 100%);
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(13, 82, 104, 0.15);
}

/* Шапка новости */
.news-item-header {
    display: flex;
    gap: 15px;
    margin-bottom: 0;
}

.news-title-and-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Блок даты */
.news-date-block {
    background: linear-gradient(135deg, #0d5268 0%, #267a9b 100%);
    color: white;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    min-width: 150px;
    box-shadow: 0 2px 10px rgba(13, 82, 104, 0.2);
    flex-shrink: 0;
}

.news-day {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.news-month {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 3px;
    opacity: 0.9;
}

.news-year {
    font-size: 22px;
    font-weight: 600;
    margin-top: 3px;
    opacity: 0.8;
}

/* Блок заголовка */
.news-title-block {
    flex: 0 0 auto;
}

.news-title-block h2 {
    color: #0d5268;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.news-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #7f8c8d;
    font-weight: 600;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-meta i {
    color: #ff5722;
    font-size: 11px;
}

/* Контент новости */
.news-item-content {
    color: #2c3e50;
    font-size: 14px;
    line-height: 1.6;
    padding-left: 0;
    margin-top: 5px;
}

/* Адаптивность */
@media (max-width: 992px) {
    .news-page-header h1 {
        font-size: 32px;
    }
    
    .news-item {
        padding: 30px;
    }
    
    .news-item-header {
        flex-direction: column;
    }
    
    .news-date-block {
        width: 100px;
        margin: 0 auto;
    }
    
    .news-item-content {
        padding-left: 0;
        margin-top: 20px;
    }
    
    .news-title-block h2 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .news-page-header h1 {
        font-size: 28px;
    }
    
    .news-item {
        padding: 20px;
    }
    
    .news-title-block h2 {
        font-size: 20px;
    }
    
    .news-item-content {
        font-size: 15px;
    }
}

/* Пагинация новостей */
.news-pagination {
    margin-top: 40px;
}

.news-pagination .pagination {
    gap: 8px;
}

.news-pagination .page-link {
    color: #0d5268;
    border: 2px solid #e0e7ef;
    border-radius: 10px;
    padding: 10px 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.news-pagination .page-link:hover {
    background: #267a9b;
    color: white;
    border-color: #267a9b;
    transform: translateY(-2px);
}

.news-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #0d5268 0%, #267a9b 100%);
    border-color: #267a9b;
    color: white;
}

.news-pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========== СТРАНИЦА КОНТАКТОВ ========== */
.contacts-page-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    min-height: 100vh;
    padding: 40px 0 60px;
}

.contacts-page-container {
    max-width: 1600px !important;
    margin: 0 auto;
    padding: 0 15px;
}

/* Заголовок страницы */
.contacts-page-header {
    text-align: center;
    margin-bottom: 50px;
}

.contacts-page-header h1 {
    color: #0d5268;
    font-weight: 800;
    font-size: 42px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contacts-page-header h1 i {
    color: #ff5722;
    margin-right: 15px;
}

.contacts-page-subtitle {
    color: #7f8c8d;
    font-size: 18px;
    font-weight: 500;
}

/* Контент */
.contacts-content {
    display: block;
    max-width: 100%;
}

/* Блок контактной информации */
.contacts-info-block {
    display: none;
}

.contact-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 20px;
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(13, 82, 104, 0.15);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0d5268 0%, #267a9b 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-card-content h3 {
    color: #0d5268;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.contact-card-content p {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.contact-card-content a {
    color: #267a9b;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card-content a:hover {
    color: #ff5722;
}

.contact-card-content small {
    color: #7f8c8d;
    font-size: 13px;
}

.social-links-contacts {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-link-contact {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d5268 0%, #267a9b 100%) !important;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link-contact i {
    color: white !important;
}

.social-link-contact:hover {
    background: #ff5722 !important;
    color: white !important;
    transform: scale(1.1);
}

/* Блок формы */
.contacts-form-block {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(13, 82, 104, 0.1);
}

.contacts-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.contacts-form-header h2 {
    color: #0d5268;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contacts-form-header h2 i {
    color: #ff5722;
    margin-right: 10px;
}

.contacts-form-header p {
    color: #7f8c8d;
    font-size: 16px;
}

/* Форма */
.contact-form .form-label {
    color: #0d5268;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.contact-form .form-label i {
    color: #ff5722;
    margin-right: 5px;
}

.contact-form .required {
    color: #ff5722;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e0e7ef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 15px;
    transition: all 0.3s;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #267a9b;
    box-shadow: 0 0 0 0.2rem rgba(38, 122, 155, 0.15);
    outline: none;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.captcha-block {
    display: flex;
    align-items: center;
    gap: 15px;
}

.captcha-question {
    background: linear-gradient(135deg, #0d5268 0%, #267a9b 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
}

.captcha-input {
    max-width: 150px;
}

.btn-submit-contact {
    background: linear-gradient(135deg, #ff5722 0%, #ff7043 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.btn-submit-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

.btn-submit-contact i {
    margin-right: 10px;
}

.form-privacy-text {
    margin-top: 15px;
    font-size: 13px;
    color: #7f8c8d;
}

.form-privacy-text i {
    color: #ff5722;
    margin-right: 5px;
}

.form-privacy-text a {
    color: #267a9b;
    text-decoration: none;
}

.form-privacy-text a:hover {
    text-decoration: underline;
}

/* Алерты */
.alert {
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert i {
    font-size: 20px;
}

.alert-success {
    background: #d4edda;
    border: 2px solid #c3e6cb;
    color: #155724;
}

.alert-danger {
    background: #f8d7da;
    border: 2px solid #f5c6cb;
    color: #721c24;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .contacts-content {
        display: block;
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .contacts-content {
        display: block;
        max-width: 100%;
    }
    
    .contacts-page-header h1 {
        font-size: 32px;
    }
    
    .contacts-form-block {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contacts-page-header h1 {
        font-size: 28px;
    }
    
    .contacts-form-block {
        padding: 20px;
    }
    
    .contacts-form-header h2 {
        font-size: 22px;
    }
    
    .captcha-block {
        flex-direction: column;
        align-items: stretch;
    }
    
    .captcha-input {
        max-width: 100%;
    }
}

/* Реквизиты в контактах */
.contact-card-content p + p {
    margin-top: 5px;
}

.contact-card-content p strong {
    color: #0d5268;
    font-weight: 700;
}

/* ========== ФУТЕР - НОВЫЙ ДИЗАЙН НИЗА ========== */
.footer-bottom {
    padding: 30px 0 !important;
    border-top: 1px solid rgba(255,255,255,0.15) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
}

.footer-copyright-left {
    text-align: left !important;
    flex: 1;
}

.footer-copyright-left p {
    margin: 0 !important;
    margin-left: 40px !important;
    font-size: 16px !important;
    color: rgba(255,255,255,0.85) !important;
    font-weight: 600 !important;
    line-height: 1.8 !important;
}

.footer-links-center {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    flex: 1;
    justify-content: center !important;
}

.footer-links-center a {
    color: white !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: color 0.3s !important;
}

.footer-links-center a:hover {
    color: #ffc107 !important;
    text-decoration: underline !important;
}

.footer-links-center .separator {
    color: rgba(255,255,255,0.5) !important;
    font-size: 18px !important;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .footer-copyright-left {
        text-align: center !important;
    }
}

/* ========== СТРАНИЦА КАТАЛОГА СТАТЕЙ ========== */
.articles-page-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    min-height: 100vh;
    padding: 40px 0 60px;
}

.articles-page-container {
    max-width: 1600px !important;
    margin: 0 auto;
    padding: 0 15px;
}

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

.articles-page-header h1 {
    color: #0d5268;
    font-weight: 800;
    font-size: 42px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.articles-page-header h1 i {
    color: #ff5722;
    margin-right: 15px;
}

.articles-page-subtitle {
    color: #7f8c8d;
    font-size: 18px;
    font-weight: 500;
}

/* Панель управления */
.articles-controls {
    background: white;
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
}

.articles-stats {
    color: #0d5268;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
}

.articles-stats i {
    color: #ff5722;
    margin-right: 8px;
}

.articles-search {
    width: 100% !important;
}

.articles-search .search-form {
    display: flex !important;
    gap: 10px;
    align-items: center;
    width: 100% !important;
}

.articles-search .search-input-group {
    display: flex !important;
    flex: 1 !important;
    width: 100% !important;
}

.articles-search .search-input {
    flex: 1;
    border: 2px solid #e0e7ef;
    border-right: none;
    border-radius: 10px 0 0 10px;
    padding: 12px 15px;
    font-size: 15px;
    font-weight: 500;
    color: #0d5268;
    transition: all 0.3s;
}

.articles-search .search-input:focus {
    outline: none;
    border-color: #267a9b;
}

.articles-search .search-btn {
    background: linear-gradient(135deg, #0d5268 0%, #267a9b 100%);
    color: white;
    border: none;
    border-radius: 0 10px 10px 0;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.articles-search .search-btn:hover {
    background: linear-gradient(135deg, #267a9b 0%, #4da8d0 100%);
}

.clear-search {
    color: #ff5722;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.clear-search:hover {
    text-decoration: underline;
}

.articles-filter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.articles-filter label {
    color: #0d5268;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

.articles-filter label i {
    color: #ff5722;
    margin-right: 5px;
}

.articles-filter select {
    border: 2px solid #e0e7ef;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 600;
    color: #0d5268;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
}

.articles-filter select:hover {
    border-color: #267a9b;
}

/* Сетка статей */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.no-articles {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #7f8c8d;
}

.no-articles i {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-articles p {
    font-size: 18px;
}

/* Карточка статьи */
.article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(13, 82, 104, 0.15);
}

.article-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0d5268 0%, #267a9b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 64px;
}

.article-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 87, 34, 0.95);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
}

.article-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-title {
    margin: 0 0 15px 0;
}

.article-title a {
    color: #0d5268;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s;
}

.article-title a:hover {
    color: #ff5722;
}

.article-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-meta i {
    color: #ff5722;
}

.article-excerpt {
    color: #2c3e50;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex: 1;
}

.article-read-more,
.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #0d5268 0%, #267a9b 100%);
    color: white !important;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(13, 82, 104, 0.3);
    margin-top: 15px;
    width: 200px;
    margin-left: auto;
    }

.article-read-more:hover,
.btn-read-more:hover {
    background: linear-gradient(135deg, #ff5722 0%, #e64a19 100%);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

.article-read-more i,
.btn-read-more i {
    transition: transform 0.3s;
    font-size: 14px;
}

.article-read-more:hover i,
.btn-read-more:hover i {
    transform: translateX(5px);
}

/* Пагинация */
.articles-pagination {
    margin-top: 40px;
}

.articles-pagination .pagination {
    gap: 8px;
}

.articles-pagination .page-link {
    color: #0d5268;
    border: 2px solid #e0e7ef;
    border-radius: 10px;
    padding: 10px 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.articles-pagination .page-link:hover {
    background: #267a9b;
    color: white;
    border-color: #267a9b;
    transform: translateY(-2px);
}

.articles-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #0d5268 0%, #267a9b 100%);
    border-color: #267a9b;
    color: white;
}

/* ========== СТРАНИЦА СТАТЬИ ========== */
.article-page-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    min-height: 100vh;
    padding: 40px 0 60px;
}

.article-page-container {
    max-width: 1600px !important;
    margin: 0 auto;
    padding: 0 20px;
}

.article-breadcrumb {
    background: white;
    padding: 15px 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.article-breadcrumb a {
    color: #267a9b;
    text-decoration: none;
    transition: color 0.3s;
}

.article-breadcrumb a:hover {
    color: #ff5722;
}

.article-breadcrumb i {
    color: #7f8c8d;
    font-size: 12px;
}

.article-breadcrumb span {
    color: #7f8c8d;
}

.article-full {
    background: white;
    border-radius: 20px;
    padding: 60px 80px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.article-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 3px solid #e0e7ef;
}

.article-title-full {
    color: #0d5268;
    font-size: 42px;
    font-weig
