/* E-SQUARE VENTURES - CONTACT PAGE STYLESHEET */

/* ------------------- */
/* Contact Hero        */
/* ------------------- */
.contact-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1534536281715-e28d76689b4d?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
    padding: 100px 0;
    text-align: center;
    color: var(--secondary-color);
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.2rem;
    margin-top: 10px;
    opacity: 0.9;
}

/* ------------------- */
/* Contact Section     */
/* ------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-details .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.contact-details > p {
    margin-bottom: 30px;
    line-height: 1.8;
    color: #555;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-info-item .icon-box {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--light-gray-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.contact-info-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.contact-info-item h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.contact-info-item p {
    color: #555;
    line-height: 1.6;
}

/* --- UPDATED LINK STYLES --- */
.contact-info-item a {
    color: inherit; /* Inherit color from parent <p> tag */
    font-weight: normal; /* Match the regular paragraph font weight */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s ease;
}
.contact-info-item a:hover {
    color: var(--primary-color); /* Turn purple on hover */
    text-decoration: none; /* Ensure no underline on hover */
}

.contact-map {
    height: 550px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* -------------------------- */
/* Responsive Adjustments     */
/* -------------------------- */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-details .section-title {
        text-align: center;
    }
    .contact-map {
        height: 400px;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
}