/* ===========================
   TECHBELT ACADEMY — style.css
   Bold, colorful, fun for kids
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
  --primary: #FF6B35;
  --secondary: #4ECDC4;
  --accent: #FFE66D;
  --purple: #7B2FBE;
  --dark: #1a1a2e;
  --white: #ffffff;
  --light: #f8f9ff;
  --gray: #6b7280;
  --border: #e5e7eb;

  --white-belt: #888888;
  --yellow-belt: #DAA520;
  --orange-belt: #CC5500;
  --green-belt: #2E6B2E;
  --black-belt: #1a1a1a;

  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .logo-text { font-family: 'Fredoka One', cursive; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(255,107,53,0.4);
}
.btn-primary:hover {
  background: #e55a25;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,107,53,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 3px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--primary);
  color: white;
  padding: 8px 20px;
  font-size: 14px;
}

.btn-large { padding: 16px 36px; font-size: 17px; }

.btn-gold {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(255,165,0,0.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,165,0,0.5);
}

.btn-white {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-white:hover {
  transform: translateY(-2px);
  background: var(--light);
}

.btn-belt {
  background: var(--belt-color);
  color: white;
  width: 100%;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  font-size: 14px;
  margin-top: auto;
}
.btn-belt:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 12px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  font-size: 28px;
  background: var(--primary);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-size: 22px;
  color: var(--dark);
}

.logo-accent { color: var(--primary); }

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 700;
  font-size: 15px;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--primary); }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  margin-left: auto;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 700;
  font-size: 16px;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: white;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--secondary);
  bottom: -80px;
  left: -80px;
  animation-delay: 2s;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: var(--accent);
  top: 50%;
  right: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero-content { position: relative; z-index: 1; text-align: center; }

.hero-badge {
  display: inline-block;
  background: rgba(255,107,53,0.2);
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 24px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,53,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(255,107,53,0); }
}

.hero-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(42px, 7vw, 80px);
  line-height: 1.1;
  margin-bottom: 24px;
}

.highlight {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

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

.stat-num {
  display: block;
  font-family: 'Fredoka One', cursive;
  font-size: 32px;
  color: var(--accent);
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }

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

.section-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--dark);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BELTS SECTION ===== */
.belts-section { background: var(--light); }

.belts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.belt-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  border-top: 5px solid var(--belt-color);
}

.belt-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.belt-card.featured {
  border: 3px solid var(--orange-belt);
  border-top: 5px solid var(--orange-belt);
  transform: scale(1.03);
}

.belt-card.featured:hover { transform: scale(1.03) translateY(-8px); }

.featured-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange-belt);
  color: white;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.belt-icon { font-size: 36px; }

.belt-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 15px;
  color: white;
}

.white-belt { background: #888888; }
.yellow-belt { background: #DAA520; }
.orange-belt { background: #CC5500; }
.green-belt { background: #2E6B2E; }
.black-belt { background: #1a1a1a; }

.belt-tool {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray);
  background: var(--light);
  padding: 4px 12px;
  border-radius: 50px;
  display: inline-block;
}

.belt-age {
  font-size: 13px;
  color: var(--gray);
  font-weight: 600;
}

.belt-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
  flex: 1;
}

.belt-price {
  font-family: 'Fredoka One', cursive;
  font-size: 28px;
  color: var(--dark);
}

.belt-price span {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: var(--gray);
}

.belts-cta { text-align: center; }

/* ===== TRIAL SECTION ===== */
.trial-section { background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%); }

.trial-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  color: white;
}

.trial-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.5);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
}

.trial-box h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 36px;
  margin-bottom: 16px;
}

.trial-box p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 20px;
  line-height: 1.7;
}

.trial-list {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trial-list li {
  font-size: 15px;
  font-weight: 700;
}

.trial-emoji-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  font-size: 56px;
  text-align: center;
}

.trial-emoji-stack span {
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 16px;
  animation: float 3s ease-in-out infinite;
}

.trial-emoji-stack span:nth-child(2) { animation-delay: 0.5s; }
.trial-emoji-stack span:nth-child(3) { animation-delay: 1s; }
.trial-emoji-stack span:nth-child(4) { animation-delay: 1.5s; }

/* ===== AFTER SCHOOL ===== */
.afterschool-section { background: white; }

.afterschool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.afterschool-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.afterschool-card:hover {
  border-color: var(--secondary);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.as-icon {
  font-size: 44px;
  margin-bottom: 16px;
}

.afterschool-card h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--dark);
}

.afterschool-card p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== SCHOLARSHIP ===== */
.scholarship-section {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: white;
}

.scholarship-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.scholarship-left h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 36px;
  margin-bottom: 16px;
}

