/* --- NEW PRICING STRATEGY CSS --- */
.price-strategy-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    margin-top: 50px;
    align-items: center;
}
.pricing-section-modern.light-theme {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
    overflow: hidden;
}
/* Optional: Add a subtle 'Section Curve' to make the separation look sexy */
.pricing-section-modern.light-theme::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #ffffff; /* Matches the white of the testimonial section above */
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    transform: scaleX(1.5);
}
.section-spacer {
    height: 80px;
    background: #ffffff; /* Matches Testimonial background */
}

/* Anchor Card (The low price) */
.estimate-anchor-card {
    background: #f8fafc;
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px dashed #cbd5e1;
    text-align: center;
}

.anchor-label { font-size: 16px; color: #64748b; font-weight: 600; }
.anchor-price { font-size: 64px; font-weight: 900; color: var(--primary-blue); margin: 10px 0; }
.anchor-sub { font-size: 14px; color: #94a3b8; margin-bottom: 30px; }

.value-bullets { text-align: left; display: inline-block; }
.v-item { margin-bottom: 12px; font-weight: 500; display: flex; align-items: center; gap: 10px; }
.v-item i { color: #22c55e; }

/* Contact Reason Card (The Hook) */
.contact-reason-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.contact-reason-card h3 { font-size: 24px; margin-bottom: 20px; color: #1e293b; }
.reason-list { list-style: none; padding: 0; margin-bottom: 35px; }
.reason-list li { margin-bottom: 15px; font-size: 15px; color: #475569; }
.reason-list i { color: var(--primary-blue); font-size: 12px; margin-right: 10px; }

/* CTAs */
.cta-group-vertical { display: flex; flex-direction: column; gap: 15px; }

.btn-main-call {
    background: var(--primary-blue);
    color: white;
    text-align: center;
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-wa-link {
    text-align: center;
    color: #16a34a;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pulse-border {
    animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
    0% { box-shadow: 0 0 0 0 rgba(11, 74, 153, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(11, 74, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(11, 74, 153, 0); }
}

@media (max-width: 900px) {
    .price-strategy-grid { grid-template-columns: 1fr; }
}

/* --- THE OFFER BOX (Continuous Focus) --- */
.offer-shimmer-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1565c0 100%);
    padding: 12px 35px;
    border-radius: 50px;
    gap: 15px;
    border: 2px solid var(--accent-yellow);
    margin: 30px auto;
    box-shadow: 0 10px 25px rgba(11, 74, 153, 0.3);
    position: relative;
    max-width: 100%;
}

/* Container for the pulse animation */
.animate-focus {
    animation: pulse-border-glow 3s infinite ease-in-out;
}

@keyframes pulse-border-glow {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 25px rgba(11, 74, 153, 0.3); }
    50% { transform: scale(1.02); box-shadow: 0 15px 35px rgba(253, 184, 19, 0.4); }
}

/* The Yellow Icon Circle */
.offer-icon-wrap {
    background: var(--accent-yellow);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-blue);
    font-size: 18px;
    flex-shrink: 0; /* Prevents icon from squishing */
}

/* Text Formatting */
.offer-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hindi-highlight {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* THE FLASHING 15% OFF BADGE */
.discount-badge {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    padding: 4px 14px;
    border-radius: 6px;
    font-weight: 900;
    font-size: 20px;
    display: inline-block;
    animation: bounce-attention 2s infinite;
}

@keyframes bounce-attention {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-5px);}
    60% {transform: translateY(-3px);}
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .offer-shimmer-box {
        padding: 15px 20px;
        flex-direction: column;
        border-radius: 20px;
        text-align: center;
    }

    .offer-text {
        flex-direction: column;
        gap: 5px;
    }

    .hindi-highlight {
        font-size: 14px;
    }
}

/* --- SECTION SEPARATOR & BACKGROUND --- */
.pricing-section-modern {
    padding: 120px 0;
    /* This subtle tint separates it from the pure white Services section */
    background: #f4f7fa;
    position: relative;
}

/* Luxury Curve to transition from Services (White) to Pricing (Tinted) */
.pricing-section-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #ffffff; /* Matches the Services section background */
    /*clip-path: ellipse(60% 50px at 50% 0%);*/
}

/* --- THE OFFER BOX (Fixed & Formatted) --- */
.offer-shimmer-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1565c0 100%);
    padding: 12px 35px;
    border-radius: 50px;
    gap: 15px;
    border: 2px solid var(--accent-yellow);
    margin-bottom: 40px;
    box-shadow: 0 10px 25px rgba(11, 74, 153, 0.3);
    position: relative;
    z-index: 5;
}

