.contacts-section {
    padding-top: 120px;
    padding-bottom: 120px;
}

.contacts-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    color: #3C2E24; /* Темно-коричневый для заголовков */
    font-family: 'Fira Sans', sans-serif;
}

.contacts-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #7C5747, #3C2E24); /* Теплый градиент */
    border-radius: 2px;
}

.contacts-subtitle {
    font-size: 1.2rem;
    color: #7C5747; /* Теплый коричневый */
    max-width: 600px;
    margin: 0 auto 1rem;
}

.contact-card {
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(23, 58, 56, 0.08);
    padding: 40px 35px;
    height: 100%;
    border: 1px solid rgba(124, 87, 71, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(23, 58, 56, 0.12);
    border-color: #009640; /* Яркий зеленый при наведении */
}

.contact-icon {
    background: rgba(0, 150, 64, 0.1); /* Мягкий зеленый фон */
    color: #009640; /* Яркий зеленый для иконок */
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 50%;
    flex-shrink: 0;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: #009640; /* Яркий зеленый фон при наведении */
    color: #FFFFFF;
    transform: scale(1.1);
}

.contact-item h5 {
    color: #3C2E24; /* Темно-коричневый */
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-family: 'Fira Sans', sans-serif;
}

.contact-item p {
    color: #7C5747; /* Теплый коричневый */
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-item a {
    color: #7C5747;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #009640; /* Яркий зеленый при наведении */
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(23, 58, 56, 0.08);
    border: 1px solid rgba(124, 87, 71, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(23, 58, 56, 0.12);
    border-color: #009640;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: none;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(124, 87, 71, 0.1);
    border-radius: 25px;
    color: #7C5747;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: #009640; /* Яркий зеленый */
    color: #FFFFFF;
    transform: translateY(-3px) scale(1.1);
}

.hours-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 30px;
    margin-top: 30px;
    border: 1px solid rgba(124, 87, 71, 0.1);
    box-shadow: 0 5px 20px rgba(23, 58, 56, 0.05);
}

.hours-title {
    color: #3C2E24;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(124, 87, 71, 0.1);
}

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

.hours-day {
    color: #7C5747;
    font-weight: 500;
}

.hours-time {
    color: #009640; /* Яркий зеленый для времени */
    font-weight: 600;
}

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

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .contacts-section {
        padding: 80px 0;
    }

    .contacts-title {
        font-size: 2.5rem;
    }

    .contact-card {
        padding: 30px 25px;
        margin-bottom: 20px;
    }

    .map-container iframe {
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    .contacts-title {
        font-size: 2rem;
    }

    .contacts-subtitle {
        font-size: 1rem;
    }
}
