/* ============================================================
   TALINDO BUSINESS CONSULTING — Shared Stylesheet
   ============================================================ */

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

:root {
  --teal:       #5BADA3;
  --teal-dark:  #3E8C82;
  --teal-light: #7CC4BB;
  --teal-bg:    #EEF7F6;
  --charcoal:   #1A2B29;
  --charcoal2:  #253533;
  --gray:       #4A5568;
  --gray-light: #F7FAFA;
  --border:     #D0E8E5;
  --white:      #ffffff;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--charcoal); background: var(--white); overflow-x: hidden; }

/* ---- UTILS ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--teal);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ''; display: inline-block; width: 24px; height: 2px; background: var(--teal);
}
.eyebrow.light { color: rgba(255,255,255,0.7); }
.eyebrow.light::before { background: rgba(255,255,255,0.4); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700; color: var(--charcoal);
  line-height: 1.2; margin-bottom: 18px;
}
.section-title.light { color: white; }
.section-title em { font-style: italic; color: var(--teal-light); }

.section-sub {
  font-size: 15.5px; line-height: 1.8; color: var(--gray); max-width: 600px;
  margin-bottom: 0;
}
.body-text { font-size: 15px; line-height: 1.85; color: var(--gray); margin-bottom: 16px; }
.body-text.light { color: rgba(255,255,255,0.65); }

/* Buttons */
.btn-primary {
  display: inline-block; background: var(--teal); color: white;
  padding: 13px 30px; border-radius: 5px; font-size: 14px;
  font-weight: 600; text-decoration: none; letter-spacing: 0.4px;
  transition: background .2s, transform .2s;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn-primary.large { padding: 15px 36px; font-size: 15px; }

.btn-outline {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.85);
  padding: 13px 30px; border-radius: 5px; font-size: 14px;
  font-weight: 500; text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--teal-light); color: var(--teal-light); }

.btn-teal-outline {
  display: inline-block;
  border: 1.5px solid var(--teal); color: var(--teal);
  padding: 11px 26px; border-radius: 5px; font-size: 13.5px;
  font-weight: 600; text-decoration: none;
  transition: background .2s, color .2s;
}
.btn-teal-outline:hover { background: var(--teal); color: white; }

.btn-white-outline {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.4); color: white;
  padding: 12px 28px; border-radius: 5px; font-size: 14px;
  font-weight: 600; text-decoration: none; margin-top: 24px;
  transition: background .2s;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.1); }

/* ---- NAV ---- */
nav {
  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 .3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.08); }

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

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-icon {
  width: 40px; height: 40px; background: var(--teal);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 22px; height: 22px; fill: white; }
.nav-logo-text { line-height: 1.2; }
.nav-logo-text .brand { font-size: 15px; font-weight: 700; color: var(--charcoal); }
.nav-logo-text .sub { font-size: 10px; font-weight: 600; color: var(--teal); letter-spacing: 1.5px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 13.5px; font-weight: 500;
  color: var(--gray); letter-spacing: 0.3px;
  transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--teal); transform: scaleX(0); transition: transform .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--teal) !important; color: white !important;
  padding: 10px 22px; border-radius: 5px; font-weight: 600 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--teal-dark) !important; }
.nav-cta::after { display: none !important; }
.nav-cta.active-cta { background: var(--teal-dark) !important; }

/* Hamburger */
.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(--charcoal); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: white; border-bottom: 1px solid var(--border);
  z-index: 999; padding: 20px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu ul li a {
  display: block; padding: 12px 16px; font-size: 15px; font-weight: 500;
  color: var(--charcoal); text-decoration: none; border-radius: 8px;
  transition: background .2s, color .2s;
}
.mobile-menu ul li a:hover { background: var(--teal-bg); color: var(--teal); }

