/* ============================================================
   M/S S B Jambe & Associates — Design System
   Palette: Deep Navy #0B1F3A | Gold #C9A84C | Ivory #F9F6EF | Slate #4A5568 | White #FFFFFF
   Display: Playfair Display | Body: Inter
   ============================================================ */

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

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0B1F3A;
  --navy2:  #132d55;
  --gold:   #C9A84C;
  --gold2:  #e8c96a;
  --ivory:  #F9F6EF;
  --ivory2: #f0ece1;
  --slate:  #4A5568;
  --muted:  #718096;
  --white:  #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(11,31,58,0.10);
  --shadow-lg: 0 12px 40px rgba(11,31,58,0.16);
  --transition: 0.25s ease;
  --max-width: 1160px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--slate);
  background: var(--white);
  overflow-x: hidden;
}

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

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin-bottom: 1rem; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle { color: var(--muted); font-size: 1.05rem; max-width: 560px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold2);
  border-color: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy2);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ---- Gold Divider ---- */
.gold-line {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  margin-bottom: 1.5rem;
  border-radius: 2px;
}
.gold-line.center { margin-left: auto; margin-right: auto; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11,31,58,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: box-shadow var(--transition);
}
#site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-logo .logo-main {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.nav-logo .logo-sub {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 0.5rem; padding: 0.55rem 1.25rem; font-size: 0.82rem; }

.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(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-main { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--white); }
.footer-brand .logo-sub { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; }
.footer-col h5 { color: var(--white); font-family: var(--font-display); font-size: 1rem; margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-size: 0.875rem;
}
.footer-contact-item .icon { color: var(--gold); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: var(--gold); }

/* ============================================================
   SECTIONS — SHARED
   ============================================================ */
.section { padding: 5rem 0; }
.section-ivory { background: var(--ivory); }
.section-navy { background: var(--navy); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3660 60%, #0d2745 100%);
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero h1 em {
  font-style: normal;
  color: var(--gold);
  display: block;
}
.hero-desc { color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 480px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); letter-spacing: 0.05em; }

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-image-frame {
  position: relative;
  width: 420px;
  max-width: 100%;
}
.hero-image-frame::before {
  content: '';
  position: absolute;
  top: -16px; right: -16px;
  width: 100%; height: 100%;
  border: 2px solid rgba(201,168,76,0.4);
  border-radius: 6px;
  z-index: 0;
}
.hero-image-frame img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  object-position: top;
  aspect-ratio: 4/5;
  position: relative;
  z-index: 1;
  filter: brightness(1.05) contrast(1.02);
}
.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.hero-card-tl {
  top: 1.5rem; left: -2rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}
.hero-card-br {
  bottom: 2rem; right: -2rem;
  text-align: center;
}
.hero-card-br .big { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--navy); }
.hero-card-br .small { font-size: 0.72rem; color: var(--muted); }

/* ============================================================
   HOME — SERVICES PREVIEW
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--ivory2);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  color: var(--gold);
}
.service-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.875rem; color: var(--muted); margin-bottom: 0; line-height: 1.6; }

/* ============================================================
   HOME — WHY CHOOSE US
   ============================================================ */
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-image-wrap { position: relative; }
.why-image-wrap img {
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
}
.why-badge {
  position: absolute;
  bottom: 2rem; right: -2rem;
  background: var(--navy);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.why-badge .num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold); }
.why-badge .label { font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.why-features { margin-top: 2rem; }
.why-feature {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.why-feature-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.why-feature-text h4 { margin-bottom: 0.25rem; font-size: 0.95rem; }
.why-feature-text p { font-size: 0.85rem; color: var(--muted); margin: 0; }

/* ============================================================
   HOME — CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><circle cx="350" cy="150" r="200" fill="rgba(201,168,76,0.05)"/></svg>') no-repeat center;
  background-size: cover;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.5rem; }
.cta-band p { color: rgba(255,255,255,0.65); margin: 0; }
.cta-band-actions { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy), #1a3660);
  padding: 9rem 0 5rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 520px; margin: 0.75rem auto 0; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-intro img {
  border-radius: 8px;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  width: 100%;
}
.about-quote {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  font-style: italic;
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--ivory2);
  transition: all var(--transition);
}
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h4 { color: var(--navy); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.85rem; color: var(--muted); margin: 0; }

.team-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 420px;
  margin: 0 auto;
}
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
}
.team-info { padding: 1.75rem; }
.team-info h3 { margin-bottom: 0.25rem; }
.team-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.service-full-card {
  background: var(--white);
  border: 1px solid var(--ivory2);
  border-radius: 8px;
  padding: 2.25rem;
  transition: all var(--transition);
}
.service-full-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.service-full-card .service-icon { margin-bottom: 1.5rem; }
.service-full-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.service-full-card p { font-size: 0.9rem; color: var(--muted); margin: 0; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--gold);
}
.process-step h4 { margin-bottom: 0.4rem; }
.process-step p { font-size: 0.85rem; color: var(--muted); }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--ivory2);
  transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.blog-thumb-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-body { padding: 1.75rem; }
.blog-meta { display: flex; gap: 1rem; font-size: 0.78rem; color: var(--muted); margin-bottom: 0.75rem; }
.blog-tag {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  text-transform: uppercase;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.blog-card p { font-size: 0.875rem; color: var(--muted); margin-bottom: 1rem; }
.blog-read-more { font-size: 0.85rem; font-weight: 600; color: var(--gold); display: flex; align-items: center; gap: 0.35rem; }
.blog-read-more:hover { gap: 0.6rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.contact-info-card {
  display: flex;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--ivory2);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.contact-info-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-text h4 { margin-bottom: 0.25rem; font-size: 0.9rem; }
.contact-info-text p, .contact-info-text a { font-size: 0.875rem; color: var(--muted); margin: 0; }
.contact-info-text a:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--white);
  border-radius: 10px;
  padding: 2.5rem;
  border: 1px solid var(--ivory2);
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { margin-bottom: 0.5rem; }
.contact-form-wrap .sub { font-size: 0.875rem; color: var(--muted); margin-bottom: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--ivory2);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--slate);
  background: var(--ivory);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.map-wrap {
  margin-top: 4rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-wrap iframe { display: block; width: 100%; height: 380px; border: none; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid var(--ivory2);
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.9rem; color: var(--slate); font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.875rem; color: var(--navy); }
.author-role { font-size: 0.78rem; color: var(--muted); }

/* ============================================================
   FORM SUCCESS
   ============================================================ */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem;
}
.form-success .check { font-size: 3rem; margin-bottom: 1rem; }
.form-success h4 { margin-bottom: 0.5rem; }
.form-success p { font-size: 0.875rem; color: var(--muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    padding: 2rem;
    gap: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-mobile-open .nav-links a { font-size: 1rem; }
  .nav-mobile-open .nav-cta { display: inline-flex; width: 100%; justify-content: center; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-image-wrap { order: -1; }
  .hero-image-frame { width: 280px; }
  .hero-card-tl, .hero-card-br { display: none; }
  .hero-stats { gap: 1.5rem; }

  .about-intro { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; }
  .why-badge { right: 0.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-wrap: wrap; gap: 1.25rem; }
  .values-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
