/* ============================================================
   DHAAGA — main.css
   Base styles, CSS variables, typography, nav, footer,
   buttons, and all shared component styles.
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --color-red:          #E8593C;
  --color-navy:         #1D2B4F;
  --color-navy-dark:    #0F1C35;
  --color-navy-darkest: #0A1428;
  --color-green:        #2EAE7D;
  --color-amber:        #F7C35A;
  --color-coral:        #F0997B;
  --color-cream:        #F9F5F0;
  --color-white:        #ffffff;
  --color-border:       #E8E0D8;
  --color-text:         #1D2B4F;
  --color-text-muted:   #777777;
  --color-text-light:   #999999;

  --font-serif: Georgia, 'Times New Roman', Times, serif;
  --font-sans:  Arial, Helvetica, sans-serif;

  --nav-height: 64px;
  --max-width:  1120px;
  --section-padding: 96px 40px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-sans);
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-sans);
  font-size: 15px;
}

/* ===== LAYOUT UTILITIES ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section-centered {
  text-align: center;
}

/* ===== TYPOGRAPHY UTILITIES ===== */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.8px;
  color: var(--color-text);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtext {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 520px;
}

.section-centered .section-subtext {
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-red);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(232, 89, 60, 0.35);
  background: #d4502f;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  padding: 14px 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-secondary:hover {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  color: var(--color-red);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-white:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-sm {
  font-size: 14px;
  padding: 12px 24px;
}

