/* Стили для страницы контактов */
.contacts-hero {
    text-align: center;
    padding: 3rem 0;
    background: white;
    margin-top: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contacts-hero h1 {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contacts-hero p {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

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

.contact-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon .material-icons {
    font-size: 50px;
    color: white;
}

.contact-card h2 {
    font-size: 1.8rem;
    color: #667eea;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-value {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

.contact-link .material-icons {
    font-size: 24px;
}

.whatsapp-card .contact-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.whatsapp-card h2 {
    color: #25D366;
}

.whatsapp-card .contact-link {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.whatsapp-card .contact-link:hover {
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.info-section {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 3rem 0;
    text-align: center;
}

.info-section h3 {
    font-size: 1.8rem;
    color: #667eea;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-section p {
    font-size: 1.1rem;
    color: #7f8c8d;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contacts-hero h1 {
        font-size: 2rem;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 2rem;
    }
}
