/* --- CSS needed for Contact Page --- */
.contact-section {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 80vh;
}

.contact-info-wrapper {
    background-color: #0A3831;
    /* Dark green from image */
    color: var(--color-white);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-wrapper h2 {
    font-size: clamp(1rem, 5vw, 2.5rem);
    font-weight: 700;
    margin: 0 0 3rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 1.5rem;
    color: #34D399;
    /* Light green for icons */
    margin-top: 5px;
}

.contact-details h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.contact-details p,
.contact-details a {
    font-size: 1rem;
    color: #d1d5db;
    /* Lighter text for details */
    text-decoration: none;
    margin: 0;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--color-white);
}

.map-wrapper {
    width: 100%;
    height: 400px;
    /* Height for mobile view */
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Responsive Layout --- */
@media (min-width: 992px) {
    .contact-section {
        grid-template-columns: 450px 1fr;
        /* Two columns on desktop */
    }

    .map-wrapper {
        height: 100%;
        /* Full height on desktop */
    }
}