/* ============================================================
   ShareBuddies — Global Stylesheet
   ============================================================ */

/* ── Variables ────────────────────────────────────────────── */
:root {
  --primary:       #2B7BB9;   /* deep sky blue  */
  --primary-dark:  #1A5F96;
  --primary-light: #5DA8E0;
  --accent:        #F59B2B;   /* warm orange    */
  --accent-dark:   #D97E0C;
  --green:         #3AAB6E;   /* success green  */
  --text-dark:     #1C2B3A;
  --text-mid:      #4A5568;
  --text-light:    #718096;
  --bg-light:      #F7FBFF;
  --bg-cream:      #FFF8F0;
  --white:         #FFFFFF;
  --border:        #E2ECF5;
  --shadow-sm:     0 2px 8px rgba(43,123,185,.12);
  --shadow-md:     0 8px 28px rgba(43,123,185,.18);
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    all .3s ease;
  --font-main:     'Nunito', 'Segoe UI', sans-serif;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }

/* ── Typography ───────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-weight: 800; line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }
p  { color: var(--text-mid); }

/* ── Utility ──────────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent  { color: var(--accent); }
.fw-800 { font-weight: 800; }

.section-label {
  display: inline-block;
  background: rgba(43,123,185,.12);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 5px 16px;
  margin-bottom: 14px;
}
.section-label.orange {
  background: rgba(245,155,43,.15);
  color: var(--accent-dark);
}
.section-label.green {
  background: rgba(58,171,110,.15);
  color: var(--green);
}

.section-title { margin-bottom: 16px; }
.section-sub   { font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.divider {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 4px;
  margin: 16px auto 40px;
}
.divider.left { margin-left: 0; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-weight: 800;
  font-size: .95rem;
  border-radius: 50px;
  padding: 13px 30px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(43,123,185,.35);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(43,123,185,.45); }
.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(245,155,43,.35);
}
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

/* ── Navigation ───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(43,123,185,.15); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary);
}
.nav-logo .logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-weight: 700;
  font-size: .88rem;
  color: var(--text-mid);
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: .01em;
}
.nav-links a:hover,
.nav-links a.active { color: var(--primary); background: rgba(43,123,185,.08); }
.nav-cta { margin-left: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Mobile Nav ───────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  overflow-y: auto;
  padding: 24px;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  font-weight: 700;
  color: var(--text-dark);
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.mobile-nav a:hover { background: var(--bg-light); color: var(--primary); }
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 12px; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #EBF5FF 0%, #FFF8F0 60%, #F0FAF5 100%);
  padding-top: 72px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(43,123,185,.07);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(245,155,43,.07);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(58,171,110,.12);
  color: var(--green);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 20px;
}
.hero-badge::before {
  content: '●';
  font-size: .55rem;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-title { margin-bottom: 20px; }
.hero-title span { color: var(--primary); }
.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc { font-size: 1.1rem; max-width: 480px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.hero-stat-label { font-size: .82rem; color: var(--text-light); margin-top: 4px; }

/* Hero Image Area */
.hero-visual { position: relative; }
.hero-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-placeholder {
  color: white;
  text-align: center;
  padding: 40px;
}
.hero-img-placeholder .emoji { font-size: 5rem; }
.hero-img-placeholder p { color: rgba(255,255,255,.9); margin-top: 12px; font-weight: 700; }

.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.hero-card-1 { bottom: -20px; left: -30px; }
.hero-card-2 { top: 30px; right: -30px; }
.hero-card strong { display: block; font-weight: 800; font-size: .95rem; color: var(--text-dark); }
.hero-card span { font-size: .78rem; color: var(--text-light); }

