/* ============================================================
   Atlas Marketing Group — Main Stylesheet
   Forest Green & Gold Theme | Mobile-First Design
   ============================================================ */

/* ── CSS VARIABLES ────────────────────────────────────────── */
:root {
  --green-900: #0D2B1F;
  --green-800: #1B4332;
  --green-700: #2D6A4F;
  --green-500: #52B788;
  --green-100: #D8F3DC;
  --green-50:  #F0FAF2;

  --gold-700:  #9A7B1A;
  --gold-600:  #B8960C;
  --gold-500:  #C9A227;
  --gold-400:  #D4AF37;
  --gold-300:  #E8C84A;
  --gold-100:  #FDF6D8;

  --white:     #FFFFFF;
  --gray-100:  #F8F9FA;
  --gray-200:  #E9ECEF;
  --gray-300:  #DEE2E6;
  --gray-500:  #ADB5BD;
  --gray-600:  #6C757D;
  --gray-700:  #495057;
  --gray-800:  #343A40;
  --gray-900:  #212529;
  --black:     #0A0C0B;

  --font-primary:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', 'Segoe UI', system-ui, sans-serif;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.08);
  --shadow-md:  0 4px 12px rgba(0,0,0,.12), 0 2px 6px rgba(0,0,0,.08);
  --shadow-lg:  0 10px 30px rgba(0,0,0,.15), 0 4px 12px rgba(0,0,0,.10);
  --shadow-xl:  0 20px 50px rgba(0,0,0,.20), 0 8px 20px rgba(0,0,0,.12);
  --shadow-gold: 0 4px 20px rgba(201,162,39,.35);

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  --transition-fast:   150ms ease;
  --transition-base:   300ms ease;
  --transition-slow:   600ms ease;
  --transition-slower: 900ms ease;

  --nav-height: 80px;
  --section-py: clamp(60px, 8vw, 100px);
  --container-max: 1200px;
  --container-px: clamp(16px, 5vw, 60px);
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background-color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol { list-style: none; }

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

button { cursor: pointer; border: none; background: none; }

:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  color: var(--green-800);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }

p { color: var(--gray-700); line-height: 1.75; }

