/* ================================================================
   NEW HOMEPAGE STYLES — Delhi Lakshmi Yojana
   ================================================================ */

/* === CSS Variables (extend existing theme) === */
:root {
    --nhp-primary: #6C3FD3;
    --nhp-primary-dark: #5028B0;
    --nhp-primary-light: #A78BFA;
    --nhp-accent: #EC4899;
    --nhp-amber: #F59E0B;
    --nhp-green: #10B981;
    --nhp-blue: #3B82F6;
    --nhp-red: #EF4444;
    --nhp-teal: #14B8A6;
    --nhp-orange: #F97316;
    --nhp-gold: #D97706;
    --nhp-text: #1E1B2E;
    --nhp-text-muted: #6B7280;
    --nhp-surface: #FFFFFF;
    --nhp-gradient: linear-gradient(135deg, #6C3FD3 0%, #A78BFA 50%, #EC4899 100%);
    --nhp-gradient-warm: linear-gradient(135deg, #F59E0B 0%, #EC4899 100%);
    --nhp-gradient-dark: linear-gradient(135deg, #0F0B1E 0%, #1E0F3A 100%);
    --nhp-radius: 16px;
    --nhp-radius-lg: 24px;
    --nhp-radius-xl: 32px;
    --nhp-shadow-sm: 0 2px 8px rgba(108, 63, 211, 0.1);
    --nhp-shadow-md: 0 6px 24px rgba(108, 63, 211, 0.14);
    --nhp-shadow-lg: 0 16px 48px rgba(108, 63, 211, 0.2);
    --nhp-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --nhp-font-hindi: 'Noto Sans Devanagari', sans-serif;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.nhp-hero {
    position: relative;
    background: var(--nhp-gradient-dark);
    padding: 64px 0 72px;
    overflow: hidden;
    margin-top: 0;
}

/* Animated background shapes */
.nhp-hero__bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.nhp-hero__bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
}
.nhp-hero__bg-shapes .shape-1 {
    width: 600px;
    height: 600px;
    background: var(--nhp-primary);
    top: -200px;
    right: -100px;
    animation: shapeFloat 8s ease-in-out infinite;
}
.nhp-hero__bg-shapes .shape-2 {
    width: 400px;
    height: 400px;
    background: var(--nhp-accent);
    bottom: -150px;
    left: -80px;
    animation: shapeFloat 10s ease-in-out infinite reverse;
}
.nhp-hero__bg-shapes .shape-3 {
    width: 300px;
    height: 300px;
    background: var(--nhp-amber);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: shapeFloat 12s ease-in-out infinite 2s;
}

@keyframes shapeFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

/* Badge */
.nhp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 6px 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(8px);
    animation: fadeInDown 0.6s ease both;
}
.nhp-badge__icon {
    font-size: 16px;
    color: var(--nhp-amber);
}

/* Title */
.nhp-hero__title {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 12px 0 8px;
    text-shadow: 0 4px 30px rgba(108, 63, 211, 0.5);
    animation: fadeInUp 0.7s 0.1s ease both;
}
.nhp-hero__sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    animation: fadeInUp 0.7s 0.2s ease both;
    margin-bottom: 0;
}

/* Amount card */
.nhp-amount-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--nhp-radius-lg);
    padding: 24px 32px;
    display: inline-block;
    backdrop-filter: blur(16px);
    animation: fadeInUp 0.7s 0.3s ease both;
    text-align: center;
}
.nhp-amount-card__label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}
.nhp-amount-card__label .material-symbols-outlined {
    font-size: 16px;
    color: var(--nhp-amber);
}
.nhp-amount-card__value {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.nhp-amount-card__value span {
    font-size: 0.45em;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}
.nhp-amount-card__hint {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
}

/* CTA Buttons */
.nhp-hero__ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s 0.4s ease both;
}

.nhp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--nhp-gradient);
    color: #fff !important;
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    cursor: pointer;
    transition: var(--nhp-transition);
    box-shadow: 0 6px 20px rgba(108, 63, 211, 0.4);
}
.nhp-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 36px rgba(108, 63, 211, 0.5);
    color: #fff !important;
    text-decoration: none !important;
}
.nhp-btn-primary:active {
    transform: translateY(-1px);
}
.nhp-btn-primary .material-symbols-outlined {
    font-size: 20px;
}

