/* Styles specific to the Contact page */

/* --- Page Hero --- */
.page-hero {
    position: relative;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background-image: url('https://images.unsplash.com/photo-1587560699334-bea93391dcef?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.page-hero h1,
.page-hero p {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3.5rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* --- Contact Section --- */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch; /* Make columns equal height */
}

.contact-details .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.contact-intro {
    color: #555;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-right: 1.5rem;
    margin-top: 5px;
    width: 30px; /* Allocate space for the icon */
}

.item-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-navy);
}

.item-content p,
.item-content a {
    font-size: 1rem;
    color: #555;
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.item-content a:hover {
    color: var(--primary-blue);
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-height: 400px;
}


/* --- Responsive Styles --- */
@media (max-width: 992px) {
    .page-hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-details .section-title {
        text-align: center;
    }
}