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

:root {
  --teal: #2A9D8F;
  --teal-dark: #21867A;
  --teal-light: #E8F8F7;
  --orange: #E76F51;
  --orange-dark: #CF5D41;
  --navy: #1A2B3C;
  --navy-light: #243447;
  --warm-bg: #F9F7F3;
  --text: #374151;
  --text-light: #6B7280;
  --white: #FFFFFF;
  --border: #E5E7EB;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }

a { color: inherit; }
img { max-width: 100%; display: block; }

/* ---- NAV ---- */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-logo .logo-ks { color: var(--teal); }
.nav-logo .logo-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; display: inline-block; margin: 0 2px; }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-phone {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.875rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-phone svg { color: var(--teal); }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.btn-nav {
  background: var(--teal);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-nav:hover { background: var(--teal-dark); color: white; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.nav-mobile a { text-decoration: none; color: var(--text); font-weight: 500; font-size: 0.95rem; padding: 0.5rem 0; display: block; border-bottom: 1px solid var(--border); }
.nav-mobile .btn-nav { margin-top: 0.5rem; display: inline-block; }

/* ---- BUTTONS ---- */
.btn-primary {
  background: var(--orange);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--orange-dark); color: white; transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.4);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  display: inline-block;
}
.btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.1); color: white; }
.btn-teal {
  background: var(--teal);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
  display: inline-block;
}
.btn-teal:hover { background: var(--teal-dark); color: white; }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #22374F 60%, #1D4E56 100%);
  color: white;
  padding: 90px 1.5rem 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(42,157,143,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(42,157,143,0.2);
  border: 1px solid rgba(42,157,143,0.4);
  color: #4ECDC4;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 1.25rem;
}
.hero h1 em { color: #4ECDC4; font-style: normal; }
.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  line-height: 1.75;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero trust box */
.hero-trust {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}
.hero-trust h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #4ECDC4;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.8rem;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}
.trust-item:last-child { margin-bottom: 0; }
.trust-icon {
  width: 36px;
  height: 36px;
  background: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.trust-item strong { display: block; font-size: 0.9rem; color: white; margin-bottom: 0.15rem; }
.trust-item span { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* ---- STATS ---- */
.stats {
  background: var(--teal);
  padding: 2.5rem 1.5rem;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  margin-top: 0.35rem;
}

/* ---- SECTION COMMONS ---- */
.section { padding: 80px 1.5rem; }
.section-alt { background: var(--warm-bg); }
.section-dark { background: var(--navy); color: white; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}
.section-dark .section-label { background: rgba(42,157,143,0.2); color: #4ECDC4; }
.section h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section-dark h2 { color: white; }
.section p.lead {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
}
.section-dark p.lead { color: rgba(255,255,255,0.7); }

/* ---- SERVICE CARDS ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.section-alt .service-card { background: white; }
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}
.service-card a.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--teal);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1rem;
}
.service-card a.learn-more:hover { color: var(--teal-dark); }

/* ---- WHO WE SERVE ---- */
.serve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.serve-card {
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.serve-card.employers {
  background: var(--navy);
  color: white;
}
.serve-card.candidates {
  background: var(--teal);
  color: white;
}
.serve-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.serve-card .serve-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.7;
  margin-bottom: 1rem;
  display: block;
}
.serve-card p { font-size: 0.95rem; opacity: 0.85; line-height: 1.7; margin-bottom: 1.5rem; }
.serve-list { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.5rem; }
.serve-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  opacity: 0.9;
}
.serve-list li::before { content: '✓'; font-weight: 700; }
.serve-card .btn-serve {
  background: white;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  transition: opacity 0.2s;
}
.serve-card.employers .btn-serve { color: var(--navy); }
.serve-card.candidates .btn-serve { color: var(--teal-dark); }
.serve-card .btn-serve:hover { opacity: 0.9; }

/* ---- PROCESS ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px;
  height: 56px;
  background: var(--teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 2;
}
.step h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.step p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.testimonial {
  background: white;
  border-radius: 12px;
  padding: 1.75rem;
  border: 1px solid var(--border);
}
.testimonial-stars { color: #F59E0B; font-size: 0.9rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.testimonial p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.testimonial-author strong { font-size: 0.9rem; color: var(--navy); display: block; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-light); }

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  color: white;
  text-align: center;
  padding: 80px 1.5rem;
}
.cta-section h2 { color: white; font-size: 2rem; margin-bottom: 0.75rem; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2rem; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #22374F 100%);
  color: white;
  padding: 60px 1.5rem;
  text-align: center;
}
.page-hero .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.page-hero .breadcrumb a { color: #4ECDC4; text-decoration: none; }
.page-hero .breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 { font-size: 2.4rem; font-weight: 700; margin-bottom: 0.75rem; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.8); max-width: 580px; margin: 0 auto; }

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-content h2 { font-size: 2rem; color: var(--navy); margin-bottom: 1rem; }
.about-content p { color: var(--text-light); line-height: 1.75; margin-bottom: 1rem; font-size: 0.95rem; }
.about-content p:last-of-type { margin-bottom: 1.5rem; }
.about-visual {
  background: var(--teal-light);
  border-radius: 16px;
  padding: 2.5rem;
  border-left: 4px solid var(--teal);
}
.about-visual h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
.about-stat { margin-bottom: 1.25rem; }
.about-stat .num { font-size: 2rem; font-weight: 700; color: var(--teal); }
.about-stat .label { font-size: 0.85rem; color: var(--text-light); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: white;
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;
  border: 1px solid var(--border);
}
.value-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.value-card h4 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.value-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.55; }

/* ---- SERVICES PAGE ---- */
.services-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.service-item {
  background: white;
  border-radius: 12px;
  padding: 2rem 2rem 2rem 2.25rem;
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
}
.service-item h3 { font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.service-item p { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; margin-bottom: 0.75rem; }
.service-item ul { list-style: none; display: flex; flex-direction: column; gap: 0.3rem; }
.service-item ul li { font-size: 0.85rem; color: var(--text-light); display: flex; align-items: center; gap: 0.5rem; }
.service-item ul li::before { content: ''; width: 6px; height: 6px; background: var(--teal); border-radius: 50%; flex-shrink: 0; }

/* ---- CONTACT PAGE ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card {
  background: var(--warm-bg);
  border-radius: 12px;
  padding: 1.5rem;
}
.contact-info-card h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--teal); font-weight: 600; margin-bottom: 0.5rem; }
.contact-info-card p { font-size: 0.9rem; color: var(--text); line-height: 1.6; }
.contact-info-card a { color: var(--teal); text-decoration: none; }
.contact-info-card a:hover { text-decoration: underline; }
.contact-form-wrap {
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: 600px;
}
.ghl-wrap {
  width: 100%;
  min-height: 600px;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 1.5rem 1.5rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 280px; }
.footer-col h5 { color: white; font-size: 0.875rem; font-weight: 600; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: #4ECDC4; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-bottom a:hover { color: #4ECDC4; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-trust { max-width: 480px; }
  .hero h1 { font-size: 2.25rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 60px 1.5rem; }
  .hero h1 { font-size: 1.9rem; }
  .services-grid { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .services-list { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero h1 { font-size: 1.8rem; }
  .section h2 { font-size: 1.7rem; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
}