/* ── LAYOUT HELPERS ───────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section { padding: var(--section-py) 0; }
.section--dark { background: var(--green-800); }
.section--light { background: var(--green-50); }
.section--pale { background: var(--green-100); }

.text-center { text-align: center; }
.text-gold { color: var(--gold-500); }
.text-green { color: var(--green-700); }
.text-white { color: var(--white); }

/* ── SECTION HEADERS ──────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 70px);
}

.section-header .eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 14px;
  position: relative;
  padding: 0 20px;
}

.section-header .eyebrow::before,
.section-header .eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--gold-500);
  opacity: .7;
}
.section-header .eyebrow::before { right: 100%; margin-right: 4px; transform: translateX(20px); }
.section-header .eyebrow::after  { left: 100%;  margin-left:  4px; transform: translateX(-20px); }

.section-header h2 { margin-bottom: 16px; }

.section-header p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 0;
}
.section-divider span {
  width: 50px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500));
}
.section-divider span:last-child {
  background: linear-gradient(90deg, var(--gold-500), transparent);
}
.section-divider i { color: var(--gold-500); font-size: .85rem; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .04em;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--green-900);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,162,39,.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green-800);
  transform: translateY(-2px);
}

.btn-outline-green {
  border: 2px solid var(--green-700);
  color: var(--green-700);
  background: transparent;
}
.btn-outline-green:hover {
  background: var(--green-700);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 22px; font-size: .875rem; }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }

/* ── NAVIGATION ───────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

#navbar.scrolled {
  background: rgba(27, 67, 50, .97);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#navbar .nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-900);
  font-size: 1.3rem;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}

.nav-logo .logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo .logo-text span:first-child {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.nav-logo .logo-text span:last-child {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  letter-spacing: .03em;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav-links a.active { color: var(--gold-400); }

.nav-cta { flex-shrink: 0; }
.nav-cta .btn { padding: 10px 24px; font-size: .875rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}
.nav-toggle:hover { background: rgba(255,255,255,.1); }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(27, 67, 50, .98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px var(--container-px) 30px;
  border-top: 1px solid rgba(201,162,39,.2);
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
  transform: translateY(-20px);
  opacity: 0;
  transition: all var(--transition-base);
  z-index: 999;
}

.nav-mobile.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.nav-mobile a {
  display: block;
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color var(--transition-fast), padding var(--transition-fast);
}
.nav-mobile a:hover { color: var(--gold-400); padding-left: 8px; }
.nav-mobile .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ── HERO SECTION ─────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-900);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 40%, rgba(82,183,136,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(201,162,39,.12) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(45,106,79,.25) 0%, transparent 55%);
  animation: heroBgPulse 8s ease-in-out infinite alternate;
}

@keyframes heroBgPulse {
  0%   { opacity: .8; transform: scale(1); }
  100% { opacity: 1;  transform: scale(1.05); }
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('../images/IMG_7688.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: .18;
  filter: saturate(0.4);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0%   { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(82,183,136,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82,183,136,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridFade 4s ease-in-out infinite alternate;
}

@keyframes gridFade {
  0%   { opacity: .3; }
  100% { opacity: .8; }
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: orbFloat linear infinite;
}
.hero-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(82,183,136,.2), transparent 70%);
  top: -100px; left: -100px;
  animation-duration: 18s;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,162,39,.15), transparent 70%);
  bottom: -80px; right: 10%;
  animation-duration: 22s;
  animation-direction: reverse;
}
.hero-orb-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(45,106,79,.25), transparent 70%);
  top: 30%; right: 20%;
  animation-duration: 15s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(30px, -40px) scale(1.05); }
  50%  { transform: translate(-20px, 30px) scale(.95); }
  75%  { transform: translate(40px, 20px) scale(1.02); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: calc(var(--nav-height) + 60px) var(--container-px) 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,39,.15);
  border: 1px solid rgba(201,162,39,.35);
  color: var(--gold-400);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 28px;
  animation: fadeInDown .8s ease both;
}
.hero-badge i { font-size: .75rem; }

.hero-headline {
  font-family: var(--font-primary);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 800px;
  animation: fadeInUp .9s .15s ease both;
}

.hero-headline .highlight {
  color: var(--gold-400);
  position: relative;
  display: inline-block;
}

.hero-headline .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: 2px;
  animation: underlineGrow 1s 1.2s ease forwards;
}

@keyframes underlineGrow {
  to { width: 100%; }
}

.hero-subtext {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.75);
  max-width: 600px;
  margin-bottom: 42px;
  line-height: 1.8;
  animation: fadeInUp .9s .3s ease both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeInUp .9s .45s ease both;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
  animation: fadeInUp .9s .6s ease both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat .value {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}
.hero-stat .label {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 6px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: fadeIn 1.5s 1s ease both;
}

.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 13px;
  position: relative;
  overflow: hidden;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold-400);
  border-radius: 2px;
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { top: 6px; opacity: 1; }
  80%  { top: 22px; opacity: 0; }
}

/* ── ABOUT SECTION ────────────────────────────────────────── */
#about {
  background: var(--white);
  padding: var(--section-py) 0;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 80px);
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
  max-height: 560px;
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slower);
}
.about-image-frame:hover img { transform: scale(1.04); }

.about-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(27,67,50,.4));
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  z-index: 2;
  animation: badgeSpin 20s linear infinite;
  border: 4px solid var(--white);
}
.about-badge .badge-num {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-900);
  line-height: 1;
}
.about-badge .badge-text {
  font-size: .6rem;
  font-weight: 700;
  color: var(--green-800);
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
  padding: 0 8px;
}

@keyframes badgeSpin {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.05); }
  100% { transform: rotate(360deg) scale(1); }
}

