/* =============================================
   BUSINESS COACH PRO — GLOBAL STYLES
   Color Palette: Deep Teal + Warm Cream + Gold
   Fonts: Cormorant Garamond + DM Sans
============================================= */

:root {
  --navy:    #1e3a4f;
  --teal:    #2a6171;
  --teal-lt: #3d8a9e;
  --gold:    #b8933a;
  --gold-lt: #d4aa56;
  --cream:   #f7f3ee;
  --cream2:  #ede8e1;
  --white:   #ffffff;
  --dark:    #16293a;
  --text:    #374151;
  --muted:   #6b7280;
  --border:  #ddd8d0;

  --ff-head: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'DM Sans', sans-serif;

  --shadow-sm: 0 2px 12px rgba(30,58,79,0.08);
  --shadow-md: 0 8px 32px rgba(30,58,79,0.12);
  --shadow-lg: 0 20px 60px rgba(30,58,79,0.16);

  --radius: 10px;
  --radius-lg: 18px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- CONTAINER ---- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

/* ---- SECTION ---- */
.section { padding: 5rem 0; }

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

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

.section-center { text-align: center; margin-bottom: 3rem; }
.section-center .section-sub { margin-bottom: 0; }

/* ---- TWO COL ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 5px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
}

/* ============================================
   NAVBAR
============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-icon {
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
}
.logo-title {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
}
.logo-sub {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.5rem 0.9rem;
  border-radius: 5px;
  transition: all var(--transition);
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--navy);
  background: var(--cream);
}
.nav-links li a.nav-cta {
  background: var(--navy);
  color: var(--white);
  padding: 0.55rem 1.25rem;
}
.nav-links li a.nav-cta:hover {
  background: var(--teal);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition);
  border-radius: 2px;
}

/* ============================================
   HERO
============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30,58,79,0.88) 0%,
    rgba(42,97,113,0.75) 50%,
    rgba(30,58,79,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  color: var(--white);
  max-width: 680px;
  margin-left: 8vw;
}

.hero-badge {
  display: inline-block;
  background: rgba(184,147,58,0.2);
  border: 1px solid rgba(184,147,58,0.5);
  color: var(--gold-lt);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s ease both;
}

.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.7s ease 0.15s both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-lt);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 2rem;
  animation: fadeUp 0.7s ease 0.3s both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeUp 0.7s ease 0.45s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: fadeUp 0.7s ease 0.6s both;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--ff-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}

/* ============================================
   STRIP
============================================= */
.strip {
  background: var(--navy);
  padding: 1rem 0;
  overflow: hidden;
}
.strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.dot { color: var(--gold); font-size: 0.6rem; }

/* ============================================
   ABOUT SNAP
============================================= */
.about-snap { background: var(--cream); }

.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-badge-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--gold);
}
.about-badge-card .badge-icon { font-size: 1.8rem; }
.about-badge-card strong { display: block; color: var(--navy); font-size: 0.9rem; }
.about-badge-card small { color: var(--muted); font-size: 0.75rem; }

.about-text { padding-left: 1rem; }
.about-text p { margin-bottom: 1rem; color: var(--text); }

.check-list { margin: 1.25rem 0 2rem; }
.check-list li {
  padding: 0.4rem 0;
  color: var(--teal);
  font-weight: 500;
  font-size: 0.95rem;
}

/* ============================================
   SERVICES PREVIEW
============================================= */
.services-preview { background: var(--white); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-lt);
}
.card-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.card h3 {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.25rem; }
.card-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal);
  transition: color var(--transition);
}
.card-link:hover { color: var(--gold); }

.card-featured {
  background: var(--navy);
  border-color: var(--navy);
}
.card-featured h3 { color: var(--white); }
.card-featured p { color: rgba(255,255,255,0.75); }
.card-featured .card-link { color: var(--gold-lt); }

/* ============================================
   WHY US
============================================= */
.why-us { background: var(--cream); }

