/* =========================================================
   SUN 10 LLC — Main Stylesheet
   Palette: Forest Green (#2d6a4f), Charcoal (#1a1a1a),
            White (#ffffff), Gold (#c9a84c), Light (#f5f5f0)
   ========================================================= */

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

/* ── CSS Variables ── */
:root {
  --green-dark:   #1b4332;
  --green:        #2d6a4f;
  --green-mid:    #40916c;
  --green-light:  #74c69d;
  --green-pale:   #d8f3dc;
  --gold:         #c9a84c;
  --gold-light:   #e9d49a;
  --charcoal:     #1a1a1a;
  --gray:         #3d3d3d;
  --gray-mid:     #6b7280;
  --gray-light:   #e5e7eb;
  --white:        #ffffff;
  --off-white:    #f5f5f0;
  --font-head:    'Playfair Display', serif;
  --font-body:    'Inter', sans-serif;
  --radius:       6px;
  --shadow:       0 4px 24px rgba(0,0,0,0.09);
  --transition:   0.3s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
p  { font-size: 1rem; color: var(--gray); }

/* ── Utility ── */
.container        { max-width: 1200px; margin-inline: auto; padding-inline: 1.5rem; }
.section          { padding-block: 90px; }
.section--dark    { background: var(--charcoal); color: var(--white); }
.section--green   { background: var(--green-dark); color: var(--white); }
.section--pale    { background: var(--off-white); }
.text-center      { text-align: center; }
.text-gold        { color: var(--gold); }
.text-green       { color: var(--green); }
.fw-600           { font-weight: 600; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title { margin-bottom: 1.25rem; }
.section-desc  { max-width: 660px; margin-inline: auto; color: var(--gray-mid); font-size: 1.05rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--charcoal);
  transform: translateY(-2px);
}
.btn-outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline-green:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 1.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}
.navbar.scrolled {
  background: rgba(26, 26, 26, 0.99);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.navbar__inner {
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.navbar__logo .logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--green-mid), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-body);
  letter-spacing: 0;
  flex-shrink: 0;
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.navbar__nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.navbar__nav a:hover,
.navbar__nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.navbar__nav .dropdown {
  position: relative;
}
.navbar__nav .dropdown > a::after {
  content: ' ▾';
  font-size: 0.65rem;
}
.navbar__nav .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.5rem;
  min-width: 200px;
  box-shadow: var(--shadow);
}
.navbar__nav .dropdown:hover .dropdown-menu { display: block; }
.navbar__nav .dropdown-menu a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  font-size: 0.86rem;
}
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.navbar__actions .btn { padding: 0.55rem 1.2rem; font-size: 0.86rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.25rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Mobile Nav ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--charcoal);
  flex-direction: column;
  padding: 90px 2rem 2rem;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--green-light); }
.mobile-nav .btn { margin-top: 1.5rem; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--charcoal);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  opacity: 0.35;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,67,50,0.7) 0%, rgba(26,26,26,0.65) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--white);
  animation: fadeUp 0.9s ease forwards;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.hero__title span { color: var(--green-light); }
.hero__desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero__scroll .arrow { font-size: 1.2rem; }

/* ── Stats Bar ── */
.stats-bar {
  background: var(--green-dark);
  padding: 2rem 1.5rem;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin-inline: auto;
  text-align: center;
}
.stat-item__num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-item__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.2rem;
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.service-card p  { font-size: 0.95rem; line-height: 1.65; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1.25rem;
  transition: gap var(--transition);
}
.service-card__link:hover { gap: 0.6rem; }

