/* Contact Page Styles */
.map-section {
    width: 100%;
    line-height: 0;
}

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

.contact-section {
    padding: 60px 0;
}

.grid-2-1 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.contact-form-wrapper {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h2 {
    margin-bottom: 25px;
    color: var(--color-primary, #212121);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent, #0fb6ee);
}

.contact-details {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

.contact-details h2 {
    margin-bottom: 25px;
    color: var(--color-primary, #212121);
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h4 {
    color: var(--color-accent, #0fb6ee);
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 600;
}

.contact-item p {
    margin: 5px 0;
}

.contact-item address {
    font-style: normal;
    line-height: 1.6;
}

.contact-item a {
    color: var(--color-accent, #0fb6ee);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .grid-2-1 {
        grid-template-columns: 1fr;
    }

    .map-container iframe {
        height: 300px;
    }
}
