:root {
  --newa-primary: #1a7a5e;
  --newa-primary-dark: #145f49;
  --newa-secondary: #e07b39;
  --newa-dark: #1c2b3a;
  --newa-light: #f8faf9;
  --newa-text: #3a4a5a;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--newa-text);
  line-height: 1.7;
}

h1, h2, h3, h4, h5 {
  color: var(--newa-dark);
  font-weight: 700;
}

/* ===== NAVBAR ===== */
.navbar {
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 0.6rem 0;
  transition: all 0.3s;
}

.navbar-brand img {
  height: 68px;
  width: auto;
}

.navbar-nav .nav-link {
  color: var(--newa-dark) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--newa-primary) !important;
}

.lang-switcher .nav-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--newa-primary) !important;
  border: 1.5px solid var(--newa-primary);
  border-radius: 20px;
  padding: 0.25rem 0.75rem !important;
  margin-left: 0.5rem;
}

.lang-switcher .nav-link:hover {
  background-color: var(--newa-primary);
  color: white !important;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  background: linear-gradient(135deg, #1a7a5e 0%, #1c2b3a 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://picsum.photos/seed/newa-community/1920/1080') center/cover no-repeat;
  opacity: 0.15;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

.hero h1 {
  color: white;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: #f0c97a;
}

.hero p.lead {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.btn-hero-primary {
  background-color: var(--newa-secondary);
  color: white;
  font-weight: 600;
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  font-size: 1.05rem;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-hero-primary:hover {
  background-color: #c96828;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 123, 57, 0.4);
}

.btn-hero-outline {
  border: 2px solid white;
  color: white;
  font-weight: 600;
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  font-size: 1.05rem;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  margin-left: 1rem;
}

.btn-hero-outline:hover {
  background-color: white;
  color: var(--newa-primary);
  transform: translateY(-2px);
}

/* ===== SECTION UTILITIES ===== */
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  color: var(--newa-dark);
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6c7a8a;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--newa-primary);
  display: block;
  margin-bottom: 0.75rem;
}

.bg-light-newa { background-color: var(--newa-light); }
.text-primary-newa { color: var(--newa-primary) !important; }

.btn-newa {
  background-color: var(--newa-secondary);
  color: white;
  font-weight: 600;
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  font-size: 1.05rem;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-newa:hover {
  background-color: #c96828;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224,123,57,0.4);
}

.btn-newa-green {
  background-color: var(--newa-primary);
  color: white;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-newa-green:hover {
  background-color: var(--newa-primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,122,94,0.3);
}

/* ===== MISSION STRIP ===== */
.mission-strip {
  background: linear-gradient(135deg, var(--newa-primary) 0%, #145f49 100%);
  padding: 6rem 0;
  color: white;
}

.mission-strip h2 { color: white; }
.mission-strip .section-label { color: #f0c97a; }

/* ===== FOCUS CARDS ===== */
.focus-card {
  border: none;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.focus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.focus-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.focus-icon.mental   { background-color: #e8f5f1; color: var(--newa-primary); }
.focus-icon.wellness { background-color: #fff3e8; color: #e07b39; }
.focus-icon.craft    { background-color: #f0eeff; color: #7c5cbf; }
.focus-icon.growth   { background-color: #e8f0ff; color: #3a7bd5; }

/* ===== WHO WE SERVE ===== */
.serve-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}

.serve-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.serve-card-body {
  position: relative;
  z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, transparent 100%);
  padding: 2rem 1.5rem;
  width: 100%;
  color: white;
}

.serve-card-body h3 { color: white; font-size: 1.4rem; }
.serve-card-body p  { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin: 0; }

/* ===== CTA SECTION ===== */
.cta-section { background-color: var(--newa-light); padding: 6rem 0; }

/* ===== FOOTER ===== */
footer {
  background-color: var(--newa-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}

footer h5 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

footer a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
  margin-bottom: 0.5rem;
}

footer a:hover { color: white; }

.footer-logo { height: 60px; width: 60px; object-fit: cover; border-radius: 12px; }

.footer-divider {
  border-color: rgba(255,255,255,0.1);
  margin: 2rem 0 1.5rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  color: white !important;
  margin-right: 0.5rem;
  transition: background-color 0.2s;
  text-decoration: none;
}

.social-links a:hover { background-color: var(--newa-primary); }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--newa-dark) 0%, #2d4a5e 100%);
  padding: 7rem 0 4rem;
  color: white;
  margin-top: 68px;
}

.page-header h1 { color: white; }
.page-header p  { color: rgba(255,255,255,0.8); }

/* ===== ABOUT PAGE ===== */
.about-img {
  border-radius: 16px;
  object-fit: cover;
  width: 100%;
  height: 420px;
}

.about-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.about-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: #e8f5f1;
  color: var(--newa-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ===== PROGRAM CARDS ===== */
.program-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.program-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.program-card-body { padding: 2rem; }

.program-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* ===== CONTACT PAGE ===== */
.contact-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  padding: 2.5rem;
  background: white;
}

.form-control, .form-select {
  border-radius: 8px;
  border: 1.5px solid #dee2e6;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus, .form-select:focus {
  border-color: var(--newa-primary);
  box-shadow: 0 0 0 3px rgba(26, 122, 94, 0.15);
  outline: none;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background-color: #e8f5f1;
  color: var(--newa-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ===== REGISTRATION BOX ===== */
.info-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  padding: 2.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { min-height: 75vh; }
  .btn-hero-outline { margin-left: 0; margin-top: 1rem; }
  .about-img { height: 280px; }
}
