/* ─── CHOLAWORK GLOBAL STYLES ─── */
:root {
  --teal: #467374;
  --teal-light: #558a8b;
  --teal-dark: #355758;
  --teal-bg: #f0f6f6;
  --teal-border: #c5dada;
  --accent: #e07a5f;
  --accent-dark: #c8614a;
  --accent-bg: #fdf2ef;
  --accent-border: #f5c4b8;
  --white: #FFFFFF;
  --surface: #F7F8FA;
  --border: #E5E7EB;
  --border-dark: #D1D5DB;
  --text: #111827;
  --text-muted: #6B7280;
  --text-faint: #9CA3AF;
  --green: #059669;
  --green-bg: #ECFDF5;
  --green-border: #A7F3D0;
  --red: #DC2626;
  --amber: #F59E0B;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px; height: 64px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.nav-logo {
  font-size: 20px; font-weight: 800;
  color: var(--text); text-decoration: none;
  letter-spacing: -0.03em;
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.nav-logo .logo-dot {
  width: 9px; height: 9px;
  background: var(--teal); border-radius: 50%;
}
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--text-muted); text-decoration: none;
  transition: color 0.15s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links .has-drop { position: relative; }
.nav-links .has-drop > a::after { content: ' ▾'; font-size: 11px; }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-ghost {
  font-size: 14px; font-weight: 600; color: var(--text);
  text-decoration: none; padding: 8px 16px; border-radius: 8px;
  transition: background 0.15s; border: none; cursor: pointer;
  background: transparent;
}
.btn-ghost:hover { background: var(--surface); }
.btn-nav {
  font-size: 14px; font-weight: 600; color: white;
  background: var(--accent); text-decoration: none;
  padding: 9px 20px; border-radius: 8px; border: none;
  cursor: pointer; transition: all 0.15s; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-nav:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(224,122,95,0.3); }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: white;
  font-size: 15px; font-weight: 700;
  padding: 14px 28px; border-radius: var(--radius);
  border: none; cursor: pointer; text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(224,122,95,0.25);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,122,95,0.35); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--text);
  font-size: 15px; font-weight: 600;
  padding: 14px 24px; border-radius: var(--radius);
  border: 1px solid var(--border-dark); cursor: pointer;
  text-decoration: none; transition: all 0.15s;
}
.btn-secondary:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-bg); }
.btn-teal {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: white;
  font-size: 15px; font-weight: 700;
  padding: 14px 28px; border-radius: var(--radius);
  border: none; cursor: pointer; text-decoration: none;
  transition: all 0.2s;
}
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn-sm { font-size: 13px; padding: 9px 18px; }

/* ─── LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--text); color: white; }
.section-surface { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ─── TYPOGRAPHY HELPERS ─── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--teal);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow-accent { color: var(--accent); }
.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.1; color: var(--text); margin-bottom: 16px;
}
.section-title .teal { color: var(--teal); }
.section-title .accent { color: var(--accent); }
.section-sub {
  font-size: 17px; font-weight: 400;
  color: var(--text-muted); max-width: 540px; line-height: 1.65;
}
.section-header { margin-bottom: 56px; }
.section-header-center { margin-bottom: 56px; text-align: center; }
.section-header-center .section-sub { margin: 0 auto; }
.section-header-split {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 40px; margin-bottom: 56px; flex-wrap: wrap;
}

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 72px 0 64px;
  text-align: center;
}
.page-hero .section-sub { margin: 0 auto; }
.page-hero-split {
  padding: 80px 0 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  min-height: calc(100vh - 64px);
}

/* ─── CARDS ─── */
.card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: all 0.2s;
}
.card:hover { border-color: var(--teal-border); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--teal-bg); border: 1px solid var(--teal-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.card-icon.accent-icon { background: var(--accent-bg); border-color: var(--accent-border); }
.card-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -0.01em; }
.card-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; font-weight: 400; }