.scholarship-left p {
  opacity: 0.85;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.scholarship-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sponsor-tiers {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tier-card {
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.tier-card.bronze { background: rgba(205,127,50,0.2); border: 2px solid #CD7F32; }
.tier-card.silver { background: rgba(192,192,192,0.2); border: 2px solid #C0C0C0; }
.tier-card.gold { background: rgba(255,215,0,0.2); border: 2px solid #FFD700; }

.tier-name { font-weight: 800; font-size: 14px; white-space: nowrap; }
.tier-price {
  font-family: 'Fredoka One', cursive;
  font-size: 24px;
  color: var(--accent);
  white-space: nowrap;
}
.tier-desc { font-size: 13px; opacity: 0.8; }

/* ===== WHY SECTION ===== */
.why-section { background: var(--light); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.why-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: all 0.3s;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.why-icon { font-size: 40px; margin-bottom: 16px; }

.why-card h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--dark);
}

.why-card p { color: var(--gray); font-size: 14px; line-height: 1.6; }

/* ===== HOW IT WORKS ===== */
.how-section { background: white; }

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.how-step {
  text-align: center;
  max-width: 220px;
  flex: 1;
  min-width: 180px;
}

.step-circle {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fredoka One', cursive;
  font-size: 26px;
  margin: 0 auto 16px;
  box-shadow: 0 4px 15px rgba(255,107,53,0.4);
}

.how-step h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 18px;
  margin-bottom: 10px;
}

.how-step p { color: var(--gray); font-size: 13px; line-height: 1.6; }

.step-arrow {
  font-size: 32px;
  color: var(--primary);
  margin-top: 20px;
  font-weight: 800;
}

/* ===== PAYMENT SECTION ===== */
.payment-section { background: var(--light); }

.payment-box {
  text-align: center;
}

.payment-box h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 36px;
  margin-bottom: 12px;
}

.payment-box > p {
  color: var(--gray);
  font-size: 16px;
  margin-bottom: 40px;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  text-align: left;
}

.payment-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.pay-icon { font-size: 36px; margin-bottom: 16px; }

.payment-card h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 20px;
  margin-bottom: 10px;
}

.payment-card p { color: var(--gray); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }

.zelle-info {
  background: var(--light);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.8;
  border-left: 4px solid var(--secondary);
}

.billing-schedule {
  background: var(--light);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  line-height: 2;
}

.price-list { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }

.price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.white-dot { background: var(--white-belt); }
.yellow-dot { background: var(--yellow-belt); }
.orange-dot { background: var(--orange-belt); }
.green-dot { background: var(--green-belt); }
.black-dot { background: var(--black-belt); }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #4ECDC4 0%, #2BB5AC 100%);
}

.cta-box { text-align: center; color: white; }

.cta-box h2 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
}