.about-deco {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--gold-500);
  border-radius: var(--radius-lg);
  opacity: .3;
  animation: decoFloat 6s ease-in-out infinite;
}
@keyframes decoFloat {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  50%  { transform: translate(-8px, -8px) rotate(5deg); }
}

.about-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 16px;
}

.about-content h2 { margin-bottom: 20px; }

.about-content p { margin-bottom: 16px; }

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--green-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--green-100);
  transition: all var(--transition-base);
}
.about-value:hover {
  background: var(--white);
  border-color: var(--gold-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.about-value .icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .9rem;
  flex-shrink: 0;
}

.about-value h4 {
  font-size: .9rem;
  margin-bottom: 4px;
  color: var(--green-800);
}
.about-value p {
  font-size: .8rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.5;
}

.about-cta { margin-top: 36px; }

/* ── SERVICES SECTION ─────────────────────────────────────── */
#services {
  background: var(--green-50);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

#services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-700), var(--gold-500), var(--green-700));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-700), var(--gold-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card .card-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--green-100);
  line-height: 1;
  transition: color var(--transition-base);
}
.service-card:hover .card-num { color: var(--gold-100); }

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.6rem;
  color: var(--gold-400);
  box-shadow: 0 4px 16px rgba(27,67,50,.3);
  transition: all var(--transition-base);
  flex-shrink: 0;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  color: var(--green-900);
  transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--green-800);
}

.service-card p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.7;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--green-700);
  transition: all var(--transition-fast);
}
.service-link:hover { color: var(--gold-600); gap: 10px; }

/* ── STATS SECTION ────────────────────────────────────────── */
#stats {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
  position: relative;
  transition: background var(--transition-base);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,.05); }

.stat-value {
  font-family: var(--font-primary);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.stat-icon {
  font-size: 1.8rem;
  color: rgba(82,183,136,.5);
  margin-bottom: 12px;
}

/* ── CAREERS SECTION ──────────────────────────────────────── */
#careers {
  padding: var(--section-py) 0;
  background: var(--white);
  overflow: hidden;
}

.careers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 80px);
  align-items: center;
}

.careers-content .section-header {
  text-align: left;
  margin-bottom: 30px;
}
.careers-content .section-header p { max-width: 100%; }

.careers-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}

.career-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  transition: all var(--transition-base);
}
.career-feature:hover {
  background: var(--white);
  border-color: var(--gold-400);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.career-feature .feat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.career-feature h4 {
  font-size: 1rem;
  color: var(--green-800);
  margin-bottom: 6px;
}
.career-feature p {
  font-size: .875rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.6;
}

.careers-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.careers-image-wrap { position: relative; }

.careers-image-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 3/4;
  max-height: 580px;
}

.careers-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slower);
}
.careers-image-main:hover img { transform: scale(1.04); }

.careers-floating-card {
  position: absolute;
  bottom: -16px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--green-100);
  min-width: 200px;
  animation: floatCard 5s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%  { transform: translateY(-8px); }
}

.careers-floating-card .card-title {
  font-size: .75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 6px;
}
.careers-floating-card .card-value {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-800);
  line-height: 1;
}
.careers-floating-card .card-sub {
  font-size: .8rem;
  color: var(--gold-600);
  font-weight: 600;
  margin-top: 4px;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
#testimonials {
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

#testimonials::after {
  content: '"';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-primary);
  font-size: 30rem;
  color: rgba(255,255,255,.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonials-track {
  position: relative;
  overflow: hidden;
}

.testimonials-slider {
  display: flex;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 20px;
}

.testimonial-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  backdrop-filter: blur(8px);
  transition: all var(--transition-base);
}
.testimonial-card:hover { background: rgba(255,255,255,.1); }

.testimonial-card .quote-icon {
  position: absolute;
  top: -18px;
  left: 40px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-900);
  font-size: 1.2rem;
  box-shadow: var(--shadow-gold);
}

.testimonial-text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.88);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  border: 2px solid rgba(201,162,39,.4);
}

