*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-deep: #0a2e1a;
  --green-mid: #1a4d2e;
  --green-warm: #2d6a4f;
  --green-light: #52b788;
  --green-pale: #b7e4c7;
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --sand: #f5f0e8;
  --cream: #faf7f2;
  --text-dark: #1a1a14;
  --text-mid: #3d3d2e;
  --text-muted: #6b6b55;
  --white: #ffffff;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ─── TRANSLATION CLASSES ─── */
.ar-block, .ar-inline, .ar-flex { display: none !important; }
.en-block { display: block; }
.en-inline { display: inline; }
.en-flex { display: flex; }

/* RTL (Arabic) Styles */
html[dir="rtl"] body {
  font-family: 'Cairo', sans-serif;
  text-align: right;
}
html[dir="rtl"] .hero-title { font-family: 'Cairo', sans-serif; font-weight: 700; line-height: 1.4; }
html[dir="rtl"] .hero-arabic { font-family: 'Cairo', sans-serif; font-weight: 600; }
html[dir="rtl"] .section-title, 
html[dir="rtl"] .mission-quote, 
html[dir="rtl"] .vision-quote { font-family: 'Cairo', sans-serif; font-weight: 600; line-height: 1.4;}

html[dir="rtl"] .en-block, 
html[dir="rtl"] .en-inline, 
html[dir="rtl"] .en-flex { display: none !important; }

html[dir="rtl"] .ar-block { display: block !important; }
html[dir="rtl"] .ar-inline { display: inline !important; }
html[dir="rtl"] .ar-flex { display: flex !important; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10, 46, 26, 0.1);
  transition: all 0.3s;
}

html[dir="rtl"] nav { direction: ltr !important; }
html[dir="rtl"] .nav-links li, html[dir="rtl"] .mmenu a { direction: rtl; }

.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }

.nav-logo-mark {
  width: 60px; height: 60px;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
}

.logo-img { width: 100%; height: 100%; object-fit: contain; }

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.02em;
}

.nav-links { display: flex; gap: 2.5rem; list-style: none; }

.nav-links a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-warm); }

.nav-actions { display: flex; align-items: center; gap: 1.5rem; }

.nav-cta {
  background: var(--gold); color: var(--green-deep) !important;
  padding: 0.5rem 1.4rem; border-radius: 4px; font-weight: 600 !important;
  text-decoration: none; font-size: 0.85rem; text-transform: uppercase;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--green-deep) !important; }

.lang-btn {
  background: transparent; color: var(--green-deep); 
  border: 1px solid rgba(10, 46, 26, 0.2);
  padding: 0.4rem 0.8rem; border-radius: 4px; cursor: pointer; font-weight: 600;
  transition: background 0.2s;
}
.lang-btn:hover { background: rgba(10, 46, 26, 0.05); }

/* ─── HAMBURGER BUTTON ─── */
.hbg { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; z-index: 101; }
.hbg span { 
  display: block; width: 24px; height: 2px; 
  background: var(--green-deep);
  border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease, background 0.35s ease;
}

.hbg.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--text-dark);}
.hbg.active span:nth-child(2) { opacity: 0; }
.hbg.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--text-dark);}