/* ── Process ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
}
.process-step {
  text-align: center;
  position: relative;
}
.process-step__num {
  width: 60px;
  height: 60px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.process-step p  { font-size: 0.9rem; }

/* ── Why Choose ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(116,198,157,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-item h4 { font-size: 1rem; margin-bottom: 0.3rem; font-family: var(--font-body); font-weight: 600; }
.why-item p  { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, var(--green-mid) 100%);
  padding: 80px 1.5rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-banner h2 { margin-bottom: 1rem; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.cta-banner p  { max-width: 560px; margin-inline: auto; color: rgba(255,255,255,0.85); margin-bottom: 2rem; }
.cta-banner__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--green-pale);
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  line-height: 1;
}
.testimonial-card p {
  font-size: 0.98rem;
  line-height: 1.7;
  font-style: italic;
  color: var(--gray);
  position: relative;
  z-index: 1;
  margin-bottom: 1.25rem;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-card__info strong { display: block; font-weight: 600; font-size: 0.95rem; }
.testimonial-card__info span  { font-size: 0.82rem; color: var(--gray-mid); }
.testimonial-card__stars { color: var(--gold); font-size: 0.9rem; margin-top: 0.25rem; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--charcoal) 100%);
  padding: 120px 1.5rem 70px;
  color: var(--white);
  text-align: center;
}
.page-hero .section-label { color: var(--gold-light); }
.page-hero h1  { color: var(--white); margin-bottom: 1rem; }
.page-hero p   { color: rgba(255,255,255,0.8); max-width: 620px; margin-inline: auto; font-size: 1.1rem; }

/* ── Cards (generic) ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.card__img {
  height: 220px;
  overflow: hidden;
}
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card__img img { transform: scale(1.05); }
.card__body { padding: 1.75rem; }
.card__tag {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.card__body h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.card__body p  { font-size: 0.93rem; }

/* ── Info Box ── */
.info-box {
  background: var(--green-pale);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.info-box p { color: var(--green-dark); font-size: 0.95rem; }

/* ── FAQ Accordion ── */
.accordion { margin-top: 3rem; }
.accordion-item {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.accordion-btn {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition);
}
.accordion-btn:hover { background: var(--off-white); }
.accordion-btn.open  { background: var(--green-dark); color: var(--white); }
.accordion-icon {
  flex-shrink: 0;
  font-size: 1.2rem;
  transition: transform var(--transition);
}
.accordion-btn.open .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  display: none;
  padding: 1.25rem 1.5rem;
  background: var(--off-white);
  border-top: 1px solid var(--gray-light);
}
.accordion-body.open { display: block; }
.accordion-body p { font-size: 0.97rem; line-height: 1.75; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  margin-top: 3rem;
}
.contact-info h3 { font-size: 1.3rem; margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-detail__icon {
  width: 42px;
  height: 42px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail__text strong { display: block; font-weight: 600; margin-bottom: 0.2rem; }
.contact-detail__text span   { font-size: 0.93rem; color: var(--gray-mid); }
.contact-form .form-group { margin-bottom: 1.25rem; }
.contact-form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--gray);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.map-placeholder {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
  color: var(--gray-mid);
  font-size: 0.9rem;
}

/* ── Flash Messages ── */
.flash-messages { padding: 0.75rem 1.5rem; }
.flash {
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.flash.success { background: var(--green-pale); color: var(--green-dark); border-left: 4px solid var(--green); }
.flash.error   { background: #fde8e8; color: #991b1b; border-left: 4px solid #ef4444; }

/* ── Two-Col Layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }
.two-col__img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 420px;
}
.two-col__img img { width: 100%; height: 100%; object-fit: cover; }
.two-col__text .section-label { margin-top: 0; }
.two-col__text h2 { margin-bottom: 1rem; }
.two-col__text p  { margin-bottom: 1rem; }
.check-list { margin-top: 1.25rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 0.6rem;
}
.check-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ── About Timeline ── */
.timeline { margin-top: 3rem; position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--green-pale);
}
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.4rem;
  top: 0.4rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--green);
}
.timeline-item__year {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.timeline-item h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }

/* ── Team Grid ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); }
.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--white);
  margin-inline: auto;
  margin-bottom: 1rem;
}
.team-card h4 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.team-card span { font-size: 0.85rem; color: var(--green); font-weight: 600; }

/* ── Footer ── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding: 70px 1.5rem 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin-inline: auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand .navbar__logo { margin-bottom: 1rem; }
.footer__brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer__col h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer__col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--green-light); }
.footer__bottom {
  max-width: 1200px;
  margin-inline: auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__cert {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
}

/* ── Policy Pages ── */
.policy-content {
  max-width: 800px;
  margin-inline: auto;
}
.policy-content h2 {
  font-size: 1.4rem;
  margin: 2.5rem 0 0.75rem;
  color: var(--green-dark);
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p  { margin-bottom: 1rem; font-size: 0.97rem; }
.policy-content ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.policy-content ul li { list-style: disc; font-size: 0.97rem; color: var(--gray); margin-bottom: 0.4rem; }

/* ── 404 ── */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--off-white);
  padding: 2rem;
}
.error-page__code {
  font-family: var(--font-head);
  font-size: 7rem;
  line-height: 1;
  color: var(--green);
  margin-bottom: 1rem;
}
.error-page h2  { font-size: 1.8rem; margin-bottom: 1rem; }
.error-page p   { color: var(--gray-mid); max-width: 420px; margin-inline: auto 2rem; }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col__img { height: 300px; }
  .two-col--reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .navbar__nav, .navbar__actions { display: none; }
  .hamburger { display: flex; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .hero__actions { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding-block: 60px; }
}
@media (max-width: 480px) {
  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
  .stat-item__num  { font-size: 1.7rem; }
}