.author-info .name {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.author-info .role {
  font-size: .85rem;
  color: var(--gold-400);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-top: 12px;
}
.testimonial-stars i { color: var(--gold-400); font-size: .9rem; }

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.t-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.t-btn:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--green-900); }

.t-dots { display: flex; gap: 8px; }

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.t-dot.active { background: var(--gold-400); width: 24px; border-radius: 4px; }

.testimonials-placeholder {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255,255,255,.5);
}
.testimonials-placeholder i {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
  color: rgba(255,255,255,.25);
}

/* ── CONTACT SECTION ──────────────────────────────────────── */
#contact {
  padding: var(--section-py) 0;
  background: var(--green-50);
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 6vw, 70px);
  align-items: start;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--green-800);
}
.contact-info > p {
  color: var(--gray-600);
  margin-bottom: 32px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--green-100);
  transition: all var(--transition-base);
}
.contact-item:hover {
  border-color: var(--gold-400);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.contact-item .item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item .item-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-500);
  margin-bottom: 2px;
}
.contact-item .item-value {
  font-weight: 600;
  color: var(--gray-800);
  font-size: .95rem;
}
.contact-item a.item-value:hover { color: var(--green-700); }

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  font-size: 1rem;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}
.social-btn:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact-map {
  margin-top: 24px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--green-100);
}
.contact-map iframe {
  width: 100%;
  height: 220px;
  display: block;
  border: none;
  filter: saturate(.9) contrast(1.05);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--green-100);
}

.contact-form-wrap h3 {
  margin-bottom: 8px;
  font-size: 1.6rem;
}
.contact-form-wrap > p {
  color: var(--gray-600);
  font-size: .9rem;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-group label .required { color: var(--gold-600); margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: .95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: all var(--transition-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(82,183,136,.15);
}

.form-control.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220,53,69,.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236C757D' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }

.form-error {
  font-size: .8rem;
  color: #dc3545;
  margin-top: 5px;
  display: none;
}
.form-error.show { display: block; }

.form-success, .form-failure {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  display: none;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
}
.form-success.show, .form-failure.show { display: flex; }

.form-success {
  background: rgba(82,183,136,.1);
  border: 1px solid rgba(82,183,136,.3);
  color: var(--green-700);
}
.form-failure {
  background: rgba(220,53,69,.08);
  border: 1px solid rgba(220,53,69,.25);
  color: #842029;
}

/* ── FOOTER ───────────────────────────────────────────────── */
#footer {
  background: var(--green-900);
  color: rgba(255,255,255,.75);
  padding-top: clamp(50px, 7vw, 80px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 5vw, 50px);
  padding-bottom: clamp(40px, 5vw, 60px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-brand .f-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--green-900);
  flex-shrink: 0;
}

.footer-brand .f-name {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.footer-brand .f-tagline {
  font-size: .7rem;
  color: var(--gold-400);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-brand p {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: all var(--transition-fast);
}
.footer-social a:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--green-900);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold-400);
  margin-bottom: 18px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}
.footer-links a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-500);
  opacity: .5;
  transition: opacity var(--transition-fast);
  flex-shrink: 0;
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-links a:hover::before { opacity: 1; }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .875rem;
}

.footer-contact-item i {
  color: var(--gold-400);
  font-size: .9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item a { color: rgba(255,255,255,.6); }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 0;
}

.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal a {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  transition: color var(--transition-fast);
}
.footer-legal a:hover { color: var(--gold-400); }

