.contact-wrapper {
    font-family: 'Segoe UI', sans-serif;
    color: var(--text-black);
    background-color: var(--background-color);
    padding: 2rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-image {
    max-width: 200px;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.contact-header h1 {
    color: var(--primary-dark);
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .contact-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.contact-form-card,
.contact-info-card {
    flex: 1;
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.contact-form button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: var(--primary-dark);
}

.contact-info-card a {
    color: var(--primary-dark);
    text-decoration: none;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.contact-map-section {
    margin-top: 3rem;
}

.contact-map-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.map-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .map-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.map-grid iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 0.5rem;
}

.form-feedback {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.form-feedback.success {
    background: #e6f4ea;
    color: #1e7e34;
}

.form-feedback.error {
    background: #fdecea;
    color: #b71c1c;
}