.cta-box p {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: 'Fredoka One', cursive;
  font-size: 24px;
  color: white;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-contact {
  font-size: 14px;
  line-height: 2;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h4 {
  font-family: 'Fredoka One', cursive;
  font-size: 18px;
  color: white;
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  opacity: 0.6;
}

/* ===== FORM STYLES ===== */
.form-section { background: var(--light); }

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-family: 'Fredoka One', cursive;
  font-size: 32px;
  text-align: center;
  margin-bottom: 8px;
}

.form-sub {
  text-align: center;
  color: var(--gray);
  margin-bottom: 36px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  color: var(--dark);
  transition: border-color 0.2s;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}

.form-group textarea { height: 120px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 18px;
  border-radius: 12px;
  margin-top: 8px;
}

.success-msg {
  background: #EAF3DE;
  color: #27500A;
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
  display: none;
}

.error-msg {
  background: #FCEBEB;
  color: #791F1F;
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
  display: none;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== ADMIN TABLE ===== */
.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.admin-table th {
  background: var(--dark);
  color: white;
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
}
.admin-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.admin-table tr:nth-child(even) { background: var(--light); }
.admin-table tr:hover { background: #fff3ee; }

.status-pending { color: #CC5500; font-weight: 700; }
.status-confirmed { color: #2E6B2E; font-weight: 700; }

/* ===== RESPONSIVE — TABLET 768px ===== */
@media (max-width: 768px) {

  /* NAV */
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .hamburger { display: block; }
  .nav-container { flex-wrap: wrap; }

  /* HERO */
  .hero { padding: 60px 0 40px; min-height: auto; }
  .hero-title { font-size: 36px; }
  .hero-subtitle { font-size: 15px; padding: 0 8px; }
  .hero-stats { gap: 20px; padding-top: 28px; }
  .stat-num { font-size: 26px; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .hero-buttons .btn { width: 100%; max-width: 280px; text-align: center; }

  /* SECTIONS */
  .section { padding: 48px 0; }
  .section-title { font-size: 28px; }
  .section-sub { font-size: 15px; padding: 0 8px; }
  .section-cta { flex-direction: column; align-items: center; }
  .section-cta .btn { width: 100%; max-width: 280px; text-align: center; }

  /* BELTS */
  .belts-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .belt-card { padding: 20px 14px; }
  .belt-card.featured { transform: none; }
  .belt-price { font-size: 22px; }
  .belts-cta { margin-top: 24px; }

  /* TRIAL */
  .trial-box { grid-template-columns: 1fr; gap: 24px; }
  .trial-image { display: none; }
  .trial-box h2 { font-size: 26px; }

  /* AFTER SCHOOL */
  .afterschool-grid { grid-template-columns: 1fr; }

  /* SCHOLARSHIP */
  .scholarship-box { grid-template-columns: 1fr; gap: 28px; }
  .scholarship-left h2 { font-size: 26px; }
  .scholarship-buttons { flex-direction: column; }
  .scholarship-buttons .btn { text-align: center; }
  .tier-card { flex-direction: column; gap: 8px; }

  /* WHY */
  .why-grid { grid-template-columns: 1fr; }

  /* HOW IT WORKS */
  .steps-row { flex-direction: column; align-items: center; gap: 8px; }
  .step-arrow { transform: rotate(90deg); margin: 0; font-size: 24px; }
  .how-step { max-width: 100%; width: 100%; }

  /* PAYMENT */
  .payment-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-box h2 { font-size: 26px; }
  .cta-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .cta-buttons .btn { width: 100%; max-width: 280px; text-align: center; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }

  /* FORMS */
  .form-container { padding: 24px 16px; margin: 0 8px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; }

  /* PAGE HERO */
  .page-hero { padding: 40px 0; }
  .page-hero h1 { font-size: 28px; }
  .page-hero p { font-size: 15px; }
}

/* ===== RESPONSIVE — MOBILE 480px ===== */
@media (max-width: 480px) {

  /* CONTAINER */
  .container { padding: 0 16px; }

  /* HERO */
  .hero { padding: 50px 0 36px; }
  .hero-title { font-size: 30px; }
  .hero-badge { font-size: 12px; padding: 6px 14px; }
  .hero-stats { grid-template-columns: 1fr 1fr; display: grid; gap: 16px; }

  /* BELTS */
  .belts-grid { grid-template-columns: 1fr; }
  .belt-icon { font-size: 28px; }

  /* TRIAL */
  .trial-box { padding: 0; }
  .trial-list li { font-size: 14px; }

  /* SCHOLARSHIP */
  .sponsor-tiers { gap: 10px; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer { padding: 40px 0 20px; }

  /* FORMS */
  .form-container { padding: 20px 14px; margin: 0; border-radius: 12px; }
  .form-title { font-size: 22px; }
  .form-submit { font-size: 15px; padding: 14px; }

  /* BUTTONS */
  .btn-large { padding: 14px 24px; font-size: 15px; }

  /* SECTION */
  .section { padding: 36px 0; }
  .section-title { font-size: 24px; }

  /* NAVBAR */
  .logo-text { font-size: 18px; }
  .logo-icon { width: 36px; height: 36px; font-size: 22px; }

  /* HOW IT WORKS */
  .step-circle { width: 50px; height: 50px; font-size: 22px; }

  /* PAYMENT */
  .price-list { gap: 6px; }

  /* CTA */
  .cta-section { padding: 48px 0; }
}

/* ===== FIX OVERFLOW ON ALL SCREENS ===== */
img { max-width: 100%; height: auto; }
table { width: 100%; overflow-x: auto; display: block; }
.admin-table { display: table; }

/* ===== DONATE PAGE RESPONSIVE ===== */
@media (max-width: 768px) {
  .donate-hero { padding: 50px 0; }
  .donate-hero h1 { font-size: 30px; }
  .donate-hero p { font-size: 15px; }
  .impact-strip { gap: 20px; }
  .impact-num { font-size: 28px; }
  .toggle-wrap { max-width: 100%; margin: 0 0 32px; }
  .toggle-btn { font-size: 13px; padding: 12px 16px; }
  .sponsor-tiers { grid-template-columns: 1fr; }
  .tier-card { margin-top: 16px; }
  .donation-amounts { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .amount-btn { padding: 10px 6px; font-size: 14px; }
  .zelle-box { flex-direction: column; text-align: center; gap: 16px; padding: 20px; }
  .why-sponsor { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .donation-amounts { grid-template-columns: repeat(2, 1fr); }
  .why-sponsor { grid-template-columns: 1fr; }
  .toggle-btn { font-size: 12px; padding: 10px 12px; }
}

/* ===== ABOUT PAGE RESPONSIVE ===== */
@media (max-width: 768px) {
  .about-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo-wrap { order: -1; }
  .photo-circle { width: 200px; height: 200px; }
  .story-grid { grid-template-columns: 1fr; gap: 0; }
  .mission-grid { grid-template-columns: 1fr; gap: 32px; }
  .mission-text h2 { font-size: 28px; }
  .mission-stats { grid-template-columns: 1fr 1fr; }
  .pipeline-flow { gap: 8px; }
  .pipeline-step { min-width: 100px; padding: 12px 14px; }
  .creds-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .photo-circle { width: 170px; height: 170px; }
  .mission-stats { grid-template-columns: 1fr 1fr; }
  .creds-grid { grid-template-columns: 1fr; }
  .pipeline-flow { flex-direction: column; align-items: center; }
  .pipeline-arrow { transform: rotate(90deg); }
}
