.header-contact ul li {
    display: inline-flex;
    align-items: center;
    margin-right: 45px;
}

.header-contact ul li img {
    margin-right: 10px;
    vertical-align: middle;
}

.header-contact ul li span {
    color: #dee2e6;
    font-size: 15px;
    font-weight: 400;
    margin-left: 10px;
    vertical-align: middle;
    white-space: nowrap;
}

/* ====== ЯЗЫКОВОЙ ПЕРЕКЛЮЧАТЕЛЬ ====== */
.language-switcher {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    text-decoration: none;
}

.lang-btn.active {
    background: rgba(255, 198, 0, 0.2);
    border-color: #ffc600;
    color: #ffc600;
    font-weight: 600;
}

.flag-emoji {
    font-size: 14px;
    line-height: 1;
}

/* ====== COURSE FILTER STYLES ====== */
.course-filter {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.course-filter .form-group {
    margin-bottom: 0;
}

.course-filter .form-control {
    height: 50px;
    padding: 12px 15px;
    font-size: 14px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #fff;
    color: #333;
}

.course-filter .form-control:focus {
    border-color: #ffc600;
    box-shadow: 0 0 0 0.2rem rgba(255, 198, 0, 0.25);
    outline: none;
}

.course-filter select.form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23666' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    padding-right: 35px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.course-filter .main-btn {
    height: 50px;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.course-filter .main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 198, 0, 0.4);
}

/* Адаптивность для фильтров */
@media (max-width: 768px) {
    .course-filter {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .course-filter .col-md-3,
    .course-filter .col-md-4,
    .course-filter .col-md-2,
    .course-filter .col-md-10 {
        margin-bottom: 15px;
    }
    
    .course-filter .form-control {
        height: 45px;
        font-size: 13px;
    }
    
    .course-filter .main-btn {
        height: 45px;
        font-size: 13px;
    }
}


/* Стили для секции "Наши программы" */
#programs-part {
    background-color: #ffffff;
    position: relative;
    z-index: 2;
}

/* Цвет заголовка как в меню */
#programs-part .section-title h2 {
    color: #07294d !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Стили для формы заявки - двухколоночный дизайн */
#application-part {
    background: #edf0f2;
    position: relative;
    overflow: hidden;
}

#application-part::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ffc600 0%, #ff8c00 100%);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

#application-part::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #07294d 0%, #0d4a7c 100%);
    border-radius: 50%;
    opacity: 0.08;
    z-index: 1;
}