/* ---- HERO (HOME) ---- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 72px; background: var(--charcoal);
  position: relative; overflow: hidden;
}
.hero-bg-shape {
  position: absolute; top: -200px; right: -150px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(91,173,163,0.13) 0%, transparent 70%);
  pointer-events: none;
}
.hero-bg-shape2 {
  position: absolute; bottom: -100px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(91,173,163,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; color: var(--teal-light);
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 22px;
}
.hero-eyebrow span { width: 24px; height: 1px; background: var(--teal-light); }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700; color: white; line-height: 1.15; margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--teal-light); }
.hero-desc { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.62); margin-bottom: 36px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual { position: relative; }
.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(91,173,163,0.28);
  border-radius: 18px; padding: 36px; backdrop-filter: blur(20px);
}
.hero-card-label {
  font-size: 10px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--teal-light); margin-bottom: 24px;
}
.hero-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.hero-stat {
  padding: 18px; background: rgba(255,255,255,0.04);
  border-radius: 12px; border: 1px solid rgba(255,255,255,0.07);
}
.hero-stat-num { font-size: 30px; font-weight: 800; color: white; line-height: 1; margin-bottom: 6px; }
.hero-stat-num span { color: var(--teal-light); font-size: 18px; }
.hero-stat-lbl { font-size: 12px; color: rgba(255,255,255,0.45); }
.hero-float-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--teal); border-radius: 14px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(91,173,163,0.35);
}
.badge-icon { font-size: 22px; }
.badge-text .b1 { font-size: 13px; font-weight: 700; color: white; }
.badge-text .b2 { font-size: 11px; color: rgba(255,255,255,0.65); }

/* ---- STATS STRIP ---- */
.stats-strip { background: var(--teal); padding: 36px 24px; }
.stats-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  gap: 0; align-items: center; text-align: center;
}
.stat-sep { background: rgba(255,255,255,0.2); height: 40px; }
.stat-item { padding: 8px 16px; }
.sn { font-size: 34px; font-weight: 800; color: white; line-height: 1; margin-bottom: 6px; }
.sn span { font-size: 20px; }
.sl { font-size: 11.5px; color: rgba(255,255,255,0.72); font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; }

/* ---- HOME ABOUT ---- */
.home-about { padding: 100px 24px; background: white; }
.home-about-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.about-teal-box {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: 18px; padding: 44px; position: relative; z-index: 1;
  min-height: 380px; display: flex; flex-direction: column; justify-content: center;
}
.about-teal-box.tall { min-height: 420px; }
.quote-text {
  font-family: 'Playfair Display', serif; font-size: 17px; font-style: italic;
  color: rgba(255,255,255,0.92); line-height: 1.7; margin-bottom: 24px;
}
.quote-founded { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.about-float-card {
  position: absolute; bottom: -22px; right: -22px;
  background: white; border-radius: 14px; padding: 18px 22px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  display: flex; align-items: center; gap: 14px;
}
.afc-icon { font-size: 22px; }
.afc-num { font-size: 22px; font-weight: 800; color: var(--charcoal); line-height: 1; }
.afc-lbl { font-size: 11px; color: var(--gray); margin-top: 2px; }
.home-about-visual { position: relative; padding-bottom: 22px; padding-right: 22px; }

/* ---- HOME SERVICES ---- */
.home-services { padding: 100px 24px; background: var(--gray-light); }
.section-header { margin-bottom: 56px; }
.section-header .section-sub { margin-top: 0; }
.section-header.center .eyebrow { justify-content: center; }
.section-header.center .eyebrow::before { display: none; }
.services-preview-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.sp-card {
  background: white; border-radius: 14px; padding: 30px;
  border: 1px solid var(--border); position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.sp-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--teal); transform: scaleX(0); transition: transform .25s;
}
.sp-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(91,173,163,0.1); border-color: var(--teal-light); }
.sp-card:hover::before { transform: scaleX(1); }
.sp-icon { font-size: 28px; margin-bottom: 16px; }
.sp-card h3 { font-size: 16px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.sp-card p { font-size: 13.5px; line-height: 1.7; color: var(--gray); }

/* ---- HOME WHY ---- */
.home-why {
  padding: 100px 24px;
  background: linear-gradient(145deg, var(--charcoal) 0%, var(--charcoal2) 100%);
}
.why-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start;
}
.why-right { display: flex; flex-direction: column; gap: 0; }
.why-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 22px; border-radius: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background .2s;
}
.why-item:last-child { border-bottom: none; }
.why-item:hover { background: rgba(255,255,255,0.04); }
.why-num {
  width: 40px; height: 40px; background: var(--teal); color: white;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.why-text h4 { font-size: 14.5px; font-weight: 700; color: white; margin-bottom: 6px; }
.why-text p { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,0.55); }

/* ---- CTA BANNER ---- */
.cta-banner { padding: 100px 24px; background: var(--teal-bg); }
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 38px); font-weight: 700;
  color: var(--charcoal); margin-bottom: 14px;
}
.cta-sub { font-size: 16px; color: var(--gray); margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; }

