/* ══════════════════════════════════════════
   Gandhi Immigration – Home Page Final CTA Section
   ══════════════════════════════════════════ */

.gandhi-home-cta {
    position: relative;
    background: #01559E;
    padding: 90px 0;
    overflow: hidden;
    text-align: center;
}

/* Decorative radial glows */
.gandhi-home-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 55%),
        radial-gradient(circle at 90% 50%, rgba(245, 125, 38, 0.18) 0%, transparent 50%);
    pointer-events: none;
}

/* When a background image is set */
.gandhi-home-cta.has-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gandhi-home-cta.has-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(1, 42, 80, 0.72);
    pointer-events: none;
}

.gandhi-home-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* Badge */
.gandhi-home-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #F57D26;
    background: rgba(245, 125, 38, 0.15);
    border: 1.5px solid rgba(245, 125, 38, 0.45);
    border-radius: 50px;
    padding: 7px 18px;
    margin-bottom: 24px;
}

.gandhi-home-cta-badge i {
    font-size: 13px;
}

/* Heading */
.gandhi-home-cta-heading {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin: 0 0 20px;
    letter-spacing: -0.01em;
}

.gandhi-home-cta-heading span {
    color: #F57D26;
}

/* Body text */
.gandhi-home-cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    margin: 0 0 12px;
    max-width: 620px;
}

/* WhatsApp button */
.gandhi-home-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 38px;
    background: #F57D26;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 28px;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 28px rgba(245, 125, 38, 0.45);
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gandhi-home-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent);
    pointer-events: none;
}

.gandhi-home-cta-btn i {
    font-size: 20px;
}

.gandhi-home-cta-btn:hover {
    background: #e06a15;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(245, 125, 38, 0.55);
    color: #ffffff;
}

/* ══════════════════════════════════════════
   Responsive
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
    .gandhi-home-cta {
        padding: 70px 0;
    }

    .gandhi-home-cta-inner {
        padding: 0 24px;
    }

    .gandhi-home-cta-heading {
        font-size: 26px;
    }

    .gandhi-home-cta-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .gandhi-home-cta-heading {
        font-size: 22px;
    }

    .gandhi-home-cta-btn {
        font-size: 14px;
        padding: 14px 28px;
    }
}