/* ── SUBPAGE STYLES ───────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
  padding: calc(var(--nav-height) + 60px) 0 70px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(82,183,136,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82,183,136,.04) 1px, transparent 1px);
  background-size: 50px 50px;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  color: var(--white);
  margin-bottom: 14px;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}

.page-hero p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  max-width: 580px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.breadcrumb a { font-size: .85rem; color: var(--gold-400); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { font-size: .85rem; color: rgba(255,255,255,.4); }
.breadcrumb i { font-size: .65rem; color: rgba(255,255,255,.3); }

.page-content {
  padding: var(--section-py) 0;
  background: var(--white);
}

.page-content .prose {
  max-width: 860px;
  margin: 0 auto;
}

.prose h2 {
  font-size: 1.6rem;
  margin-top: 44px;
  margin-bottom: 16px;
  color: var(--green-800);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-100);
}

.prose h3 {
  font-size: 1.2rem;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--green-700);
}

.prose p {
  margin-bottom: 16px;
  color: var(--gray-700);
}

.prose ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.prose ul li {
  color: var(--gray-700);
  margin-bottom: 8px;
  line-height: 1.7;
}

.prose a { color: var(--green-700); text-decoration: underline; }
.prose a:hover { color: var(--gold-600); }

.prose .last-updated {
  display: inline-block;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  color: var(--green-700);
  font-size: .85rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 32px;
}

/* Apply page */
.apply-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 5vw, 48px);
  box-shadow: var(--shadow-md);
  max-width: 860px;
  margin: 0 auto;
}

.apply-form-wrap .form-section-title {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold-600);
  padding: 20px 0 12px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.apply-form-wrap .form-section-title::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold-500);
}

.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }

.file-upload-wrap {
  position: relative;
}

.file-upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-upload-label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  padding: 28px;
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
}
.file-upload-label:hover { border-color: var(--green-500); background: var(--green-50); }
.file-upload-label i { font-size: 1.8rem; color: var(--green-500); }
.file-upload-label .upload-text { font-size: .9rem; color: var(--gray-700); }
.file-upload-label .upload-sub { font-size: .8rem; color: var(--gray-500); }
.file-upload-label .file-name { font-size: .85rem; color: var(--green-700); font-weight: 600; display: none; }

.consent-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--green-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--green-100);
}

.consent-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green-700);
  cursor: pointer;
  margin-top: 2px;
  flex-shrink: 0;
}

.consent-group label {
  font-size: .9rem;
  color: var(--gray-700);
  line-height: 1.6;
  cursor: pointer;
  margin: 0;
}

/* Honeypot */
.hp-field { display: none !important; visibility: hidden !important; }

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(.85); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.from-left  { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }
.reveal.scale-up   { transform: scale(.9); }

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* Gold shimmer on headings */
.shimmer-text {
  background: linear-gradient(90deg, var(--gold-600), var(--gold-300), var(--gold-600));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* Pulse ring */
.pulse-ring {
  position: relative;
  display: inline-flex;
}
.pulse-ring::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 2px solid var(--gold-400);
  opacity: 0;
  animation: pulseRing 2s ease-in-out infinite;
}
@keyframes pulseRing {
  0%   { opacity: .6; transform: scale(1); }
  100% { opacity: 0;  transform: scale(1.35); }
}

/* Loading spinner */
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: none;
}
.spinner.show { display: inline-block; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { order: -1; max-width: 520px; margin: 0 auto; }

  .careers-grid { grid-template-columns: 1fr; }
  .careers-image-wrap { max-width: 520px; margin: 0 auto; }
  .careers-content .section-header { text-align: center; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }

  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 68px; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-stats { gap: 20px; }

  .services-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.1); }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }

  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  .form-row { grid-template-columns: 1fr; }
  .form-row-3 { grid-template-columns: 1fr; }

  .testimonial-card { padding: 32px 24px; }

  .about-values { grid-template-columns: 1fr; }

  .about-badge { width: 100px; height: 100px; right: -10px; bottom: -10px; }
  .about-badge .badge-num { font-size: 1.6rem; }

  .careers-floating-card { display: none; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .stats-grid { grid-template-columns: 1fr 1fr; }

  .contact-map iframe { height: 180px; }

  .page-hero h1 { font-size: 1.8rem; }
}

/* ── PRINT ────────────────────────────────────────────────── */
@media print {
  #navbar, .hero-scroll, .hero-ctas { display: none; }
  #hero { min-height: auto; padding: 60px 0 40px; }
  * { animation: none !important; transition: none !important; }
}
