/* ═══════════════════════════════════════════════════════════
   SADA GROUP — Main Stylesheet
   Version: 1.0 | www.sadagcc.com
═══════════════════════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&family=Inter:wght@300;400;600;700;900&display=swap');

/* ── CSS Variables ── */
:root {
  --teal:    #3DBCB8;
  --teal-d:  #2A9A96;
  --teal-l:  #5DD4D0;
  --navy:    #0A1628;
  --navy-l:  #0D1F2D;
  --magenta: #E91E8C;
  --orange:  #F7941D;
  --gold:    #F0C040;
  --white:   #FFFFFF;
  --gray-50: #F8F6F0;
  --gray-100:#F1F5F9;
  --gray-400:#94A3B8;
  --gray-600:#475569;
  --radius:  12px;
  --shadow:  0 4px 24px rgba(10,22,40,0.10);
  --shadow-lg: 0 12px 48px rgba(10,22,40,0.16);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Cairo', 'Inter', sans-serif;
  background: #fff;
  color: var(--navy);
  line-height: 1.7;
  direction: rtl;
}
body.ltr { direction: ltr; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  font-family: 'Cairo', sans-serif;
}
.btn-primary {
  background: var(--teal);
  color: var(--navy);
}
.btn-primary:hover { background: var(--teal-l); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(61,188,184,0.35); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--teal);
  color: var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--navy); }