/* Заголовок секции */
.application-title {
    color: #07294d !important;
    font-size: 3rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    margin-bottom: 1rem !important;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

/* Левая колонка - Контент */
.application-content {
    position: relative;
    z-index: 2;
    padding-right: 2rem;
}

.content-header {
    margin-bottom: 2.5rem;
}

.content-title {
    color: #07294d;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.content-subtitle {
    color: #ffc600;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.content-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Список преимуществ */
.advantages-list {
    margin-bottom: 2.5rem;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid #ffc600;
}

.advantage-item:hover {
    background: #fff;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffc600 0%, #ff8c00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.advantage-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.advantage-content h4 {
    color: #07294d;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.advantage-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Контактная информация */
.contact-info {
    background: rgba(7, 41, 77, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(7, 41, 77, 0.1);
}

.contact-info h4 {
    color: #07294d;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #666;
    font-size: 1rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: #ffc600;
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

/* Детали курса */
.course-details {
    margin-bottom: 2.5rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid #ffc600;
}

.detail-item:hover {
    background: #fff;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffc600 0%, #ff8c00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.detail-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.detail-content h4 {
    color: #07294d;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.detail-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Заголовок курса */
.course-title {
    color: #ffc600 !important;
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
}

/* Правая колонка - Форма */
.application-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.application-form-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

/* Форма */
.application-form {
    position: relative;
    z-index: 3;
}

/* Строки формы */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Группы полей */
.form-group {
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

/* Специально для группы с курсом */
.form-group:has(select) {
    z-index: 1000;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
    color: #333;
    font-family: 'Roboto', sans-serif;
    position: relative;
    z-index: 2;
}

/* Специально для select элементов */
.form-control select,
select.form-control {
    z-index: 1001;
}

/* Выпадающий список */
select.form-control option {
    z-index: 1002;
}

/* Увеличиваем высоту выпадающего списка */
select.form-control {
    max-height: none !important;
}

/* Стили для выпадающего списка */
select.form-control:focus {
    z-index: 1003;
}

/* Убираем ограничения по высоте для select */
select.form-control {
    height: auto !important;
    min-height: 50px;
}

/* Убираем overflow hidden только для формы */
.application-form-wrapper {
    overflow: visible !important;
}

/* Увеличиваем размер выпадающего списка */
select.form-control {
    size: 10 !important;
}

/* Стили для опций */
select.form-control option {
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.4;
}

/* Стили для футера */
#footer-part {
    position: relative;
    z-index: 1;
    margin-top: auto;
}

/* Обеспечиваем правильное позиционирование футера */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Убираем overflow hidden только для секции с формой */
#application-part {
    overflow: visible !important;
}

.form-control:focus {
    border-color: #ffc600;
    box-shadow: 0 0 0 0.25rem rgba(255, 198, 0, 0.15);
    outline: none;
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: #adb5bd;
    font-style: italic;
    font-weight: 400;
}

.form-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Кнопка отправки */
.form-submit {
    text-align: center;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.submit-btn {
    background: linear-gradient(135deg, #ffc600 0%, #ff8c00 100%);
    color: #333;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 198, 0, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #ffb300 0%, #ff7f00 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 198, 0, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.btn-text {
    transition: all 0.3s ease;
}

.btn-icon {
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Алерты */
.form-alert {
    margin-bottom: 2rem;
    border-radius: 12px;
    border: none;
    font-weight: 500;
    animation: slideInDown 0.5s ease;
}

/* Анимации */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 198, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 198, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 198, 0, 0);
    }
}

/* Анимация появления формы */
.application-form-wrapper {
    animation: fadeInUp 0.8s ease;
}

/* Анимация полей формы */
.form-group {
    animation: fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }
.form-group:nth-child(6) { animation-delay: 0.6s; }
.form-group:nth-child(7) { animation-delay: 0.7s; }
.form-group:nth-child(8) { animation-delay: 0.8s; }

/* Интерактивность полей */
.form-control:focus {
    animation: pulse 2s infinite;
}

/* Эффект загрузки для кнопки */
.submit-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.submit-btn.loading .btn-text {
    opacity: 0;
}

.submit-btn.loading .btn-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Эффект успешной отправки */
.form-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
    animation: slideInDown 0.5s ease;
}

/* Дополнительные эффекты при наведении */
.form-group:hover .form-control {
    border-color: #ffc600;
    transform: translateY(-1px);
}

.form-group:hover label {
    color: #ffc600;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .application-title {
        font-size: 2.5rem !important;
    }
    
    .content-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 991px) {
    .application-title {
        font-size: 2.2rem !important;
    }
    
    .application-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .content-title {
        font-size: 1.5rem;
    }
    
    .advantage-item {
        padding: 0.875rem;
    }
    
    .advantage-icon {
        width: 45px;
        height: 45px;
    }
    
    .advantage-icon i {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .application-title {
        font-size: 1.8rem !important;
        letter-spacing: 1px;
    }
    
    .content-title {
        font-size: 1.4rem;
    }
    
    .content-subtitle {
        font-size: 1.1rem;
    }
    
    .content-text {
        font-size: 1rem;
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .advantage-icon {
        margin-right: 0;
        margin-bottom: 0.75rem;
    }
    
    .advantage-content h4 {
        font-size: 1rem;
    }
    
    .advantage-content p {
        font-size: 0.9rem;
    }
    
    .application-form-wrapper {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .form-control {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .contact-info {
        padding: 1.25rem;
    }
    
    .contact-info h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .application-title {
        font-size: 1.6rem !important;
        letter-spacing: 0.5px;
    }
    
    .content-title {
        font-size: 1.3rem;
    }
    
    .content-subtitle {
        font-size: 1rem;
    }
    
    .advantage-item {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .advantage-icon {
        width: 40px;
        height: 40px;
    }
    
    .advantage-icon i {
        font-size: 1rem;
    }
    
    .application-form-wrapper {
        padding: 1.25rem;
        margin: 0 0.25rem;
    }
    
    .form-control {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
}

.singel-course {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.singel-course:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.singel-course .course-image {
    position: relative;
    overflow: hidden;
    /* height: 200px; */
}

.singel-course .course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.singel-course:hover .course-image img {
    transform: scale(1.1);
}

.singel-course .course-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #6c757d;
}

.singel-course .course-placeholder i {
    font-size: 48px;
    margin-bottom: 10px;
    opacity: 0.7;
}

.singel-course .course-placeholder span {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.singel-course .course-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 41, 77, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.singel-course:hover .course-overlay {
    opacity: 1;
}

.singel-course .course-overlay .course-content .main-btn {
    background-color: #ffc600;
    color: #07294d;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.singel-course .course-overlay .course-content .main-btn:hover {
    background-color: #07294d;
    color: #fff;
    transform: translateY(-2px);
}

.singel-course .course-cont {
    padding: 25px 20px;
}

.singel-course .course-cont h4 {
    font-size: 18px;
    font-weight: 600;
    color: #07294d;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.singel-course .course-cont h4:hover {
    color: #ffc600;
}

.singel-course .course-cont p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.singel-course .course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: #888;
}

.singel-course .course-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: #f8f9fa;
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: 500;
}

.singel-course .course-meta i {
    color: #ffc600;
}

.course-btn {
    margin-top: 40px;
}

.course-btn .main-btn {
    background-color: #07294d;
    color: #fff;
    border: 2px solid #07294d;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.course-btn .main-btn:hover {
    background-color: #ffc600;
    color: #07294d;
    border-color: #ffc600;
    transform: translateY(-2px);
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .singel-course .course-image {
        height: 180px;
    }
    
    .singel-course .course-cont {
        padding: 20px 15px;
    }
    
    .singel-course .course-cont h4 {
        font-size: 16px;
    }
    
    .singel-course     .course-meta {
        flex-direction: column;
        gap: 8px;
    }
}

/* ====== РАЗДЕЛИТЕЛЬ СЕКЦИЙ ====== */
.section-divider {
    background: #edf0f2;
    position: relative;
    z-index: 3;
}

.divider-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.divider-line {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #ffc600 50%, transparent 100%);
    flex: 1;
    max-width: 150px;
    position: relative;
}

.divider-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #07294d 50%, transparent 100%);
    opacity: 0.3;
}

.divider-text {
    margin: 0 30px;
    position: relative;
    z-index: 2;
}

.divider-text h5 {
    color: #07294d;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    padding: 10px 20px;
    background: #fff;
    border: 2px solid #ffc600;
    border-radius: 25px;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.divider-text h5::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -15px;
    width: 10px;
    height: 2px;
    background: #ffc600;
    transform: translateY(-50%);
}

.divider-text h5::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    width: 10px;
    height: 2px;
    background: #ffc600;
    transform: translateY(-50%);
}

/* Адаптивность для разделителя */
@media (max-width: 768px) {
    .divider-line {
        max-width: 100px;
    }
    
    .divider-text {
        margin: 0 20px;
    }
    
    .divider-text h5 {
        font-size: 16px;
        padding: 8px 16px;
    }
}

@media (max-width: 576px) {
    .divider-line {
        max-width: 80px;
    }
    
    .divider-text {
        margin: 0 15px;
    }
    
    .divider-text h5 {
        font-size: 14px;
        padding: 6px 12px;
        letter-spacing: 0.5px;
    }
}

/* ====== СТИЛИ ДЛЯ СТРАНИЦЫ КОНТАКТОВ ====== */

/* Подзаголовок секции */
.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Контактные карточки */
.contact-cards {
    margin-top: 3rem;
}

.contact-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 198, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ffc600 0%, #ff8c00 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffc600 0%, #ff8c00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(255, 198, 0, 0.3);
}

.contact-card-icon i {
    font-size: 2rem;
    color: #fff;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon i {
    transform: scale(1.1);
}

.contact-card-content h4 {
    color: #07294d;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-card-content p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-card-content p a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card-content p a:hover {
    color: #ffc600;
    text-decoration: none;
}

.contact-card-subtitle {
    color: #ffc600;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Социальные сети */
.social-contact {
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 198, 0, 0.05) 0%, rgba(7, 41, 77, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 198, 0, 0.1);
}

.social-contact h4 {
    color: #07294d;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    min-width: 120px;
}

.social-link:hover {
    transform: translateY(-5px);
    text-decoration: none;
    color: #333;
}

.social-link.facebook:hover {
    border-color: #1877f2;
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.2);
}

.social-link.instagram:hover {
    border-color: #e4405f;
    box-shadow: 0 10px 25px rgba(228, 64, 95, 0.2);
}

.social-link.whatsapp:hover {
    border-color: #25d366;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
}

.social-link.telegram:hover {
    border-color: #0088cc;
    box-shadow: 0 10px 25px rgba(0, 136, 204, 0.2);
}

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

.social-link.facebook i {
    color: #1877f2;
}

.social-link.instagram i {
    color: #e4405f;
}

.social-link.whatsapp i {
    color: #25d366;
}

.social-link.telegram i {
    color: #0088cc;
}

.social-link:hover i {
    transform: scale(1.1);
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Карта */
.map-container {
    margin-top: 2rem;
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #ffc600 0%, #ff8c00 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

/* Информационные карточки */
.info-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 198, 0, 0.1);
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.info-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffc600 0%, #ff8c00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.info-card:hover .info-card-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 198, 0, 0.3);
}

.info-card-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.info-card-content h5 {
    color: #07294d;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-card-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.info-card-content .text-muted {
    color: #999;
    font-size: 0.9rem;
    font-style: italic;
}

/* Адаптивность для контактов */
@media (max-width: 991px) {
    .contact-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-card-icon {
        width: 70px;
        height: 70px;
    }
    
    .contact-card-icon i {
        font-size: 1.8rem;
    }
    
    .social-links {
        gap: 1.5rem;
    }
    
    .social-link {
        min-width: 100px;
        padding: 1.25rem;
    }
    
    .social-link i {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .contact-cards {
        margin-top: 2rem;
    }
    
    .contact-card {
        padding: 1.25rem;
    }
    
    .contact-card-content h4 {
        font-size: 1.1rem;
    }
    
    .contact-card-content p {
        font-size: 1rem;
    }
    
    .social-contact {
        margin-top: 3rem;
        padding: 2rem 1rem;
    }
    
    .social-contact h4 {
        font-size: 1.3rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        min-width: 90px;
        padding: 1rem;
    }
    
    .social-link i {
        font-size: 1.8rem;
    }
    
    .social-link span {
        font-size: 0.8rem;
    }
    
    .info-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .info-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .info-card-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .contact-card {
        padding: 1rem;
    }
    
    .contact-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-card-icon i {
        font-size: 1.5rem;
    }
    
    .contact-card-content h4 {
        font-size: 1rem;
    }
    
    .contact-card-content p {
        font-size: 0.95rem;
    }
    
    .social-contact {
        padding: 1.5rem 0.5rem;
    }
    
    .social-contact h4 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        min-width: 80px;
        padding: 0.875rem;
    }
    
    .social-link i {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }
    
    .social-link span {
        font-size: 0.75rem;
    }
    
    .info-card {
        padding: 1.25rem;
    }
    
    .info-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .info-card-icon i {
        font-size: 1.3rem;
    }
    
    .info-card-content h5 {
        font-size: 1.1rem;
    }
    
    .info-card-content p {
        font-size: 0.9rem;
    }
}