/* ── Marquee / Partners ───────────────────────────────────── */
.marquee-section {
  background: var(--primary);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .05em;
}
.marquee-track span { display: flex; align-items: center; gap: 10px; }
.marquee-track span::after { content: '★'; font-size: .7rem; color: var(--accent); }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 48px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { padding: 24px; }
.stat-num {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label { font-size: .88rem; color: var(--text-light); margin-top: 6px; font-weight: 700; }
.stat-desc   { font-size: .8rem; color: var(--text-light); margin-top: 4px; }

/* ── About ────────────────────────────────────────────────── */
.about { background: var(--bg-light); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 1;
  background: linear-gradient(135deg, #EBF5FF, #D0EAFF);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}
.about-badge-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 20px 24px;
  text-align: center;
  min-width: 160px;
}
.about-badge-card .num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.about-badge-card .lbl { font-size: .82rem; color: var(--text-light); margin-top: 4px; }
.value-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.value-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(43,123,185,.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ── How It Works ─────────────────────────────────────────── */
.how { background: var(--white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 16.5%; right: 16.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}
.step-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.step-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(43,123,185,.3);
}
.step-card h3 { margin-bottom: 10px; }

/* ── Services / Programs ──────────────────────────────────── */
.programs { background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%); }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-top: 56px;
}
.program-card {
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.program-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  background: inherit;
  z-index: -1;
}
.program-card.blue  { background: linear-gradient(135deg, #EBF5FF, #D0EAFF); }
.program-card.orange{ background: linear-gradient(135deg, #FFF3E0, #FFE0B2); }
.program-card.green { background: linear-gradient(135deg, #E8F8F0, #C8EFD9); }
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.program-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin-bottom: 20px;
}
.program-card.blue   .program-icon { background: rgba(43,123,185,.15); }
.program-card.orange .program-icon { background: rgba(245,155,43,.15); }
.program-card.green  .program-icon { background: rgba(58,171,110,.15); }
.program-card h3 { margin-bottom: 10px; }
.program-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: 50px;
  padding: 4px 12px;
  margin-top: 16px;
}
.program-card.blue   .program-tag { background: rgba(43,123,185,.15); color: var(--primary); }
.program-card.orange .program-tag { background: rgba(245,155,43,.15); color: var(--accent-dark); }
.program-card.green  .program-tag { background: rgba(58,171,110,.15); color: var(--green); }
.program-features { list-style: none; margin-top: 16px; }
.program-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  padding: 5px 0;
  border-top: 1px solid rgba(0,0,0,.05);
}
.program-features li::before { content: '✓'; color: var(--green); font-weight: 800; }

/* ── Team ─────────────────────────────────────────────────── */
.team { background: var(--bg-light); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 28px;
  margin-top: 56px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-photo {
  height: 220px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.team-photo .avatar-placeholder {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
}
.team-info { padding: 20px 16px 24px; }
.team-name { font-size: 1.05rem; font-weight: 800; color: var(--text-dark); margin-bottom: 4px; }
.team-role { font-size: .82rem; color: var(--primary); font-weight: 700; margin-bottom: 10px; }
.team-bio  { font-size: .84rem; color: var(--text-light); }
.team-social { display: flex; justify-content: center; gap: 8px; margin-top: 14px; }
.team-social a {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--text-mid);
  transition: var(--transition);
}
.team-social a:hover { background: var(--primary); color: white; }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; }
.testimonials .section-label { background: rgba(255,255,255,.15); color: white; }
.testimonials .section-title { color: white; }
.testimonials .divider { background: linear-gradient(90deg, var(--accent), #FFD98E); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-top: 56px;
}
.testimonial-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(255,255,255,.15);
  transition: var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,.18); transform: translateY(-4px); }
.quote-icon { font-size: 2.5rem; opacity: .4; line-height: 1; margin-bottom: 16px; }
.testimonial-text { color: rgba(255,255,255,.92); font-size: .97rem; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.author-name  { font-weight: 800; color: white; font-size: .95rem; }
.author-role  { font-size: .78rem; color: rgba(255,255,255,.7); margin-top: 2px; }
.stars { color: var(--accent); font-size: .85rem; letter-spacing: .05em; }

/* ── Events ───────────────────────────────────────────────── */
.events { background: var(--white); }
.events-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-top: 56px;
}
.event-card {
  border-radius: var(--radius);
  border: 2px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.event-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.event-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 24px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.event-date-box { text-align: center; }
.event-date-box .day  { font-size: 2.5rem; font-weight: 800; line-height: 1; }
.event-date-box .month{ font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; opacity: .85; }
.event-type-tag {
  background: rgba(255,255,255,.2);
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 800;
  padding: 4px 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.event-body { padding: 24px; }
.event-body h3 { margin-bottom: 8px; font-size: 1.1rem; }
.event-meta {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  font-size: .82rem;
  color: var(--text-light);
}
.event-meta span { display: flex; align-items: center; gap: 4px; }
.event-cta { padding: 0 24px 24px; }
.event-cta .btn { width: 100%; justify-content: center; }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
  border-radius: var(--radius-lg);
  padding: 72px 56px;
  text-align: center;
  margin: 0 24px;
}
.cta-section { padding: 88px 0; background: var(--bg-cream); }
.cta-banner h2 { color: var(--text-dark); }
.cta-banner p  { color: var(--text-mid); font-size: 1.1rem; margin: 16px auto 0; max-width: 540px; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 36px; }

/* ── Form ─────────────────────────────────────────────────── */
.form-section { background: var(--bg-light); }
.form-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--font-main);
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(43,123,185,.12); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { text-align: center; margin-top: 24px; }
.form-submit .btn { min-width: 200px; }

/* ── Page Header ──────────────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 140px 0 80px;
  text-align: center;
}
.page-header h1 { color: white; margin-bottom: 14px; }
.page-header p  { color: rgba(255,255,255,.85); font-size: 1.15rem; max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { opacity: .5; }

/* ── Schedule Table ───────────────────────────────────────── */
.schedule-table { width: 100%; border-collapse: collapse; margin-top: 32px; }
.schedule-table th {
  background: var(--primary);
  color: white;
  padding: 14px 20px;
  font-size: .88rem;
  text-align: left;
  font-weight: 700;
}
.schedule-table th:first-child { border-radius: 10px 0 0 0; }
.schedule-table th:last-child  { border-radius: 0 10px 0 0; }
.schedule-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
}
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tr:nth-child(even) td { background: var(--bg-light); }
.schedule-table tr:hover td { background: rgba(43,123,185,.05); }
.schedule-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .75rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
}
.badge-blue   { background: rgba(43,123,185,.12); color: var(--primary); }
.badge-orange { background: rgba(245,155,43,.12);  color: var(--accent-dark); }
.badge-green  { background: rgba(58,171,110,.12);  color: var(--green); }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.8);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .nav-logo { color: white; margin-bottom: 16px; }
.footer-brand p { font-size: .92rem; max-width: 260px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: white; }
.footer-col h4 {
  color: white;
  font-size: .95rem;
  margin-bottom: 16px;
  font-weight: 800;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: white; padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 12px;
}
.footer-contact-item .icon { font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: white; }

/* ── Animations ───────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: none;
}
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner     { gap: 40px; }
  .stats-grid     { grid-template-columns: repeat(2,1fr); }
  .team-grid      { grid-template-columns: repeat(3,1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero-inner       { grid-template-columns: 1fr; text-align: center; }
  .hero-visual      { display: none; }
  .hero-stats       { justify-content: center; }
  .about-grid       { grid-template-columns: 1fr; }
  .steps-grid       { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .programs-grid    { grid-template-columns: 1fr; }
  .team-grid        { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid{ grid-template-columns: 1fr; }
  .events-grid      { grid-template-columns: 1fr; }
  .cta-banner       { padding: 48px 28px; margin: 0; border-radius: 0; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .footer-bottom    { flex-direction: column; gap: 8px; text-align: center; }
  .form-row         { grid-template-columns: 1fr; }
  .form-wrap        { padding: 32px 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger        { display: flex; }
}
@media (max-width: 480px) {
  .team-grid    { grid-template-columns: 1fr; }
  .stats-grid   { grid-template-columns: 1fr 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .hero-stats   { gap: 20px; flex-wrap: wrap; }
}
