/* Contacts Hero */
.contacts-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
url('../images/window1.jpg') center/cover no-repeat;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.contacts-hero h1 {
	color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contacts-hero .hero-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Contacts Info */
.contacts-info {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contacts-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-icon {
    font-size: 2rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.contacts-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.phones {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.phones a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.phones a:hover {
    color: #4CAF50;
}

.email {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin: 20px 0;
}

.work-hours p {
    color: #666;
    margin-bottom: 10px;
}

/* Contacts Map */
.contacts-map {
    padding: 80px 0;
    background-color: white;
}

.map-wrapper {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Contacts Feedback */
.contacts-feedback {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.feedback-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.feedback-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feedback-form h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.feedback-form p {
    color: #666;
    margin-bottom: 30px;
}

.feedback-form .form-group {
    margin-bottom: 20px;
}

.feedback-form input,
.feedback-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.feedback-form textarea {
    height: 150px;
    resize: vertical;
}

.feedback-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .feedback-wrapper {
        grid-template-columns: 1fr;
    }
    
    .feedback-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .contacts-hero h1 {
        font-size: 2rem;
    }
    
    .feedback-form {
        padding: 30px 20px;
    }
}