/* =========================================
           2. INFO CARDS
           ========================================= */
.info-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
    border-bottom: 4px solid transparent;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--Light-Primary-50);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: var(--Light-Secondary-50);
    color: var(--Light-Primary-20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    transition: 0.3s;
}

.info-card:hover .info-icon {
    background: var(--Light-Primary-50);
    color: #fff;
}

.info-heading {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--Text-Color);
}

.info-text {
    font-size: 0.95rem;
    color: var(--Gray-Color);
    margin-bottom: 5px;
}

.info-link {
    font-weight: 600;
    color: var(--Text-Color);
}

.info-link:hover {
    color: var(--Light-Primary-50);
}

/* =========================================
           3. MAP SECTION
           ========================================= */
.map-wrapper {
    margin-top: 60px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 450px;
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-title {
        font-size: 2rem;
    }

    .info-card {
        margin-bottom: 20px;
        padding: 30px 20px;
    }

    .map-wrapper {
        height: 300px;
        margin-top: 40px;
    }
}