.nhp-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    cursor: pointer;
    transition: var(--nhp-transition);
    backdrop-filter: blur(8px);
}
.nhp-btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    color: #fff !important;
    text-decoration: none !important;
}
.nhp-btn-outline .material-symbols-outlined {
    font-size: 20px;
}

.nhp-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--nhp-primary) !important;
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    cursor: pointer;
    transition: var(--nhp-transition);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.nhp-btn-white:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 36px rgba(0,0,0,0.2);
    color: var(--nhp-primary-dark) !important;
    text-decoration: none !important;
}
.nhp-btn-lg {
    padding: 18px 36px;
    font-size: 16px;
}

/* Stats row */
.nhp-stats-row {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--nhp-radius-lg);
    padding: 20px 32px;
    backdrop-filter: blur(12px);
    animation: fadeInUp 0.7s 0.5s ease both;
    flex-wrap: wrap;
    gap: 0;
}
.nhp-stat {
    flex: 1;
    min-width: 100px;
    text-align: center;
    padding: 8px 16px;
}
.nhp-stat__num {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}
.nhp-stat__label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
    line-height: 1.4;
}
.nhp-stat__divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

/* ================================================================
   SECTION SHARED
   ================================================================ */
.nhp-section {
    padding: 30px 0;
}
.nhp-section--light {
    background: #F8F7FC;
}
.nhp-section--dark {
    background: #0F0B1E;
}
.nhp-section--gradient {
    background: var(--nhp-gradient);
}

.nhp-section__header {
    text-align: center;
    margin-bottom: 48px;
}
.nhp-section__header--center {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.nhp-section__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(108, 63, 211, 0.1);
    color: var(--nhp-primary);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}
.nhp-section__tag .material-symbols-outlined {
    font-size: 16px;
}
.nhp-section__tag--light {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}
.nhp-section__tag--white {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.nhp-section__title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--nhp-text);
    line-height: 1.2;
    margin-bottom: 8px;
}
.nhp-section__desc {
    font-size: 15px;
    color: var(--nhp-text-muted);
}

/* ================================================================
   ELIGIBILITY CARDS
   ================================================================ */
.nhp-eligibility-grid .col-lg-4 {
    display: flex;
}

.nhp-elig-card {
    background: var(--nhp-surface);
    border-radius: var(--nhp-radius-lg);
    padding: 24px 20px;
    border: 1px solid rgba(108, 63, 211, 0.1);
    box-shadow: var(--nhp-shadow-sm);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: var(--nhp-transition);
    width: 100%;
    cursor: default;
}
.nhp-elig-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--nhp-shadow-md);
    border-color: rgba(108, 63, 211, 0.2);
}

.nhp-elig-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.nhp-elig-card__icon .material-symbols-outlined {
    font-size: 26px;
    color: #fff;
}
.nhp-elig-card__icon--purple { background: var(--nhp-primary); }
.nhp-elig-card__icon--pink { background: var(--nhp-accent); }
.nhp-elig-card__icon--amber { background: var(--nhp-amber); }
.nhp-elig-card__icon--green { background: var(--nhp-green); }
.nhp-elig-card__icon--blue { background: var(--nhp-blue); }
.nhp-elig-card__icon--red { background: var(--nhp-red); }
.nhp-elig-card__icon--gold { background: var(--nhp-gold); }
.nhp-elig-card__icon--teal { background: var(--nhp-teal); }
.nhp-elig-card__icon--orange { background: var(--nhp-orange); }

.nhp-elig-card__body h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--nhp-text);
    margin-bottom: 0;
}
.nhp-elig-card__body p {
    font-size: 12.5px;
    color: var(--nhp-text-muted);
    line-height: 1.6;
    margin: 4px 0 0;
}
.nhp-elig-card__body .hindi {
    color: var(--nhp-primary);
    font-size: 12px;
    font-family: var(--nhp-font-hindi);
    font-weight: 600;
    margin-bottom: 4px;
}

