/* ======================================= */
/* ---        Contact Page Styles      --- */
/* ======================================= */

.page-header {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    margin-top: var(--header-height);
    background-image: url('https://images.unsplash.com/photo-1592595896551-12b371d546d5?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
    z-index: 1;
}

.page-header h1,
.page-header p {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.page-header h1 {
    font-size: 3.2rem;
}

.page-header p {
    font-size: 1.2rem;
}

/* --- Contact Section --- */
.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Two columns: details on left, map on right */
    gap: 3rem;
    align-items: flex-start;
}

/* Left Column: Contact Details */
.contact-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.contact-details > p {
    color: var(--light-text);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-green);
    width: 40px;
    flex-shrink: 0;
}

/* Styling for clickable email and phone links */
.info-item p a {
    color: inherit; /* Inherits the dark text color from the parent paragraph */
    text-decoration: none; /* Removes the default underline */
    transition: color 0.3s ease;
}

.info-item p a:hover {
    color: var(--primary-green); /* The bright green color on hover */
}

.contact-socials {
    margin-top: 2rem;
}

.contact-socials a {
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-right: 1.5rem;
}

.contact-socials a:hover {
    color: var(--primary-green);
}

/* Right Column: Map Container */
.map-container {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Stack columns on tablets/mobile */
        gap: 4rem; /* Increase gap when stacked */
    }
}