/* ============================================
   HOME PAGE STYLES
   ============================================ */

/* ---- Hero ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-height) + 2rem) 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: var(--accent-gold-dim);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: var(--radius-full);
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title-accent {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: var(--space-md);
    font-weight: 600;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-desc-hindi {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.6s ease 0.35s both;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
    animation: fadeInUp 0.6s ease 0.5s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.hero-stat-plus {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-weight: 700;
}

.hero-stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-photo-wrapper {
    position: relative;
}

.hero-photo-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(99, 102, 241, 0.1));
    border: 3px solid rgba(251, 191, 36, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
}

.hero-photo-placeholder {
    font-size: 6rem;
    color: rgba(251, 191, 36, 0.3);
}

.hero-photo-badge {
    position: absolute;
    bottom: 20px;
    right: -10px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-glow-gold);
}

/* Floating Cards */
.hero-floating-cards {
    position: absolute;
    inset: -30px;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

.floating-card i {
    color: var(--accent-gold);
}

.fc-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.fc-2 {
    bottom: 20%;
    left: -30px;
    animation-delay: 1.2s;
}

.fc-3 {
    top: 50%;
    right: -40px;
    animation-delay: 2.4s;
}

/* ---- Highlights ---- */
.highlights-section {
    background: linear-gradient(180deg, transparent, rgba(251, 191, 36, 0.02), transparent);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.highlight-card {
    background: var(--gradient-card);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.highlight-card:hover {
    border-color: rgba(251, 191, 36, 0.2);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.hc-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.hc-icon--blue {
    background: var(--accent-blue-dim);
    color: var(--accent-blue);
}

.hc-icon--indigo {
    background: var(--accent-indigo-dim);
    color: var(--accent-indigo);
}

.hc-icon--emerald {
    background: var(--accent-emerald-dim);
    color: var(--accent-emerald);
}

.hc-icon--gold {
    background: var(--accent-gold-dim);
    color: var(--accent-gold);
}

.hc-content h3 {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.hc-content .hindi {
    font-size: 0.85rem;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.hc-desc {
    font-size: 0.9rem;
    line-height: 1.6;
}

.hc-stats {
    display: flex;
    gap: var(--space-sm);
}

.hc-arrow {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.highlight-card:hover .hc-arrow {
    background: var(--accent-gold-dim);
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateX(4px);
}

/* ---- Stats Section ---- */
.stats-section {
    padding: var(--space-3xl) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

/* ---- Recent RTIs ---- */
.recent-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.recent-card {
    padding: var(--space-xl);
}

.rc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-md);
}

.rc-summary {
    font-size: 0.85rem;
    margin: var(--space-sm) 0 var(--space-lg);
}

.rc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    font-size: 0.78rem;
    color: var(--text-muted);
}

.rc-meta i {
    margin-right: 4px;
    color: var(--accent-gold);
}

/* ---- CTA Section ---- */
.cta-section {
    padding-bottom: var(--space-4xl);
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-3xl);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.08), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(251, 191, 36, 0.15);
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 4px;
}

.cta-content .hindi {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

.cta-content p {
    max-width: 500px;
    margin-bottom: var(--space-xl);
}

.cta-actions {
    display: flex;
    gap: var(--space-md);
}

.cta-visual {
    font-size: 8rem;
    color: rgba(251, 191, 36, 0.1);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .recent-grid {
        grid-template-columns: 1fr;
    }

    .cta-visual {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: calc(var(--nav-height) + 1rem);
    }

    .hero-photo {
        width: 200px;
        height: 200px;
    }

    .hero-photo-placeholder {
        font-size: 4rem;
    }

    .hero-photo-glow {
        width: 250px;
        height: 250px;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .floating-card {
        display: none;
    }

    .cta-card {
        padding: var(--space-xl);
    }
}