/* Extra eligibility compact list */
.nhp-elig-extra {
    background: var(--nhp-surface);
    border-radius: var(--nhp-radius);
    border: 1px solid rgba(108, 63, 211, 0.1);
    overflow: hidden;
}
.nhp-elig-extra__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 13px;
    color: var(--nhp-text-muted);
    border-bottom: 1px solid rgba(108, 63, 211, 0.06);
}
.nhp-elig-extra__item:last-child {
    border-bottom: none;
}
.nhp-elig-extra__item .material-symbols-outlined {
    font-size: 18px;
    color: var(--nhp-primary);
    flex-shrink: 0;
}

/* ================================================================
   TIMELINE (How to Apply)
   ================================================================ */
.nhp-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}
.nhp-timeline__step {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--nhp-radius);
    padding: 20px 18px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: var(--nhp-transition);
}
.nhp-timeline__step:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}
.nhp-timeline__num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--nhp-gradient);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.nhp-timeline__num--done {
    background: var(--nhp-green);
}
.nhp-timeline__num--done .material-symbols-outlined {
    font-size: 20px;
}
.nhp-timeline__content h5 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}
.nhp-timeline__content p.hindi {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    font-family: var(--nhp-font-hindi);
    margin: 2px 0;
}
.nhp-timeline__content p {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin: 4px 0 0;
    line-height: 1.5;
}

/* Dark section text overrides */
.nhp-section--dark .nhp-section__title {
    color: #fff;
}
.nhp-section--dark .nhp-section__desc {
    color: rgba(255,255,255,0.6);
}

/* ================================================================
   DOCUMENT CARDS
   ================================================================ */
.nhp-doc-card {
    background: var(--nhp-surface);
    border-radius: var(--nhp-radius-lg);
    border: 1px solid rgba(108, 63, 211, 0.1);
    overflow: hidden;
    box-shadow: var(--nhp-shadow-sm);
}
.nhp-doc-card__header {
    padding: 16px 20px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
}
.nhp-doc-card__header .material-symbols-outlined {
    font-size: 20px;
}
.nhp-doc-card--a .nhp-doc-card__header { background: var(--nhp-primary); }
.nhp-doc-card--b .nhp-doc-card__header { background: var(--nhp-accent); }
.nhp-doc-card--c .nhp-doc-card__header { background: var(--nhp-green); }
.nhp-doc-card--d .nhp-doc-card__header { background: var(--nhp-blue); }

.nhp-doc-list {
    list-style: none;
    padding: 12px 16px;
    margin: 0;
}
.nhp-doc-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: var(--nhp-text);
    border-bottom: 1px solid rgba(108, 63, 211, 0.06);
}
.nhp-doc-list li:last-child {
    border-bottom: none;
}
.nhp-doc-list li .material-symbols-outlined {
    font-size: 18px;
    color: var(--nhp-primary);
    flex-shrink: 0;
}

.nhp-btn-sm {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(108, 63, 211, 0.1);
    color: var(--nhp-primary) !important;
    border: 1px solid rgba(108, 63, 211, 0.2);
    border-radius: 8px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none !important;
    cursor: pointer;
    transition: var(--nhp-transition);
}
.nhp-btn-sm:hover {
    background: var(--nhp-primary);
    color: #fff !important;
    transform: translateY(-1px);
}

/* ================================================================
   BANK CHIPS
   ================================================================ */
.nhp-banks-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.nhp-bank-chip {
    background: rgba(255, 255, 255, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    transition: var(--nhp-transition);
    cursor: default;
}
.nhp-bank-chip:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ================================================================
   ACTION CARDS
   ================================================================ */
.nhp-action-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--nhp-surface);
    border-radius: var(--nhp-radius-lg);
    padding: 28px 24px;
    border: 2px solid transparent;
    text-decoration: none !important;
    transition: var(--nhp-transition);
    box-shadow: var(--nhp-shadow-sm);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.nhp-action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--nhp-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--nhp-transition);
}
.nhp-action-card:hover::before {
    transform: scaleX(1);
}
.nhp-action-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--nhp-shadow-lg);
    text-decoration: none !important;
}

