/* India Home Specific Extra Styles */
.offer-bar {
    background: linear-gradient(135deg, #2c1654 0%, #ff6b35 100%);
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: 700;
    font-size: 0.9rem;
}

.about-box {
    background: #fff;
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.rev-tagline {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--in-accent);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.results-box {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid var(--in-primary);
}

.diff-section {
    padding: 100px 0;
    background: #fff;
}

.expansion-module {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.city-selector-wrap {
    max-width: 600px;
    margin: 40px auto;
}

/* Calculator specific for Home */
.home-calc-wrap {
    background: var(--in-bg-light);
    border-radius: 30px;
    padding: 50px;
    margin-top: 50px;
}

.pulse-red {
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0px rgba(239, 68, 68, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0px rgba(239, 68, 68, 0);
    }
}