/* push.css - PUSH Program Landing Page Styles */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #050210;
    color: #ffffff;
    overflow-x: hidden;
}

/* NAV (inherited pattern from style.css) */
#navbar {
    position: fixed; top: 25px; left: 0; right: 0;
    z-index: 1000; display: flex; justify-content: center; width: 100%;
}
.nav-container {
    background: #ffffff; border-radius: 12px;
    width: 90%; max-width: 1100px; padding: 12px 35px;
    display: flex; justify-content: space-between; align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2); transition: all 0.3s ease;
}
.nav-container.scrolled { padding: 10px 30px; box-shadow: 0 5px 20px rgba(0,0,0,0.3); }
.logo img { height: 55px; margin-top: -4px; display: block; transition: height 0.3s ease, margin-top 0.3s ease; }
.nav-container.scrolled .logo img { height: 45px; margin-top: 0; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 35px; }
.nav-links a {
    text-decoration: none; color: #1a1a1a; font-size: 14px; font-weight: 600;
    display: flex; align-items: center; gap: 6px; transition: color 0.3s; padding: 10px 0;
}
.nav-links a:hover, .nav-links a.active { color: #0066ff; }
.nav-links i { font-size: 10px; color: #a0a0a0; }

/* DROPDOWN */
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: 100%; left: -20px; background: #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15); border-radius: 12px;
    list-style: none; min-width: 220px; padding: 15px 0;
    opacity: 0; visibility: hidden; transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); z-index: 1000;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
    padding: 12px 25px; display: block; color: #1a1a1a;
    font-size: 14px; font-weight: 600; transition: background 0.2s, color 0.2s, padding-left 0.2s;
}
.dropdown-menu a:hover { background: rgba(140,0,255,0.05); color: #8c00ff; padding-left: 30px; }
.nav-donation { color: #1a1a1a; }
.hamburger { display: none; background: none; border: none; font-size: 24px; color: #000; cursor: pointer; }

/* MOBILE NAV */
.mobile-nav-overlay {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: rgba(5,2,16,0.98); backdrop-filter: blur(15px);
    z-index: 2000; display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    transition: right 0.4s cubic-bezier(0.77,0,0.175,1); overflow-y: auto;
}
.mobile-nav-overlay.active { right: 0; }
.close-menu {
    position: absolute; top: 30px; right: 30px; background: none;
    border: none; color: #fff; font-size: 30px; cursor: pointer; transition: color 0.3s;
}
.close-menu:hover { color: #db00ff; }
.mobile-nav-links { list-style: none; text-align: center; width: 100%; padding: 0 20px; }
.mobile-nav-links > li { margin: 25px 0; }
.mobile-nav-links a { color: #fff; text-decoration: none; font-size: 24px; font-weight: 700; transition: color 0.3s; }
.mobile-nav-links a:hover { color: #db00ff; }
.mobile-dropdown-menu { list-style: none; display: none; margin-top: 15px; }
.mobile-dropdown.active .mobile-dropdown-menu { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.mobile-dropdown-menu a { font-size: 16px; font-weight: 500; color: #a0a0a0; display: block; margin: 15px 0; }
.mobile-dropdown > a { display: flex; align-items: center; justify-content: center; gap: 10px; }

/* ANIMATIONS */
.animate-up { opacity: 0; transform: translateY(30px); animation: slideUp 0.8s forwards cubic-bezier(0.2,0.8,0.2,1); }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }
.fade-in { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ==========================================
   PUSH HERO
   ========================================== */
.push-hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #050210;
}

.push-hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(219,0,255,0.25) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 20%, rgba(0,102,255,0.2) 0%, transparent 55%),
        radial-gradient(ellipse at 60% 80%, rgba(140,0,255,0.15) 0%, transparent 50%);
    z-index: 1;
}

.push-hero-particles {
    position: absolute; inset: 0; z-index: 2;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 40px 40px;
}

.push-hero-content {
    position: relative; z-index: 10;
    text-align: center; max-width: 900px; padding: 0 20px;
}

.push-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(219,0,255,0.1);
    border: 1px solid rgba(219,0,255,0.3);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 12px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: #db00ff;
    margin-bottom: 30px;
}

.push-hero-title {
    font-size: clamp(70px, 12vw, 140px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -5px;
    background: linear-gradient(135deg, #ffffff 0%, #db00ff 50%, #00c6ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.push-hero-title-sub {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 25px;
}

.push-hero-desc {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 40px;
}

.push-hero-btns {
    display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}

.btn-push-primary {
    background: linear-gradient(135deg, #db00ff, #5a00cc);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex; align-items: center; gap: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none; cursor: pointer;
}
.btn-push-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(219,0,255,0.45);
}

.btn-push-outline {
    background: transparent;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border: 1px solid rgba(255,255,255,0.3);
    display: inline-flex; align-items: center; gap: 10px;
    transition: background 0.3s, border-color 0.3s;
}
.btn-push-outline:hover { background: rgba(255,255,255,0.08); border-color: #fff; }

/* Scroll indicator */
.push-scroll-hint {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    z-index: 10;
    animation: bounce 2s ease-in-out infinite;
    color: rgba(255,255,255,0.4); font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ==========================================
   DETAILS / INFO BAR
   ========================================== */
.push-details-bar {
    background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 50px 20px;
}

.push-details-inner {
    max-width: 1000px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}

.push-detail-item {
    display: flex; align-items: flex-start; gap: 18px;
    padding: 24px; border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.02);
    transition: border-color 0.3s, background 0.3s;
}
.push-detail-item:hover { border-color: rgba(219,0,255,0.3); background: rgba(219,0,255,0.05); }

.push-detail-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: linear-gradient(135deg, #db00ff, #5a00cc);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #fff; flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(219,0,255,0.3);
}

.push-detail-text h4 {
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: #db00ff; margin-bottom: 6px;
}
.push-detail-text p { font-size: 15px; color: #e0e0e0; font-weight: 600; }

/* ==========================================
   WHY ATTEND / WHAT TO EXPECT
   ========================================== */
.push-why-section {
    padding: 120px 20px;
    background: #050210;
    position: relative;
    overflow: hidden;
}

.push-why-glow {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(219,0,255,0.1) 0%, transparent 65%);
    border-radius: 50%; pointer-events: none;
}

.push-section-header {
    text-align: center; margin-bottom: 70px;
}

.section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    color: #db00ff; font-size: 12px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    margin-bottom: 18px;
}
.section-tag::before, .section-tag::after {
    content: ''; width: 30px; height: 1px; background: #db00ff;
}

.push-section-header h2 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800; color: #fff; letter-spacing: -1px;
}
.push-section-header p {
    font-size: 16px; color: #a0a0a0; margin-top: 15px; max-width: 500px; margin-left: auto; margin-right: auto;
}

.push-expect-grid {
    max-width: 1000px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px;
}

.push-expect-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px; padding: 40px 35px;
    display: flex; align-items: flex-start; gap: 24px;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    position: relative; overflow: hidden;
}
.push-expect-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(219,0,255,0.04) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.4s;
}
.push-expect-card:hover { transform: translateY(-8px); border-color: rgba(219,0,255,0.35); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.push-expect-card:hover::before { opacity: 1; }

.push-expect-icon {
    width: 56px; height: 56px; border-radius: 16px; flex-shrink: 0;
    background: linear-gradient(135deg, rgba(219,0,255,0.2), rgba(90,0,204,0.2));
    border: 1px solid rgba(219,0,255,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: #db00ff;
    transition: background 0.4s;
}
.push-expect-card:hover .push-expect-icon {
    background: linear-gradient(135deg, #db00ff, #5a00cc);
    color: #fff; border-color: transparent;
    box-shadow: 0 8px 20px rgba(219,0,255,0.4);
}

.push-expect-text h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.push-expect-text p { font-size: 14px; color: #a0a0a0; line-height: 1.7; }

/* ==========================================
   SCHEDULE / PROGRAM DETAILS
   ========================================== */
.push-program-section {
    padding: 100px 20px;
    background: #020108;
    position: relative; overflow: hidden;
}

.push-program-inner {
    max-width: 1000px; margin: 0 auto;
}

.push-info-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 60px;
}

.push-info-block {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px; padding: 40px 35px;
    transition: border-color 0.3s;
}
.push-info-block:hover { border-color: rgba(219,0,255,0.3); }

.push-info-block h3 {
    font-size: 13px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: #db00ff; margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px;
}

.push-info-value {
    font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 8px;
}
.push-info-note { font-size: 13px; color: #666; }

.push-location-list { list-style: none; }
.push-location-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #a0a0a0; font-size: 15px;
    display: flex; align-items: center; gap: 12px;
}
.push-location-list li:last-child { border-bottom: none; }
.push-location-list li i { color: #db00ff; font-size: 12px; }

/* ==========================================
   BENEFITS
   ========================================== */
.push-benefits-section {
    padding: 120px 20px;
    background: #050210;
    position: relative;
}

.push-benefits-inner {
    max-width: 1000px; margin: 0 auto;
}

.push-benefits-list {
    margin-top: 60px;
    display: flex; flex-direction: column; gap: 20px;
}

.push-benefit-item {
    display: flex; align-items: center; gap: 25px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 100px; padding: 22px 40px;
    transition: all 0.3s ease;
}
.push-benefit-item:hover {
    background: rgba(219,0,255,0.08);
    border-color: rgba(219,0,255,0.3);
    transform: translateX(10px);
}

.push-benefit-num {
    width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, #db00ff, #5a00cc);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; font-weight: 800; color: #fff;
    box-shadow: 0 6px 18px rgba(219,0,255,0.4);
}

.push-benefit-item p { font-size: 16px; color: #d0d0d0; font-weight: 500; line-height: 1.5; }

/* ==========================================
   REGISTRATION FORM
   ========================================== */
.push-reg-section {
    padding: 120px 20px 140px;
    background: #020108;
    position: relative; overflow: hidden;
}

.push-reg-glow {
    position: absolute; bottom: -100px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(219,0,255,0.12) 0%, transparent 65%);
    border-radius: 50%; pointer-events: none;
}

.push-reg-inner {
    max-width: 750px; margin: 0 auto; position: relative; z-index: 1;
}

.push-form-wrapper {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px; padding: 55px 50px;
    backdrop-filter: blur(20px);
    margin-top: 55px;
}

.push-form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px;
}
.push-form-row.single { grid-template-columns: 1fr; }

.push-field {
    display: flex; flex-direction: column; gap: 8px;
}

.push-field label {
    font-size: 12px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: #a0a0a0;
}

.push-field input,
.push-field select,
.push-field textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; padding: 14px 18px;
    color: #fff; font-size: 15px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: border-color 0.3s, background 0.3s;
    outline: none; width: 100%;
}
.push-field input:focus,
.push-field select:focus,
.push-field textarea:focus {
    border-color: #db00ff;
    background: rgba(219,0,255,0.05);
    box-shadow: 0 0 0 3px rgba(219,0,255,0.1);
}
.push-field select option { background: #1a0a2e; color: #fff; }
.push-field textarea { resize: vertical; min-height: 100px; }

.push-form-submit {
    margin-top: 30px; text-align: center;
}

.btn-push-submit {
    background: linear-gradient(135deg, #db00ff 0%, #5a00cc 100%);
    color: #fff; border: none; border-radius: 50px;
    padding: 18px 60px; font-size: 16px; font-weight: 700;
    cursor: pointer; width: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: flex; align-items: center; justify-content: center; gap: 12px;
}
.btn-push-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(219,0,255,0.4);
}

.push-form-note {
    font-size: 13px; color: #666; text-align: center; margin-top: 15px;
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    background: #020108; color: #e0e0e0;
    padding-top: 80px;
    border-top-left-radius: 60px; border-top-right-radius: 60px;
    position: relative; z-index: 10; margin-top: -60px;
}
.footer-cta { text-align: center; max-width: 600px; margin: 0 auto 80px; padding: 0 20px; }
.footer-cta h2 { font-size: 36px; font-weight: 700; margin-bottom: 20px; color: #fff; }
.footer-cta p { color: #a0a0a0; font-size: 16px; line-height: 1.6; margin-bottom: 30px; }
.btn-footer-cta {
    background: #db00ff; color: #fff; padding: 14px 30px;
    border-radius: 30px; text-decoration: none; font-weight: 700; font-size: 14px;
    display: inline-flex; align-items: center; gap: 10px; transition: background 0.3s;
}
.btn-footer-cta:hover { background: #a100cc; }
.footer-main {
    max-width: 1100px; margin: 0 auto; padding: 0 20px 60px;
    display: grid; grid-template-columns: 2fr 1.5fr 1fr; gap: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { height: 80px; margin-bottom: 20px; }
.footer-col h4 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.footer-col p { color: #a0a0a0; font-size: 14px; line-height: 1.6; }
.contact-col ul { list-style: none; }
.contact-col li { color: #a0a0a0; font-size: 14px; margin-bottom: 15px; display: flex; align-items: flex-start; gap: 12px; }
.contact-col li i { color: #db00ff; margin-top: 3px; }
.quick-links { list-style: none; }
.quick-links li { margin-bottom: 12px; }
.quick-links li a { color: #a0a0a0; text-decoration: none; font-size: 14px; transition: color 0.3s; }
.quick-links li a:hover { color: #db00ff; }
.footer-socials { display: flex; gap: 15px; margin-top: 20px; }
.footer-socials a {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center;
    color: #a0a0a0; font-size: 14px; transition: background 0.3s, color 0.3s; text-decoration: none;
}
.footer-socials a:hover { background: #db00ff; color: #fff; }
.footer-bottom {
    text-align: center; padding: 25px 20px;
    color: #555; font-size: 13px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 900px) {
    .push-details-inner { grid-template-columns: 1fr; gap: 15px; }
    .push-info-grid { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .hamburger { display: block; }
    .push-hero-title { letter-spacing: -3px; }
    .push-expect-grid { grid-template-columns: 1fr; }
    .push-form-row { grid-template-columns: 1fr; }
    .push-form-wrapper { padding: 35px 25px; }
    .push-benefit-item { border-radius: 16px; padding: 22px 25px; }
    .push-benefit-item:hover { transform: none; }
}

@media (max-width: 480px) {
    .push-hero-btns { flex-direction: column; align-items: center; }
    .btn-push-primary, .btn-push-outline { width: 100%; max-width: 280px; justify-content: center; }
}