.nhp-action-card--purple:hover { border-color: rgba(108, 63, 211, 0.3); }
.nhp-action-card--pink:hover { border-color: rgba(236, 72, 153, 0.3); }
.nhp-action-card--amber:hover { border-color: rgba(245, 158, 11, 0.3); }

.nhp-action-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--nhp-transition);
}
.nhp-action-card__icon .material-symbols-outlined {
    font-size: 30px;
    color: #fff;
}
.nhp-action-card--purple .nhp-action-card__icon { background: var(--nhp-primary); }
.nhp-action-card--pink .nhp-action-card__icon { background: var(--nhp-accent); }
.nhp-action-card--amber .nhp-action-card__icon { background: var(--nhp-amber); }

.nhp-action-card:hover .nhp-action-card__icon {
    transform: scale(1.1) rotate(-5deg);
}

.nhp-action-card__text {
    flex: 1;
    min-width: 0;
}
.nhp-action-card__text h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--nhp-text);
    margin-bottom: 4px;
}
.nhp-action-card__text p {
    font-size: 12px;
    color: var(--nhp-text-muted);
    margin: 0;
    line-height: 1.5;
}
.nhp-action-card__text .hindi {
    font-family: var(--nhp-font-hindi);
    font-size: 12px;
    color: var(--nhp-primary);
    font-weight: 600;
}

.nhp-action-card__arrow {
    flex-shrink: 0;
    transition: var(--nhp-transition);
}
.nhp-action-card__arrow .material-symbols-outlined {
    font-size: 24px;
    color: var(--nhp-text-muted);
}
.nhp-action-card:hover .nhp-action-card__arrow {
    transform: translateX(6px);
    color: var(--nhp-primary);
}

/* ================================================================
   BOTTOM CTA BANNER
   ================================================================ */
.nhp-cta-banner {
    background: var(--nhp-gradient-dark);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.nhp-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(108,63,211,0.3) 0%, transparent 70%);
}
.nhp-cta-banner__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--nhp-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 32px rgba(108, 63, 211, 0.5);
    position: relative;
}
.nhp-cta-banner__icon .material-symbols-outlined {
    font-size: 40px;
    color: #fff;
}
.nhp-cta-banner__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
}
.nhp-cta-banner__sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 36px;
    position: relative;
}
.nhp-cta-banner__btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.nhp-elig-card,
.nhp-timeline__step,
.nhp-doc-card,
.nhp-action-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.nhp-elig-card.nhp-visible,
.nhp-timeline__step.nhp-visible,
.nhp-doc-card.nhp-visible,
.nhp-action-card.nhp-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 992px) {
    .nhp-eligibility-grid {
        gap: 12px;
    }
    .nhp-stat__divider {
        display: none;
    }
    .nhp-stats-row {
        gap: 8px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nhp-hero {
        padding: 30px 0 20px;
    }
    .nhp-section {
        padding: 30px 0;
    }
    .nhp-hero__ctas {
        flex-direction: column;
    }
    .nhp-hero__ctas .btn {
        width: 100%;
        justify-content: center;
    }
    .nhp-stats-row {
        padding: 16px;
    }
    .nhp-stat {
        padding: 8px;
    }
    .nhp-amount-card {
        padding: 18px 20px;
    }
    .nhp-cta-banner {
        padding: 56px 0;
    }
    .nhp-cta-banner__btns {
        flex-direction: column;
        align-items: center;
    }
    .nhp-cta-banner__btns .btn {
        width: 100%;
        max-width: 340px;
    }
    .nhp-action-card {
        padding: 20px 16px;
        gap: 14px;
    }
}

@media (max-width: 576px) {
    .nhp-timeline {
        grid-template-columns: 1fr;
    }
    .nhp-elig-card {
        flex-direction: column;
        gap: 12px;
    }
    .nhp-section__header {
        margin-bottom: 32px;
    }
}