.animate-focus {
    animation: pulse-border-glow 3s infinite ease-in-out;
}

@keyframes pulse-border-glow {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 25px rgba(11, 74, 153, 0.3); }
    50% { transform: scale(1.03); box-shadow: 0 15px 35px rgba(253, 184, 19, 0.4); }
}

.offer-icon-wrap {
    background: var(--accent-yellow);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-blue);
    font-size: 18px;
    flex-shrink: 0;
}

.offer-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hindi-highlight {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
}

.discount-badge {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    padding: 4px 14px;
    border-radius: 6px;
    font-weight: 900;
    font-size: 20px;
    animation: bounce-attention 2s infinite;
}

@keyframes bounce-attention {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-5px);}
    60% {transform: translateY(-3px);}
}

/* --- PRICING SECTION STYLES --- */
.pricing-section-modern {
    padding: 100px 0;
    background: #f4f7fa; /* Tinted to separate from services */
    text-align: center;
}

.pricing-center-aligner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- THE OFFER BOX FIX --- */
.offer-shimmer-box {
    display: inline-flex;
    align-items: center;
    background: var(--primary-blue);
    padding: 12px 30px;
    border-radius: 50px;
    gap: 15px;
    border: 2px solid var(--accent-yellow);
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(11, 74, 153, 0.2);
}

.offer-icon-wrap {
    background: var(--accent-yellow);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 16px;
}

.offer-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hindi-highlight { color: #fff; font-weight: 600; font-size: 15px; }

.discount-badge {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    padding: 3px 12px;
    border-radius: 5px;
    font-weight: 800;
    font-size: 18px;
}

/* Trust Pill */
.trust-pill {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    margin-top: 15px;
}

.trust-pill i { color: #22c55e; }

/* Grid Adjustment */
.price-strategy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
    margin-top: 50px;
    text-align: left; /* Card content remains left-aligned for readability */
}

/* Animations */
.animate-focus {
    animation: simple-pulse 2s infinite ease-in-out;
}

@keyframes simple-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.bottom-disclaimer {
    margin-top: 40px;
    font-size: 13px;
    color: #94a3b8;
    max-width: 800px;
}

@media (max-width: 768px) {
    .price-strategy-grid { grid-template-columns: 1fr; }
    .offer-text { flex-direction: column; gap: 5px; }
}

/* --- PRICING SECTION: SEPARATION & PADDING --- */
.pricing-section-modern {
    padding: 200px 0 100px 0; /* Heavy top padding for separation */
    background: #f4f7fa; /* Light Blue-Grey Tint */
    position: relative;
    overflow: hidden;
}

/* Luxury Curve to separate from Service Section (White) */
.pricing-section-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #ffffff; /* Services BG color */

}

.pricing-content-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center everything */
    text-align: center;
}

/* --- CONTINUOUS FOCUS OFFER BOX --- */
.offer-shimmer-box {
    display: inline-flex;
    align-items: center;
    background: var(--primary-blue);
    padding: 12px 30px;
    border-radius: 50px;
    gap: 15px;
    border: 2px solid var(--accent-yellow);
    margin-bottom: 35px;
    box-shadow: 0 10px 20px rgba(11, 74, 153, 0.2);
    animation: simple-pulse 3s infinite ease-in-out;
}

.offer-icon-wrap {
    background: var(--accent-yellow);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 16px;
    flex-shrink: 0;
}

.offer-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hindi-highlight { color: #fff; font-weight: 600; font-size: 15px; }

.discount-badge {
    background: var(--accent-yellow);
    color: var(--primary-blue);
    padding: 3px 12px;
    border-radius: 5px;
    font-weight: 900;
    font-size: 19px;
    box-shadow: 0 0 10px rgba(253, 184, 19, 0.4);
}

/* Header Text Styles */
.pricing-description {
    max-width: 800px;
    margin: 20px auto;
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
}

.trust-badge-row {
    margin: 20px 0 40px 0;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #1e293b;
}

.trust-badge-row i { color: #22c55e; }

/* Pricing Grid Layout */
.price-strategy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
    text-align: left; /* Keep card text left-aligned */
}

@keyframes simple-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.pricing-disclaimer-text {
    margin-top: 40px;
    font-size: 13px;
    color: #94a3b8;
    max-width: 700px;
}

/* Mobile Fixes */
@media (max-width: 768px) {
    .pricing-section-modern { padding: 80px 15px 60px 15px; }
    .price-strategy-grid { grid-template-columns: 1fr; }
    .offer-text { flex-direction: column; gap: 5px; }
}