/* ══════════════════════════════════════════
   Gandhi Immigration – Contact Page
   ══════════════════════════════════════════ */

/* ── Section ── */
.gandhi-contact-section {
    padding: 80px 0 60px;
    background: #fff;
}

.gandhi-contact-inner {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
}

/* ── Left Image ── */
.gandhi-contact-image {
    flex: 0 0 50%;
    max-width: 50%;
}

.gandhi-contact-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* ── Right Info ── */
.gandhi-contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ── Info Card (pill) ── */
.gandhi-contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 26px;
    border: 1.5px solid #01559E;
    border-radius: 50px;
    color: #01559E;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gandhi-contact-card:hover {
    background: #01559E;
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(1, 85, 158, 0.22);
}

.gandhi-contact-card i {
    color: #01559E;
    font-size: 20px;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.gandhi-contact-card:hover i {
    color: #F57D26;
}

.gandhi-contact-card > span {
    color: #01559E;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.gandhi-contact-card:hover > span {
    color: #ffffff;
}

.gandhi-contact-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #01559E;
    opacity: 0.65;
    line-height: 1;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.gandhi-contact-card:hover .gandhi-contact-label {
    color: rgba(255, 255, 255, 0.75);
    opacity: 1;
}

.gandhi-contact-card a {
    color: #01559E;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.gandhi-contact-card:hover a {
    color: #ffffff;
}

.gandhi-contact-card a:hover {
    text-decoration: underline;
}

/* ── Calendly Widget (inside right column) ── */
.gandhi-contact-info .calendly-inline-widget {
    width: 100%;
    min-width: 0 !important;
    border-radius: 12px;
    overflow: hidden;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .gandhi-contact-inner {
        flex-direction: column;
        gap: 40px;
    }

    .gandhi-contact-image {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .gandhi-contact-section {
        padding: 50px 0 40px;
    }

    .gandhi-contact-card {
        padding: 12px 20px;
    }
}
