.vijayawada-growth-section{
    padding:100px 0;
    background:#f8fafc;
}

.section-header{
    margin-bottom:70px;
}

.city-badge{
    display:inline-block;
    background:#e0f2fe;
    color:#0284c7;
    padding:10px 24px;
    border-radius:50px;
    font-size:.85rem;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.section-header h2{
    font-size:3rem;
    font-weight:800;
    color:#0f172a;
    margin-bottom:20px;
}

.section-header p{
    max-width:700px;
    margin:auto;
    color:#64748b;
    font-size:1.1rem;
}

.journey-wrapper{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    position:relative;
    margin-bottom:80px;
}

.journey-step{
    background:#fff;
    border-radius:24px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.journey-step:hover{
    transform:translateY(-8px);
}

.step-icon{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:#eff6ff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.step-icon i{
    color:#2563eb;
    font-size:1.8rem;
}

.journey-step h4{
    font-weight:700;
    margin-bottom:12px;
}

.journey-step p{
    color:#64748b;
    margin:0;
}

.contact-banner{
    background:linear-gradient(135deg,#2563eb,#1e40af);
    border-radius:30px;
    padding:50px;
    color:#fff;
}

.contact-banner h3{
    font-size:2rem;
    font-weight:700;
    margin-bottom:15px;
}

.contact-banner p{
    margin:0;
    opacity:.9;
}

.v-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    margin-left:10px;
}

.call-btn{
    background:#fff;
    color:#1e40af;
}

.whatsapp-btn{
    background:#25d366;
    color:#fff;
}

@media(max-width:991px){

    .journey-wrapper{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:2.2rem;
    }

    .contact-banner{
        text-align:center;
    }

    .v-btn{
        margin-top:15px;
        margin-left:5px;
        margin-right:5px;
    }
}