/* ---- PAGE HERO ---- */
.page-hero {
  background: var(--charcoal); padding: 140px 24px 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -150px; right: -150px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(91,173,163,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { max-width: 800px; margin: 0 auto; position: relative; }
.page-hero-breadcrumb {
  font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; }
.page-hero-breadcrumb a:hover { color: var(--teal-light); }
.page-hero-breadcrumb span { color: rgba(255,255,255,0.25); }
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px); font-weight: 700;
  color: white; line-height: 1.1; margin-bottom: 20px;
}
.page-hero-title em { font-style: italic; color: var(--teal-light); }
.page-hero-sub { font-size: 17px; line-height: 1.75; color: rgba(255,255,255,0.6); max-width: 600px; }

/* ---- ABOUT PAGE ---- */
.about-story { padding: 100px 24px; background: white; }
.about-story-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start;
}
.about-visual-col { position: relative; padding-bottom: 22px; padding-right: 22px; }
.about-text-col {}

.vm-section { padding: 100px 24px; background: var(--gray-light); }
.vm-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 28px; margin-top: 56px; }
.vm-card {
  background: white; border-radius: 16px; padding: 40px;
  border: 1px solid var(--border);
}
.vm-card.vision { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%); border: none; }
.vm-card.vision h3, .vm-card.vision p { color: white; }
.vm-card.vision .vm-icon { font-size: 32px; margin-bottom: 16px; }
.vm-card h3 { font-size: 22px; font-weight: 700; color: var(--charcoal); margin-bottom: 14px; font-family: 'Playfair Display', serif; }
.vm-card p { font-size: 15px; line-height: 1.8; color: var(--gray); }
.vm-card .mission-list { list-style: none; display: flex; flex-direction: column; gap: 12px; padding: 0; }
.vm-card .mission-list li { font-size: 14px; line-height: 1.7; color: var(--gray); padding-left: 18px; position: relative; }
.vm-card .mission-list li::before { content: '→'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.vm-card .mission-list li strong { color: var(--charcoal); }
.vm-icon { font-size: 32px; margin-bottom: 16px; }

.values-section { padding: 100px 24px; background: white; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.value-card {
  background: var(--gray-light); border-radius: 16px; padding: 32px 26px;
  border: 1px solid var(--border); position: relative;
  transition: transform .25s, box-shadow .25s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(91,173,163,0.1); }
.value-num {
  position: absolute; top: 24px; right: 24px;
  font-size: 11px; font-weight: 700; color: var(--teal); letter-spacing: 1.5px;
}
.value-icon { font-size: 28px; margin-bottom: 14px; }
.value-card h3 { font-size: 15px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.value-card p { font-size: 13.5px; line-height: 1.7; color: var(--gray); }

.clients-section { padding: 100px 24px; background: var(--charcoal); }
.clients-section .eyebrow { justify-content: center; color: var(--teal-light); }
.clients-section .eyebrow::before { background: var(--teal-light); }
.clients-section .section-title { color: white; }
.clients-section .section-sub { color: rgba(255,255,255,0.55); }
.clients-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px;
}
.client-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 30px 22px; text-align: center;
  transition: background .2s, border-color .2s;
}
.client-card:hover { background: rgba(91,173,163,0.1); border-color: rgba(91,173,163,0.3); }
.cc-icon { font-size: 32px; margin-bottom: 12px; }
.cc-type { font-size: 14px; font-weight: 700; color: white; margin-bottom: 8px; }
.cc-desc { font-size: 12.5px; line-height: 1.6; color: rgba(255,255,255,0.45); }

/* ---- SERVICES PAGE ---- */
.services-intro { padding: 80px 24px; background: white; }
.services-intro-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.si-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.si-stat {
  background: var(--teal-bg); border-radius: 14px; padding: 28px 22px;
  border: 1px solid var(--border); text-align: center;
}
.si-num { font-size: 34px; font-weight: 800; color: var(--teal); line-height: 1; margin-bottom: 6px; }
.si-num span { font-size: 20px; }
.si-lbl { font-size: 11px; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; }

.all-services { padding: 80px 24px 100px; background: var(--gray-light); }
.svc-category { margin-bottom: 64px; }
.svc-cat-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--teal); margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.svc-cat-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.svc-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-full-grid.two-col { grid-template-columns: repeat(2, 1fr); }
.svc-full-card {
  background: white; border-radius: 14px; padding: 32px;
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.svc-full-card:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(91,173,163,0.1); }
.sfc-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.sfc-icon { font-size: 26px; }
.sfc-header h3 { font-size: 16px; font-weight: 700; color: var(--charcoal); line-height: 1.3; }
.svc-full-card > p { font-size: 13.5px; line-height: 1.7; color: var(--gray); margin-bottom: 16px; }
.svc-list { list-style: none; padding: 0; margin: 0 0 20px; flex: 1; display: flex; flex-direction: column; gap: 7px; }
.svc-list li {
  font-size: 13px; color: var(--gray); padding-left: 16px; position: relative;
  line-height: 1.5;
}
.svc-list li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; font-size: 12px; }
.svc-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--teal); text-decoration: none;
  margin-top: auto; transition: gap .2s;
}
.svc-cta:hover { gap: 10px; }