/* ─── GRIDS ─── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ─── BADGE ─── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700;
  padding: 5px 12px; border-radius: 100px;
}
.badge-teal { background: var(--teal-bg); border: 1px solid var(--teal-border); color: var(--teal); }
.badge-accent { background: var(--accent-bg); border: 1px solid var(--accent-border); color: var(--accent); }
.badge-green { background: var(--green-bg); border: 1px solid var(--green-border); color: var(--green); }
.badge-pulse { width: 7px; height: 7px; border-radius: 50%; animation: pulse 2s ease infinite; }
.badge-teal .badge-pulse { background: var(--teal); }
.badge-accent .badge-pulse { background: var(--accent); }

/* ─── CHECKLIST ─── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-muted); line-height: 1.5;
}
.check-list li .ck {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green-bg); border: 1px solid var(--green-border);
  color: var(--green); font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}

/* ─── STAT STRIP ─── */
.stat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.stat-item { background: white; padding: 32px 24px; text-align: center; }
.stat-num {
  font-size: 40px; font-weight: 800;
  letter-spacing: -0.04em; color: var(--teal);
  display: block; margin-bottom: 4px;
}
.stat-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* ─── AVATAR ─── */
.avatar {
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light), var(--teal-dark));
  color: white; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.avatar-sq {
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-light), var(--teal-dark));
  color: white; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

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

