/* ══════════════════════════════════════════
   HERO — Page hero sections
   v2.2 — NEET Gurukul — Deep Slate + Violet premium scheme
   ══════════════════════════════════════════ */

.cg-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 40%, #2e1065 100%);
    padding: 60px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle pattern overlay */
.cg-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(124,58,237,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(124,58,237,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cg-hero-inner {
    max-width: var(--cg-container);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.cg-hero-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cg-yellow);
    background: rgba(255,186,7,0.12);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.cg-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cg-hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 24px;
}

.cg-hero-accent {
    color: #fbbf24;
}

/* Hero actions */
.cg-hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* ── Primary button — solid white, high contrast on dark hero ── */
.cg-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #0f172a;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.2s ease;
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
    text-decoration: none;
    border: none;
}

.cg-hero-btn-primary:hover {
    color: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    background: #f5f3ff;
    text-decoration: none;
}

/* ── Legacy solid violet button ── */
.cg-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cg-orange);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: all var(--cg-transition);
    box-shadow: 0 4px 20px rgba(124,58,237,0.3);
    text-decoration: none;
}

.cg-hero-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(124,58,237,0.45);
    filter: brightness(1.1);
    text-decoration: none;
}

/* ── Secondary ghost button — white outline ── */
.cg-hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.2s ease;
    text-decoration: none;
    background: transparent;
}

.cg-hero-btn-secondary:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.1);
    text-decoration: none;
}

/* ── Hero trust badges / pills ── */
.cg-hero-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cg-hero-p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    max-width: 580px;
    margin: 0 auto 24px;
    line-height: 1.65;
}