/* ---- CONTACT PAGE ---- */
.contact-main { padding: 80px 24px 100px; background: white; }
.contact-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.cd-item { display: flex; gap: 16px; align-items: flex-start; }
.cd-icon {
  width: 44px; height: 44px; background: var(--teal-bg);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.cd-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 3px; }
.cd-value { font-size: 14px; color: var(--charcoal); font-weight: 500; line-height: 1.6; }
.cd-value a { color: var(--charcoal); text-decoration: none; }
.cd-value a:hover { color: var(--teal); }
.contact-note {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--teal-bg); border-radius: 12px; padding: 20px;
  margin-top: 32px; border: 1px solid var(--border);
}
.cn-icon { font-size: 22px; }
.contact-note strong { display: block; font-size: 13px; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.contact-note p { font-size: 13px; color: var(--gray); line-height: 1.6; }

.contact-form-card {
  background: var(--gray-light); border-radius: 18px; padding: 44px;
  border: 1px solid var(--border);
}
.contact-form-card h3 {
  font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700;
  color: var(--charcoal); margin-bottom: 6px;
}
.form-sub { font-size: 14px; color: var(--gray); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase; color: var(--charcoal); margin-bottom: 7px;
}
.req { color: var(--teal); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 14px; color: var(--charcoal);
  background: white; outline: none; transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal); background: white;
}
.form-group textarea { min-height: 110px; resize: vertical; }
.btn-submit {
  width: 100%; background: var(--teal); color: white; border: none;
  padding: 14px 28px; border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: 0.4px; cursor: pointer; transition: background .2s, transform .2s;
}
.btn-submit:hover { background: var(--teal-dark); transform: translateY(-1px); }
.form-success {
  margin-top: 16px; padding: 14px 18px;
  background: #e8f6f4; border: 1px solid var(--teal-light);
  border-radius: 8px; font-size: 14px; color: var(--teal-dark); font-weight: 500;
}

.map-section { padding: 0 24px 100px; background: white; }
.map-card {
  max-width: 1100px; margin: 0 auto;
  background: var(--gray-light); border-radius: 18px; padding: 48px;
  border: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: center;
}
.map-info .eyebrow { margin-bottom: 10px; }
.map-info h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--charcoal); margin-bottom: 14px; }
.map-info p { font-size: 14px; line-height: 1.8; color: var(--gray); margin-bottom: 24px; }
.map-embed iframe { width: 100%; height: 280px; border: 0; border-radius: 12px; }