/* ─── FOOTER ─── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 48px 32px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-logo {
  font-size: 18px; font-weight: 800; color: var(--text);
  letter-spacing: -0.03em; display: flex; align-items: center;
  gap: 8px; margin-bottom: 12px; text-decoration: none;
}
.footer-logo .logo-dot { width: 8px; height: 8px; background: var(--teal); border-radius: 50%; }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.65; max-width: 220px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a {
  width: 32px; height: 32px; border-radius: 8px;
  border: 1px solid var(--border); background: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; text-decoration: none; color: var(--text-muted);
  transition: all 0.15s;
}
.footer-socials a:hover { border-color: var(--teal); color: var(--teal); }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 13px; color: var(--text-muted); text-decoration: none;
  font-weight: 400; transition: color 0.15s;
}
.footer-col ul a:hover { color: var(--teal); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--text-faint); }
.footer-bottom ul { display: flex; gap: 20px; list-style: none; }
.footer-bottom ul a { font-size: 12px; color: var(--text-faint); text-decoration: none; transition: color 0.15s; }
.footer-bottom ul a:hover { color: var(--teal); }

/* ─── AGENT CARD ─── */
.agent-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  transition: all 0.2s; position: relative;
}
.agent-card:hover { border-color: var(--teal-border); box-shadow: 0 8px 32px rgba(70,115,116,0.08); transform: translateY(-2px); }
.agent-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.agent-name { font-size: 15px; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.agent-role { font-size: 12px; color: var(--text-muted); font-weight: 500; margin-top: 2px; }
.agent-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.stars { color: var(--amber); font-size: 12px; }
.rating-val { font-size: 13px; font-weight: 700; color: var(--text); }
.rating-count { font-size: 12px; color: var(--text-faint); }
.agent-stats-row { display: flex; gap: 20px; padding: 12px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 14px; }
.agent-stat { display: flex; flex-direction: column; gap: 1px; }
.agent-stat-val { font-size: 15px; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }
.agent-stat-key { font-size: 10px; color: var(--text-faint); font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; }
.agent-skills { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.skill-chip { font-size: 11px; font-weight: 600; color: var(--text-muted); background: var(--surface); border: 1px solid var(--border); padding: 3px 9px; border-radius: 6px; }
.agent-footer { display: flex; align-items: center; justify-content: space-between; }
.agent-price { font-size: 20px; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.agent-price small { font-size: 12px; font-weight: 400; color: var(--text-muted); }
.agent-badge-top { position: absolute; top: 14px; right: 14px; font-size: 10px; font-weight: 700; color: var(--green); background: var(--green-bg); border: 1px solid var(--green-border); padding: 3px 8px; border-radius: 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.btn-hire { font-size: 13px; font-weight: 700; color: var(--teal); background: var(--teal-bg); border: 1px solid var(--teal-border); padding: 8px 16px; border-radius: 8px; cursor: pointer; transition: all 0.15s; text-decoration: none; display: inline-block; }
.btn-hire:hover { background: var(--teal); color: white; border-color: var(--teal); }

/* ─── LANG TAG ─── */
.lang-tag { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 600; color: var(--teal); background: var(--teal-bg); border: 1px solid var(--teal-border); padding: 2px 8px; border-radius: 4px; }

/* ─── PRICING ─── */
.pricing-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  display: flex; flex-direction: column; transition: all 0.2s; position: relative;
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.pricing-card.popular { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.popular-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: white;
  font-size: 11px; font-weight: 700; padding: 4px 16px;
  border-radius: 100px; white-space: nowrap; letter-spacing: 0.04em;
}
.pricing-plan { font-size: 12px; font-weight: 700; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.pricing-price { font-size: 48px; font-weight: 800; color: var(--text); letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px; }
.pricing-price sup { font-size: 24px; font-weight: 700; vertical-align: super; letter-spacing: 0; }
.pricing-period { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.pricing-divider { height: 1px; background: var(--border); margin-bottom: 20px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; margin-bottom: 24px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.pricing-features li .pck { color: var(--green); flex-shrink: 0; margin-top: 1px; }
.btn-plan { width: 100%; padding: 13px; border-radius: var(--radius); border: 1px solid var(--border-dark); background: white; font-size: 14px; font-weight: 700; color: var(--text); cursor: pointer; transition: all 0.15s; font-family: 'Plus Jakarta Sans', sans-serif; }
.btn-plan:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-bg); }
.pricing-card.popular .btn-plan { background: var(--accent); color: white; border-color: var(--accent); }
.pricing-card.popular .btn-plan:hover { background: var(--accent-dark); }

/* ─── TESTIMONIAL ─── */
.testimonial-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: all 0.2s; }
.testimonial-card:hover { border-color: var(--teal-border); box-shadow: var(--shadow); }
.t-stars { color: var(--amber); font-size: 14px; margin-bottom: 14px; }
.t-quote { font-size: 15px; color: var(--text); line-height: 1.7; font-weight: 400; margin-bottom: 18px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 10px; padding-top: 14px; border-top: 1px solid var(--border); }
.t-name { font-size: 14px; font-weight: 700; color: var(--text); }
.t-biz { font-size: 12px; color: var(--text-faint); }

/* ─── FORM ─── */
.form-group { margin-bottom: 20px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; display: block; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border-dark);
  border-radius: var(--radius); font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; color: var(--text); background: white;
  outline: none; transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(70,115,116,0.1); }
.form-textarea { resize: vertical; min-height: 120px; }

/* ─── LEGAL ─── */
.legal-content h2 { font-size: 22px; font-weight: 700; color: var(--text); margin: 36px 0 12px; }
.legal-content h3 { font-size: 17px; font-weight: 700; color: var(--text); margin: 24px 0 10px; }
.legal-content p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.legal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 14px; }
.legal-content ul li { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 6px; }

/* ─── ANIMATIONS ─── */
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
@keyframes fade-up { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ─── RESPONSIVE ─── */
@media(max-width:1024px){
  nav{padding:0 24px;}
  .container{padding:0 24px;}
  footer{padding:48px 24px 24px;}
  .footer-top{grid-template-columns:1fr 1fr;gap:32px;}
  .grid-4{grid-template-columns:repeat(2,1fr);}
  .stat-strip{grid-template-columns:repeat(2,1fr);}
  .page-hero-split{grid-template-columns:1fr;}
}
@media(max-width:768px){
  .nav-links{display:none;}
  .section{padding:60px 0;}
  .grid-3{grid-template-columns:repeat(2,1fr);}
  .grid-2{grid-template-columns:1fr;}
  .section-header-split{flex-direction:column;align-items:flex-start;}
  .footer-top{grid-template-columns:1fr 1fr;}
}
@media(max-width:480px){
  .grid-3,.grid-4{grid-template-columns:1fr;}
  .stat-strip{grid-template-columns:1fr 1fr;}
  .section-title{font-size:28px;}
}