/* ===== NAVIGATION ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--color-navy-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s ease;
}

.site-nav.scrolled {
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Nav brand / logo */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav-wordmark {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.3px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links a.active {
  color: var(--color-white);
}

.nav-cta {
  background: var(--color-red) !important;
  color: var(--color-white) !important;
  padding: 8px 18px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  transition: background 0.15s ease, transform 0.1s ease !important;
}

.nav-cta:hover {
  background: #d4502f !important;
  transform: scale(1.02);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.nav-mobile-drawer {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--color-navy-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 24px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile-drawer.open {
  display: flex;
}

.nav-mobile-drawer a {
  font-family: var(--font-sans);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  padding: 12px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: color 0.15s ease;
}

.nav-mobile-drawer a:last-child {
  border-bottom: none;
}

.nav-mobile-drawer a:hover {
  color: var(--color-white);
}

.nav-mobile-drawer .nav-cta {
  margin-top: 8px;
  text-align: center;
  border-radius: 8px !important;
  padding: 12px 18px !important;
  border-bottom: none !important;
}

/* Body offset for sticky nav */
body {
  padding-top: var(--nav-height);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-navy-darkest);
  padding: 48px 40px 32px;
}

.footer-top {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 32px;
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
}

.footer-tagline {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 220px;
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-legal {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.65);
}

/* ===== HERO (homepage) ===== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  background: var(--color-navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 40px;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.45;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(232, 89, 60, 0.15);
  border: 1px solid rgba(232, 89, 60, 0.3);
  color: var(--color-coral);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 28px;
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: 60px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-heading .accent {
  color: var(--color-red);
}

.hero-subheading {
  font-family: var(--font-sans);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero stats bar */
.hero-stats {
  margin-top: 72px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: stretch;
}

.hero-stat {
  flex: 1;
  text-align: center;
  padding: 20px 16px;
}

.hero-stat + .hero-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-number {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-red);
  display: block;
  line-height: 1.1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

/* ===== SHORT HERO (inner pages) ===== */
.page-hero {
  background: var(--color-navy-dark);
  padding: 72px 40px 64px;
  text-align: center;
}

.page-hero-heading {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 14px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero-sub {
  font-family: var(--font-sans);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== SECTION WRAPPERS ===== */
.section {
  padding: var(--section-padding);
}

.section--cream {
  background: var(--color-cream);
}

.section--white {
  background: var(--color-white);
}

.section--navy {
  background: var(--color-navy);
}

.section--red {
  background: var(--color-red);
}

/* ===== PROBLEM SECTION ===== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 48px auto 0;
}

.problem-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.problem-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(29, 43, 79, 0.08);
}

.problem-number {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: #F0D8D0;
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}

.problem-card h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
  line-height: 1.4;
}

.problem-card p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.stat-pill {
  display: inline-block;
  background: #FAECE7;
  color: var(--color-red);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 960px;
  margin: 48px auto 0;
}

.service-card {
  background: var(--color-white);
  padding: 36px 32px;
  transition: background 0.2s ease;
}

.service-card:hover {
  background: #FDFAF8;
}

.service-card--dark {
  background: var(--color-navy-dark);
}

.service-card--dark:hover {
  background: #132240;
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.service-icon-box {
  width: 44px;
  height: 44px;
  background: #FAECE7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card--dark .service-icon-box {
  background: rgba(232, 89, 60, 0.15);
}

.service-tag {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-red);
}

.service-card--dark .service-tag {
  color: var(--color-coral);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
  line-height: 1.35;
}

.service-card--dark h3 {
  color: var(--color-white);
}

.service-card p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #666;
  line-height: 1.75;
  margin-bottom: 18px;
}

.service-card--dark p {
  color: rgba(255, 255, 255, 0.65);
}

.service-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.keyword-pill {
  font-family: var(--font-sans);
  font-size: 11px;
  background: #F5F0EA;
  color: #999;
  padding: 3px 9px;
  border-radius: 20px;
}

.service-card--dark .keyword-pill {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 48px auto 0;
}

.pricing-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 28px 24px;
}

.pricing-card--featured {
  background: var(--color-navy);
  border-color: var(--color-navy);
}

.pricing-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: #FAECE7;
  color: var(--color-red);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.pricing-card--featured .pricing-badge {
  background: rgba(232, 89, 60, 0.2);
  color: var(--color-coral);
}

.pricing-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 14px;
}

.pricing-card--featured .pricing-name {
  color: var(--color-white);
}

.pricing-price {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-red);
  margin-bottom: 4px;
  line-height: 1;
}

.pricing-price-sub {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.pricing-card--featured .pricing-price-sub {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-features {
  border-top: 1px solid var(--color-border);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.pricing-card--featured .pricing-features {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-text);
}

.pricing-card--featured .pricing-feature {
  color: var(--color-white);
}

.pricing-check {
  width: 18px;
  height: 18px;
  background: var(--color-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-check::after {
  content: '';
  width: 5px;
  height: 3px;
  border-left: 1.5px solid white;
  border-bottom: 1.5px solid white;
  transform: rotate(-45deg) translateY(-1px);
}

.pricing-card + .pricing-card {
  /* spacing handled by grid gap */
}

/* ===== GRANT BANNER ===== */
.grant-banner {
  max-width: 860px;
  margin: 48px auto 0;
  background: var(--color-navy);
  border-radius: 16px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.grant-banner-left {
  flex: 1;
}

.grant-banner-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-coral);
  display: block;
  margin-bottom: 12px;
}

.grant-banner-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.4;
  max-width: 420px;
}

.grant-banner-centre {
  text-align: center;
  flex-shrink: 0;
}

.grant-big-number {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-red);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.grant-number-label {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.grant-banner-right {
  flex-shrink: 0;
}

/* ===== HOW IT WORKS ===== */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 860px;
  margin: 56px auto 0;
  position: relative;
}

.process-connector {
  position: absolute;
  top: 20px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: var(--color-border);
  z-index: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--color-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
}

.step-title {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.step-desc {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #888;
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
  margin: 48px auto 0;
}

.testimonial-card {
  background: #EEE8E0;
  border-radius: 16px;
  padding: 36px 40px;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 19px;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--color-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-white);
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.testimonial-name {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2px;
}

.testimonial-org {
  font-family: var(--font-sans);
  font-size: 12px;
  color: #999;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--color-red);
  padding: 80px 40px;
  text-align: center;
}

.cta-heading {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.cta-sub {
  font-family: var(--font-sans);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CONTACT PAGE ===== */
.contact-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-form-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 40px;
  margin: 48px auto 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px rgba(232, 89, 60, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 14px 32px;
  background: var(--color-red);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}

.form-submit:hover {
  background: #d4502f;
  transform: scale(1.01);
}

.contact-details {
  max-width: 560px;
  margin: 32px auto 0;
  padding: 0 20px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.contact-detail-item {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-text-muted);
}

.contact-detail-item strong {
  display: block;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

/* ===== ABOUT PAGE ===== */
.about-mission {
  max-width: 680px;
  margin: 0 auto;
}

.about-mission p {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 48px auto 0;
}

.approach-card {
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}

.approach-icon {
  width: 52px;
  height: 52px;
  background: #FAECE7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.approach-card h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.approach-card p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 48px auto 0;
}

.value-card {
  padding: 24px 20px;
  text-align: center;
}

.value-icon {
  width: 48px;
  height: 48px;
  background: var(--color-navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.value-card h4 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.value-card p {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ===== PRIVACY PAGE ===== */
.privacy-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 40px;
}

.privacy-content h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text);
  margin-top: 40px;
  margin-bottom: 14px;
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content p {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.privacy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.privacy-content ul li {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 6px;
}

.privacy-content a {
  color: var(--color-red);
  text-decoration: underline;
}

.privacy-last-updated {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 40px;
}

/* ===== 404 PAGE ===== */
.notfound {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
  background: var(--color-cream);
}

.notfound-inner {
  max-width: 480px;
}

.notfound-code {
  font-family: var(--font-serif);
  font-size: 96px;
  font-weight: 700;
  color: var(--color-red);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}

.notfound h1 {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 14px;
}

.notfound p {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ===== SERVICES PAGE HERO ===== */
.services-intro {
  max-width: 620px;
  margin: 0 auto 0;
  text-align: center;
}

/* ===== INLINE SVG ICON HELPERS ===== */
.icon-svg {
  width: 22px;
  height: 22px;
  color: var(--color-red);
}

.icon-svg--white {
  color: var(--color-white);
}