/* ---- FOOTER ---- */
footer { background: var(--charcoal2); padding: 64px 24px 28px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 60px; margin-bottom: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-icon {
  width: 36px; height: 36px; background: var(--teal);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.footer-logo-icon svg { width: 18px; fill: white; }
.footer-logo-name { font-size: 14px; font-weight: 700; color: white; }
.footer-tagline { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.45); max-width: 280px; margin-bottom: 20px; }
.footer-contact-mini { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: white; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--teal-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: rgba(255,255,255,0.3);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .home-about-grid, .about-story-grid, .services-intro-grid,
  .contact-grid, .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual-col { padding-right: 0; padding-bottom: 28px; }
  .about-float-card { right: 0; }
  .vm-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .clients-grid { grid-template-columns: 1fr 1fr; }
  .services-preview-grid { grid-template-columns: 1fr 1fr; }
  .svc-full-grid, .svc-full-grid.two-col { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .map-card { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-sep { display: none; }
  .hamburger { display: flex; }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .services-preview-grid, .svc-full-grid, .svc-full-grid.two-col,
  .values-grid, .clients-grid, .form-row,
  .si-stats, .hero-stats-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ---- HOME ABOUT (text-only layout, no visual box) ---- */
.home-about { padding: 100px 24px; background: white; }
.home-about-text-only {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.hat-left {}
.hat-right {}
.hat-highlights {
  background: var(--gray-light); border-radius: 18px; padding: 40px;
  border: 1px solid var(--border); display: flex; flex-direction: column; gap: 0;
}
.hat-item { padding: 24px 0; }
.hat-item:first-child { padding-top: 0; }
.hat-item:last-child { padding-bottom: 0; }
.hat-num { font-size: 38px; font-weight: 800; color: var(--teal); line-height: 1; margin-bottom: 6px; }
.hat-lbl { font-size: 13.5px; color: var(--gray); line-height: 1.5; }
.hat-divider { height: 1px; background: var(--border); }

/* ---- ABOUT — no float card, tighter visual col ---- */
.about-visual-col.no-card { padding-bottom: 0; padding-right: 0; }

/* ---- VM cards — no icons ---- */
.vm-card.no-icon h3 { margin-top: 0; }

/* ---- Clients sectors ---- */
.sectors-block { margin-top: 52px; text-align: center; }
.sectors-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 20px;
}
.sectors-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.sector-tag {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75); font-size: 12.5px; font-weight: 500;
  padding: 7px 16px; border-radius: 20px;
  transition: background .2s, color .2s;
}
.sector-tag:hover { background: rgba(91,173,163,0.2); color: var(--teal-light); }

/* ---- Center eyebrow (no left line) ---- */
.center-eyebrow { justify-content: center; }
.center-eyebrow::before { display: none; }

/* ---- Clients section — no icons ---- */
.client-card .cc-type { font-size: 15px; font-weight: 700; color: white; margin-bottom: 8px; }

/* ---- Services — no icons in header ---- */
.sfc-header h3 { font-size: 16px; font-weight: 700; color: var(--charcoal); line-height: 1.3; }

/* ---- Values — no icons ---- */
.value-card h3 { font-size: 15px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; margin-top: 20px; }

/* Responsive for new home about */
@media (max-width: 960px) {
  .home-about-text-only { grid-template-columns: 1fr; gap: 40px; }
}

/* ---- HERO — PHOTO BACKGROUND VERSION ---- */
.hero-photo {
  min-height: 100vh;
  background-image: url('https://base44.app/api/apps/69b3befae3126f0d24cfeda2/files/mp/public/69b3befae3126f0d24cfeda2/f286f7c4b_update_img_1.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 72px;
}
/* Hide old decorative shapes when photo hero is used */
.hero-photo .hero-bg-shape,
.hero-photo .hero-bg-shape2 {
  display: none;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 40, 38, 0.50) 0%,
    rgba(10, 40, 38, 0.30) 50%,
    rgba(10, 40, 38, 0.05) 100%
  );
  pointer-events: none;
}

.hero-photo-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 60px;
  width: 100%;
}

/* Constrain text block to left half */
.hero-photo .hero-content {
  max-width: 580px;
}

.hero-photo .hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.75);
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 24px;
}
.hero-photo .hero-eyebrow span {
  width: 24px; height: 1px; background: rgba(255,255,255,0.5);
}

.hero-photo h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 700;
  color: white;
  line-height: 1.12;
  margin-bottom: 24px;
}
.hero-photo h1 em {
  font-style: italic;
  color: var(--teal-light);
}

.hero-photo .hero-desc {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-photo .hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Solid teal button */
.btn-hero-solid {
  display: inline-block;
  background: var(--teal);
  color: white;
  padding: 14px 32px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.4px;
  transition: background .2s, transform .2s;
}
.btn-hero-solid:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

/* Ghost outline button */
.btn-hero-ghost {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.55);
  color: white;
  padding: 14px 32px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.btn-hero-ghost:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
}

@media (max-width: 768px) {
  .hero-photo-inner { padding: 80px 24px; }
  .hero-photo .hero-content { max-width: 100%; }
  .hero-photo h1 { font-size: clamp(32px, 8vw, 48px); }
}

/* ---- CLIENT CARD — divider line between title and description ---- */
.cc-divider {
  width: 40px;
  height: 2px;
  background: var(--teal-light);
  margin: 10px 0 12px 0;
  opacity: 0.6;
}

/* ---- LOGO ICON — updated to show growth chart SVG properly ---- */
.nav-logo-icon svg {
  width: 26px !important;
  height: 26px !important;
}
.footer-logo-icon svg {
  width: 26px !important;
  height: 26px !important;
}


