/* Стили для страницы контактов */
.contact-info {
    margin: 2rem 0;
}

.contact-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #4CAF50;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item a {
    color: #4CAF50;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: #2E7D32;
    text-decoration: underline;
}

.contact-item a:focus {
    outline: 2px solid #4CAF50;
    outline-offset: 2px;
    border-radius: 2px;
}

.email-button-container {
    margin-top: 1rem;
    text-align: left;
}

.btn-email {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(76, 175, 80, 0.3);
    min-width: 200px;
}

.btn-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.4);
}

.btn-email:active {
    transform: translateY(0);
}

/* Стили для карты */
.map-container {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Стили для часов работы */
.working-hours {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
}

.working-hours h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.working-hours p {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    opacity: 0.9;
}

/* Стили для FAQ аккордеона */
.faq-section {
    margin: 3rem 0;
}

.faq-section h3 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    background: #f8f9fa;
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question:focus {
    outline: 2px solid #4CAF50;
    outline-offset: -2px;
}

.faq-question[aria-expanded="true"] {
    background: #4CAF50;
    color: white;
}

.faq-icon {
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 1.5rem;
    background: white;
    border-top: 1px solid #e1e8ed;
    line-height: 1.6;
    color: #555;
}

.faq-answer p {
    margin: 0;
    font-size: 1rem;
}

/* Дополнительные стили для контактной информации */
.additional-info {
    margin: 3rem 0;
}

.additional-info h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.method-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.method-card h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.method-card p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.social-links {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.social-links li {
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
}

.social-links a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
}

.social-links a:hover {
    text-decoration: underline;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .contact-item {
        padding: 1rem;
    }
    
    .contact-item h3 {
        font-size: 1.1rem;
    }
    
    .contact-item a {
        font-size: 1rem;
    }
    
    .btn-email {
        width: 100%;
        min-width: auto;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .working-hours {
        padding: 1.5rem;
    }
    
    .working-hours h3 {
        font-size: 1.3rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 1rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .method-card {
        padding: 1rem;
    }
}