.why-img-wrap { position: relative; }
.why-img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.why-items { margin-top: 2rem; }
.why-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.why-item:last-child { border-bottom: none; }
.why-num {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cream2);
  min-width: 3rem;
  line-height: 1;
  -webkit-text-stroke: 1.5px var(--gold);
}
.why-item h4 {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.why-item p { color: var(--muted); font-size: 0.92rem; }

/* ============================================
   TESTIMONIALS SNAP
============================================= */
.testimonials-snap { background: var(--white); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testi-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}
.testi-card::before {
  content: '"';
  font-family: var(--ff-head);
  font-size: 5rem;
  color: var(--cream2);
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-card p {
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.25rem;
  font-size: 0.98rem;
  line-height: 1.65;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testi-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testi-author strong { display: block; font-size: 0.9rem; color: var(--navy); }
.testi-author small { color: var(--muted); font-size: 0.78rem; }

/* ============================================
   CTA BANNER
============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  color: var(--white);
  padding: 5rem 1.5rem;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 1rem;
}
.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
}

/* ============================================
   FOOTER
============================================= */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand .logo-title { color: var(--white); }
.footer-brand p { margin-top: 1rem; font-size: 0.92rem; line-height: 1.7; }

.footer-links h4,
.footer-contact h4 {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-links ul li { margin-bottom: 0.5rem; }
.footer-links ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-links ul li a:hover { color: var(--gold-lt); }

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.footer-contact a {
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--gold-lt); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 1.25rem 1.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ============================================
   PAGE HERO (Inner Pages)
============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  color: var(--white);
  padding: 9rem 1.5rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&auto=format&fit=crop&q=40') center/cover;
  opacity: 0.08;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--gold-lt); }
.page-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================
   ABOUT PAGE
============================================= */
.about-detail { background: var(--white); }
.about-detail .two-col { gap: 5rem; }
.about-detail .about-img {
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
}

.info-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.25rem 0 2rem;
}
.chip {
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.value-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 4px solid var(--teal);
}
.value-card h4 {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.value-card p { font-size: 0.88rem; color: var(--muted); }

.timeline { margin-top: 2rem; }
.tl-item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 1.75rem;
  position: relative;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: 1.1rem;
  top: 2.5rem;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.tl-item:last-child::before { display: none; }
.tl-dot {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.tl-body h4 {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.tl-body p { font-size: 0.9rem; color: var(--muted); }
.tl-year { font-size: 0.78rem; color: var(--gold); font-weight: 600; margin-bottom: 0.2rem; }

/* ============================================
   SERVICES PAGE
============================================= */
.services-grid { background: var(--white); }

.service-card-full {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
  align-items: start;
  transition: all var(--transition);
}
.service-card-full:hover { box-shadow: var(--shadow-md); }
.service-card-full.highlight { background: var(--navy); border-color: var(--navy); }
.service-card-full.highlight h3,
.service-card-full.highlight p,
.service-card-full.highlight li { color: rgba(255,255,255,0.85); }
.service-card-full.highlight h3 { color: var(--white); }
.service-card-full.highlight .service-num { color: rgba(255,255,255,0.12); -webkit-text-stroke: 1.5px rgba(255,255,255,0.3); }

.service-num {
  font-family: var(--ff-head);
  font-size: 5rem;
  font-weight: 700;
  color: var(--cream2);
  -webkit-text-stroke: 1.5px var(--border);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.service-icon { font-size: 2.5rem; }
.service-card-full h3 {
  font-family: var(--ff-head);
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.service-card-full p { color: var(--text); margin-bottom: 1rem; }
.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.sf {
  background: rgba(42,97,113,0.1);
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}
.highlight .sf {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
}

.pricing-note {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  border: 2px dashed var(--border);
  margin-top: 3rem;
}
.pricing-note h3 {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.pricing-note p { color: var(--muted); margin-bottom: 1.5rem; }

/* ============================================
   TESTIMONIALS PAGE
============================================= */
.testi-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}
.testi-full-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
}
.testi-full-card::before {
  content: '"';
  font-family: var(--ff-head);
  font-size: 6rem;
  color: var(--cream2);
  position: absolute;
  top: 0.5rem;
  left: 2rem;
  line-height: 1;
}
.testi-full-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testi-full-card .stars { color: var(--gold); margin-bottom: 1rem; }
.testi-full-card p.quote { font-style: italic; color: var(--text); margin-bottom: 1.5rem; line-height: 1.7; }
.testi-full-card .testi-author { border-top: 1px solid var(--border); padding-top: 1.25rem; }
.testi-full-card .result-badge {
  display: inline-block;
  background: rgba(42,97,113,0.1);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  margin: 4rem 0;
  text-align: center;
}
.stats-row .stat-num { color: var(--gold-lt); font-size: 2.8rem; }
.stats-row .stat-label { color: rgba(255,255,255,0.7); font-size: 0.85rem; }

/* ============================================
   CONTACT PAGE
============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.contact-info p { color: var(--muted); margin-bottom: 2rem; line-height: 1.7; }

.contact-items { margin-top: 1.5rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.ci-icon {
  width: 3rem;
  height: 3rem;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.ci-text strong { display: block; color: var(--navy); font-weight: 600; margin-bottom: 0.2rem; }
.ci-text span { font-size: 0.92rem; color: var(--muted); }
.ci-text a { color: var(--teal); transition: color var(--transition); }
.ci-text a:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
}
.contact-form-wrap h3 {
  font-family: var(--ff-head);
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,97,113,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.geo-flags {
  display: flex;
  gap: 0.75rem;
  margin: 1.5rem 0;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.geo-flag {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ============================================
   ANIMATIONS
============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
============================================= */
@media (max-width: 900px) {
  .two-col, .two-col.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .about-badge-card { right: 0; bottom: -1rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .service-card-full { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 2rem;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 0.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 0.75rem 1rem; }
  .nav-links li a.nav-cta { text-align: center; margin-top: 0.5rem; }
  .hero-content { margin-left: 0; padding: 3rem 1.5rem 4rem; }
  .hero-stats { gap: 1rem; }
  .stat-num { font-size: 1.6rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-badge-card { position: relative; bottom: auto; right: auto; margin-top: 1rem; }
  .testi-full-grid, .testi-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; padding: 2rem 1.5rem; }
}