.btn-white {
  background: #fff;
  color: var(--navy);
}
.btn-white:hover { background: var(--teal); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.35s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(10,22,40,0.96);
  backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.navbar .logo img { height: 48px; width: 48px; object-fit: contain; }
.navbar .logo-text .brand { font-weight: 900; color: #fff; font-size: 1.1rem; letter-spacing: 2px; font-family: 'Inter', sans-serif; }
.navbar .logo-text .brand span { color: var(--teal); }
.navbar .logo-text .sub { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); background: rgba(61,188,184,0.1); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.lang-btn {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Cairo', sans-serif;
}
.lang-btn:hover { background: var(--teal); border-color: var(--teal); color: var(--navy); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.5rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,22,40,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #fff; font-size: 1.4rem; font-weight: 700; }
.mobile-menu a:hover { color: var(--teal); }
.mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #050C1A 0%, #0A1628 40%, #0D2040 70%, #0A1628 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(ellipse, rgba(61,188,184,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%; right: -5%;
  width: 50%; height: 60%;
  background: radial-gradient(ellipse, rgba(233,30,140,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(61,188,184,0.12);
  border: 1px solid rgba(61,188,184,0.3);
  color: var(--teal);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero h1 .accent { color: var(--teal); }
.hero h1 .accent2 { color: var(--magenta); }
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.hero-stat .num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--teal);
  font-family: 'Inter', sans-serif;
}
.hero-stat .label { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-top: 0.2rem; }
.hero-visual {
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 42%;
  opacity: 0.15;
  pointer-events: none;
}
body.ltr .hero-visual { left: auto; right: 0; }

/* ══════════════════════════════════════════════
   SECTION COMMON
══════════════════════════════════════════════ */
.section { padding: 5rem 0; }
.section-dark { background: var(--navy); color: #fff; }
.section-gray { background: var(--gray-50); }
.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-title .tag {
  display: inline-block;
  background: rgba(61,188,184,0.1);
  color: var(--teal);
  border: 1px solid rgba(61,188,184,0.25);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.25;
}
.section-dark .section-title h2 { color: #fff; }
.section-title h2 .accent { color: var(--teal); }
.section-title p {
  color: var(--gray-600);
  max-width: 560px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}
.section-dark .section-title p { color: rgba(255,255,255,0.6); }

/* ══════════════════════════════════════════════
   SERVICES GRID
══════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--magenta));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.service-card:hover { border-color: rgba(61,188,184,0.3); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.6rem;
}
.service-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.75rem; color: var(--navy); }
.service-card p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1rem; }
.service-features { display: flex; flex-direction: column; gap: 0.4rem; }
.service-features li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.88rem; color: var(--gray-600);
}
.service-features li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   PROGRAMS
══════════════════════════════════════════════ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.program-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  transition: all 0.3s ease;
  cursor: pointer;
}
.program-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(61,188,184,0.3); }
.program-card-header {
  padding: 1.75rem;
  position: relative;
}
.program-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.program-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 0.5rem; }
.program-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; }
.program-card-footer {
  padding: 1rem 1.75rem;
  border-top: 1px solid #F1F5F9;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.85rem; color: var(--gray-400);
}
.program-card-footer .duration { display: flex; align-items: center; gap: 0.4rem; }

/* ══════════════════════════════════════════════
   STATS SECTION
══════════════════════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item .num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--teal);
  font-family: 'Inter', sans-serif;
  line-height: 1;
}
.stat-item .label { color: rgba(255,255,255,0.6); margin-top: 0.5rem; font-size: 0.95rem; }

/* ══════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.why-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
}
.why-card h3 { font-weight: 800; color: var(--navy); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.9rem; color: var(--gray-600); }

/* ══════════════════════════════════════════════
   SECTORS
══════════════════════════════════════════════ */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.sector-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s;
  cursor: default;
}
.sector-card:hover { background: rgba(61,188,184,0.1); border-color: rgba(61,188,184,0.3); transform: translateY(-3px); }
.sector-card .icon { font-size: 2rem; margin-bottom: 0.75rem; }
.sector-card .name { font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,0.85); }

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-card {
  background: var(--navy);
  border-radius: 20px;
  padding: 2rem;
  color: #fff;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(61,188,184,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item .label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 0.25rem; }
.contact-info-item .value { font-weight: 600; color: #fff; font-size: 0.95rem; }
.contact-info-item a { color: var(--teal); }
.contact-form {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: 'Cairo', sans-serif;
  color: var(--navy);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(61,188,184,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success .icon { font-size: 3.5rem; margin-bottom: 1rem; }
.form-success h3 { font-size: 1.5rem; font-weight: 900; color: var(--navy); margin-bottom: 0.5rem; }
.form-success p { color: var(--gray-600); }

/* ══════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════ */
.about-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0D2040 100%);
  padding: 8rem 0 5rem;
  color: #fff;
  text-align: center;
}
.about-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; margin-bottom: 1rem; }
.about-hero p { color: rgba(255,255,255,0.65); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.value-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid #E2E8F0;
  transition: all 0.3s;
}
.value-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 { font-weight: 800; color: var(--navy); margin-bottom: 0.5rem; }
.value-card p { color: var(--gray-600); font-size: 0.9rem; line-height: 1.7; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 1px solid #E2E8F0;
  transition: all 0.3s;
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
  color: #fff;
  font-weight: 900;
}
.team-card h3 { font-weight: 800; color: var(--navy); margin-bottom: 0.25rem; }
.team-card .role { font-size: 0.85rem; color: var(--teal); font-weight: 600; }

/* ══════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0D2040 100%);
  padding: 5rem 0;
  text-align: center;
  color: #fff;
}
.cta-section h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.65); max-width: 540px; margin: 0 auto 2rem; font-size: 1.05rem; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: #060D1A;
  color: #fff;
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.footer-brand .logo img { height: 52px; width: 52px; object-fit: contain; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.8; }
.footer-col h4 { font-weight: 800; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 0.9rem; transition: color 0.2s; display: flex; align-items: center; gap: 0.5rem; }
.footer-col ul li a::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: 0.4; flex-shrink: 0; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.9rem; }
.footer-contact-item .icon { font-size: 1rem; margin-top: 0.1rem; flex-shrink: 0; }
.footer-contact-item span, .footer-contact-item a { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.5; }
.footer-contact-item a:hover { color: var(--teal); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: var(--teal); }

/* ══════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0D2040 100%);
  padding: 8rem 0 4rem;
  color: #fff;
  text-align: center;
}
.page-hero .tag { display: inline-block; background: rgba(61,188,184,0.12); border: 1px solid rgba(61,188,184,0.3); color: var(--teal); padding: 0.3rem 1rem; border-radius: 50px; font-size: 0.8rem; font-weight: 700; margin-bottom: 1rem; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.6); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* ══════════════════════════════════════════════
   PARTNERSHIP BANNER
══════════════════════════════════════════════ */
.partner-banner {
  background: linear-gradient(135deg, #0A1628 0%, #0D2040 100%);
  border: 1px solid rgba(61,188,184,0.2);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 3rem 0;
}
.partner-banner .badge {
  background: rgba(61,188,184,0.1);
  border: 1px solid rgba(61,188,184,0.3);
  color: var(--teal);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}
.partner-banner h3 { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 0.4rem; }
.partner-banner p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ══════════════════════════════════════════════
   SCROLL TO TOP
══════════════════════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 44px; height: 44px;
  background: var(--teal);
  color: var(--navy);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(61,188,184,0.4);
  transition: all 0.3s;
  z-index: 500;
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { transform: translateY(-3px); }
body.ltr .scroll-top { left: auto; right: 2rem; }

/* ══════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }
.fade-up-4 { animation-delay: 0.4s; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .partner-banner { flex-direction: column; text-align: center; }
  .hero-stats { gap: 1.5rem; }
}
@media (max-width: 480px) {
  .section { padding: 3rem 0; }
  .hero { padding-top: 70px; }
  .services-grid, .programs-grid { grid-template-columns: 1fr; }
}