/* ─── MOBILE MENU DROPDOWN ─── */
.mmenu { 
  display: flex; flex-direction: column; gap: 1.2rem; 
  position: fixed; top: 4.5rem; right: 1.2rem; 
  background: var(--white); border: 1px solid rgba(45,106,79,0.12); border-radius: 12px; 
  padding: 1.5rem 2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
  z-index: 99; text-align: left;
  opacity: 0; visibility: hidden; transform: translateY(-15px); 
  transition: all 0.3s ease;
}
html[dir="rtl"] .mmenu { text-align: right; }
.mmenu.op { opacity: 1; visibility: visible; transform: translateY(0); }
.mmenu a { 
  font-family: var(--font-sans); font-size: 1rem; font-weight: 500; 
  color: var(--text-dark); text-decoration: none; letter-spacing: 0.05em; 
  text-transform: uppercase; transition: color 0.2s;
}
html[dir="rtl"] .mmenu a { font-family: 'Cairo', sans-serif; }
.mmenu a:hover { color: var(--green-warm); }

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-anim {
  opacity: 0; 
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.5s; }
.delay-4 { animation-delay: 0.7s; }

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ─── HERO ─── */
#home {
  min-height: 100vh; background: var(--green-deep); position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 8rem 4rem 4rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(ellipse 80% 50% at 50% 60%, rgba(45, 106, 79, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 20%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,255,255,0.02) 59px, rgba(255,255,255,0.02) 60px), repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,255,255,0.02) 59px, rgba(255,255,255,0.02) 60px);
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 860px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(201, 168, 76, 0.12); border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 0.4rem 1rem; border-radius: 100px; margin-bottom: 2rem; color: var(--gold-light);
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 400;
}
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; display: inline-block; }
.hero-title { font-family: var(--font-serif); font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.hero-title em { font-style: italic; color: var(--gold-light); }

.hero-arabic {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 580px; margin: 0 auto 3rem; font-weight: 300; }

/* ─── VIDEO ─── */
.video-container {
  position: relative; z-index: 2; width: 100%; max-width: 860px; margin-top: 3rem;
  border-radius: 12px; overflow: hidden; border: 1px solid rgba(201,168,76,0.25);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5); background: var(--green-mid); aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.video-placeholder { position: relative; width: 100%; height: 100%; background: linear-gradient(135deg, #0d3320 0%, #1a4d2e 50%, #0d3320 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; }
.video-landscape { position: absolute; inset: 0; opacity: 0.15; background-image: repeating-linear-gradient(90deg, transparent 0, transparent 3px, rgba(82,183,136,0.3) 3px, rgba(82,183,136,0.3) 4px), linear-gradient(to top, rgba(201,168,76,0.2) 0%, transparent 40%); }
.video-fields { position: absolute; bottom: 0; left: 0; right: 0; height: 45%; background: linear-gradient(to top, rgba(10,46,26,0.8), transparent); }
.play-button { width: 72px; height: 72px; background: rgba(201,168,76,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform 0.2s, background 0.2s; position: relative; z-index: 2; cursor: pointer; border: none; }
.play-button:hover { transform: scale(1.08); background: var(--gold); }
.play-button svg { width: 28px; height: 28px; margin-left: 4px; }
html[dir="rtl"] .play-button svg { margin-left: 0; margin-right: 4px; transform: scaleX(-1); }
.video-caption { position: relative; z-index: 2; color: rgba(255,255,255,0.7); font-size: 0.88rem; letter-spacing: 0.05em; text-align: center; }
.video-caption strong { display: block; color: var(--white); font-family: var(--font-serif); font-size: 1.3rem; font-weight: 300; margin-bottom: 0.3rem; }
html[dir="rtl"] .video-caption strong { font-family: 'Cairo', sans-serif; font-weight: 600; }

/* ─── SECTION BASE ─── */
section { padding: 7rem 4rem; }
.section-label { display: inline-block; color: var(--green-warm); font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; margin-bottom: 1.2rem; position: relative; }
.section-label::before { content: ''; position: absolute; left: -1.5rem; top: 50%; transform: translateY(-50%); width: 1rem; height: 1px; background: var(--green-warm); }
html[dir="rtl"] .section-label::before { left: auto; right: -1.5rem; }
.section-title { font-family: var(--font-serif); font-size: clamp(2.4rem, 4vw, 3.8rem); font-weight: 300; line-height: 1.15; color: var(--text-dark); margin-bottom: 1.5rem; }

/* ─── MISSION / VISION ─── */
#mission { background: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0; }
.mission-panel { padding: 7rem 5rem; }
.mission-panel:first-child { background: var(--green-deep); }
.mission-panel:first-child .section-label { color: var(--gold-light); }
.mission-panel:first-child .section-label::before { background: var(--gold-light); }
.mission-panel:first-child .section-title { color: var(--white); }
.mission-panel:first-child p { color: rgba(255,255,255,0.7); }
.mission-panel:last-child .section-label { color: var(--green-warm); }
.mission-panel p { font-size: 1.05rem; line-height: 1.85; color: var(--text-mid); font-weight: 300; }
.mission-quote { font-family: var(--font-serif); font-size: 1.5rem; font-style: italic; line-height: 1.5; margin: 2rem 0; padding-left: 1.5rem; border-left: 2px solid var(--gold); color: rgba(255,255,255,0.9); }
.vision-quote { font-family: var(--font-serif); font-size: 1.5rem; font-style: italic; line-height: 1.5; margin: 2rem 0; padding-left: 1.5rem; border-left: 2px solid var(--green-warm); color: var(--text-dark); }
html[dir="rtl"] .mission-quote { padding-left: 0; padding-right: 1.5rem; border-left: none; border-right: 2px solid var(--gold); font-style: normal; }
html[dir="rtl"] .vision-quote { padding-left: 0; padding-right: 1.5rem; border-left: none; border-right: 2px solid var(--green-warm); font-style: normal; }

/* ─── ABOUT ─── */
#about { background: var(--sand); }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: start; max-width: 1200px; margin: 0 auto; }
.about-left { padding-left: 1.5rem; }
html[dir="rtl"] .about-left { padding-left: 0; padding-right: 1.5rem; }
.about-body { font-size: 1rem; line-height: 1.85; color: var(--text-mid); font-weight: 300; margin-bottom: 1.5rem; }

.about-pillars { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 2.5rem; }
.pillar { background: var(--white); border: 1px solid rgba(45,106,79,0.12); border-radius: 8px; padding: 1.4rem 1.6rem; display: flex; gap: 1rem; align-items: flex-start; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.pillar:hover { transform: translateY(-4px); box-shadow: 0 10px 20px rgba(10, 46, 26, 0.05); }
.pillar-icon { width: 40px; height: 40px; flex-shrink: 0; background: rgba(45,106,79,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.pillar-icon svg { width: 20px; height: 20px; stroke: var(--green-warm); }
.pillar-text h4 { font-size: 0.9rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.3rem; letter-spacing: 0.02em; }
.pillar-text p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

.about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(45,106,79,0.1); border: 1px solid rgba(45,106,79,0.1); border-radius: 12px; overflow: hidden; margin-bottom: 2rem; }
.about-stat { background: var(--white); padding: 2rem; }
.about-stat-num { font-family: var(--font-serif); font-size: 2.8rem; font-weight: 300; color: var(--green-warm); line-height: 1; margin-bottom: 0.4rem; }
html[dir="rtl"] .about-stat-num { font-family: 'Cairo', sans-serif; font-weight: 700; }
.about-stat-label { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; font-weight: 300; }
.about-founding { background: var(--green-deep); border-radius: 10px; padding: 2rem 2.2rem; color: rgba(255,255,255,0.75); font-size: 0.92rem; line-height: 1.8; font-weight: 300; }
.about-founding strong { color: var(--gold-light); font-weight: 500; display: block; margin-bottom: 0.6rem; font-family: var(--font-serif); font-size: 1.1rem; }
html[dir="rtl"] .about-founding strong { font-family: 'Cairo', sans-serif; font-weight: 700; }

/* ─── WHO WE SERVE ─── */
#serve { background: var(--white); }
.serve-intro { max-width: 1200px; margin: 0 auto; }
.serve-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4rem; padding-left: 1.5rem; }
html[dir="rtl"] .serve-header { padding-left: 0; padding-right: 1.5rem; }
.serve-sub { font-size: 1rem; line-height: 1.8; color: var(--text-muted); font-weight: 300; padding-bottom: 0.5rem; }
.serve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.serve-card { 
  border: 1px solid rgba(45,106,79,0.12); border-radius: 10px; padding: 2rem; 
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; 
}
.serve-card:hover { 
  transform: translateY(-5px);
  border-color: rgba(45,106,79,0.3); 
  box-shadow: 0 10px 30px rgba(10, 46, 26, 0.08); 
}

.serve-card-icon { width: 48px; height: 48px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.serve-card-icon svg { width: 24px; height: 24px; }
.serve-card h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 400; color: var(--text-dark); margin-bottom: 0.6rem; }
html[dir="rtl"] .serve-card h3 { font-family: 'Cairo', sans-serif; font-weight: 700; }
.serve-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

/* ─── CONTACT ─── */
#contact { background: var(--green-deep); position: relative; overflow: hidden; }
.contact-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 70% at 70% 50%, rgba(45,106,79,0.4) 0%, transparent 70%); pointer-events: none; }
.contact-inner { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.contact-left .section-label { color: var(--gold-light); }
.contact-left .section-label::before { background: var(--gold-light); }
.contact-left .section-title { color: var(--white); }
.contact-left p { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.8; font-weight: 300; margin-bottom: 2.5rem; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-info-item { display: flex; align-items: center; gap: 0.8rem; color: rgba(255,255,255,0.7); font-size: 0.9rem; font-weight: 300; }
.contact-info-item svg { width: 16px; height: 16px; stroke: var(--gold-light); flex-shrink: 0; }
.contact-info-item a { color: var(--gold-light); text-decoration: none; }
.contact-info-item a:hover { color: var(--gold); }
.linkedin-btn { display: inline-flex; align-items: center; gap: 0.6rem; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); padding: 0.7rem 1.4rem; border-radius: 6px; text-decoration: none; font-size: 0.85rem; font-weight: 400; letter-spacing: 0.03em; transition: background 0.2s, border-color 0.2s, transform 0.2s; }
.linkedin-btn:hover { background: rgba(10,102,194,0.25); border-color: rgba(10,102,194,0.5); color: var(--white); transform: translateY(-2px); }
.linkedin-btn svg { width: 18px; height: 18px; fill: currentColor; }

/* ─── FORM ─── */
.contact-form { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 2.5rem; }
.contact-form h3 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 300; color: var(--white); margin-bottom: 1.8rem; }
html[dir="rtl"] .contact-form h3 { font-family: 'Cairo', sans-serif; font-weight: 600; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; color: rgba(255,255,255,0.55); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.5rem; font-weight: 400; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; padding: 0.75rem 1rem; color: var(--white); font-family: var(--font-sans); font-size: 0.9rem; font-weight: 300; outline: none; transition: border-color 0.2s; }
html[dir="rtl"] .form-group input, html[dir="rtl"] .form-group textarea, html[dir="rtl"] .form-group select { font-family: 'Cairo', sans-serif; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: rgba(201,168,76,0.5); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group select { color: rgba(255,255,255,0.7); }
.form-group select option { background: var(--green-deep); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.submit-btn { 
  width: 100%; background: var(--gold); color: var(--green-deep); border: none; 
  border-radius: 6px; padding: 0.9rem 2rem; font-family: var(--font-sans); 
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.04em; cursor: pointer; 
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease; 
  margin-top: 0.5rem; 
}
html[dir="rtl"] .submit-btn { font-family: 'Cairo', sans-serif; font-weight: 700; font-size: 1rem;}
.submit-btn:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(201,168,76,0.3); }
.submit-btn:active { transform: scale(0.99); }

.modal-success { display: none; text-align: center; padding: 1.5rem 0; }
.modal-success svg { width: 48px; height: 48px; stroke: var(--green-light); margin-bottom: 1rem; }
.modal-success h4 { font-family: var(--font-serif); font-size: 1.4rem; color: var(--white); margin-bottom: 0.5rem; }
.modal-success p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 0; }

/* ─── FOOTER ─── */
footer { background: #05180d; padding: 2rem 4rem; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-logo { font-family: var(--font-serif); color: rgba(255,255,255,0.4); font-size: 1rem; font-weight: 300; letter-spacing: 0.04em; }
html[dir="rtl"] .footer-logo { font-family: 'Cairo', sans-serif; font-weight: 500; }
.footer-copy { color: rgba(255,255,255,0.25); font-size: 0.78rem; font-weight: 300; letter-spacing: 0.04em; }

/* ─── POPUP MODAL ─── */
.modal-overlay { position: fixed; inset: 0; z-index: 999; background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; backdrop-filter: blur(4px); }
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal { background: var(--green-deep); border: 1px solid rgba(201,168,76,0.2); border-radius: 14px; padding: 2.5rem; width: 100%; max-width: 480px; transform: translateY(20px); transition: transform 0.3s; position: relative; }
.modal-overlay.active .modal { transform: translateY(0); }
.modal-close { position: absolute; top: 1.2rem; right: 1.2rem; background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.4); font-size: 1.2rem; line-height: 1; transition: color 0.2s; }
.modal-close:hover { color: var(--white); }
html[dir="rtl"] .modal-title { font-family: 'Cairo', sans-serif; font-weight: 700 !important; }

/* ─── DIVIDER ─── */
.divider { width: 3rem; height: 1px; background: var(--gold); margin: 1.5rem 0 2rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-actions { gap: 1rem; }
  .hbg { display: flex; }
  
  section { padding: 5rem 1.5rem; }
  #mission { grid-template-columns: 1fr; }
  .mission-panel { padding: 4rem 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .serve-grid { grid-template-columns: 1fr 1fr; }
  .serve-header { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  #home { padding: 7rem 1.5rem 3rem; }
  footer { flex-direction: column; gap: 0.8rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .serve-grid { grid-template-columns: 1fr; }
  .about-stat-grid { grid-template-columns: 1fr; }
}
