/* Clinical Candidates – style.css */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:  #0a2342;
  --teal:  #0d9488;
  --teal-light: #14b8a8;
  --white: #ffffff;
  --off-white: #f8fafc;
  --text:  #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

/* ── NAV ── */
nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

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

.nav-logo {
  color: var(--white);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo span.accent { color: var(--teal-light); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 0.25rem;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  font-weight: 600;
}

.nav-cta:hover { background: var(--teal-light) !important; }

/* hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 4px;
  cursor: pointer;
  padding: 0.3rem 0.5rem;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

@media (max-width: 700px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0.25rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.6rem 0.5rem; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.15); }

.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-light); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: #0d2f5c; }

.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2f5c 55%, #0f3d6e 100%);
  color: var(--white);
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(13,148,136,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner { max-width: 820px; margin: 0 auto; position: relative; }

.hero-eyebrow {
  display: inline-block;
  background: rgba(13,148,136,0.25);
  color: var(--teal-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(13,148,136,0.4);
}

.hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero h1 em { color: var(--teal-light); font-style: normal; }

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── SECTIONS ── */
section { padding: 4rem 1.5rem; }

.section-inner { max-width: 1100px; margin: 0 auto; }

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

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

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

.divider {
  width: 48px;
  height: 4px;
  background: var(--teal);
  border-radius: 2px;
  margin: 0.8rem auto 0;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover { box-shadow: 0 8px 28px rgba(10,35,66,0.1); transform: translateY(-3px); }

.card-icon {
  width: 48px; height: 48px;
  background: rgba(13,148,136,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}

.card-icon svg { width: 26px; height: 26px; stroke: var(--teal); fill: none; stroke-width: 1.8; }

.card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }

.card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.6; }

/* ── CLIENT CALLOUT ── */
.callout {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2f5c 100%);
  color: var(--white);
  border-radius: 14px;
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.callout-text h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.4rem; }
.callout-text p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.callout-text .tag {
  display: inline-block;
  background: rgba(13,148,136,0.3);
  color: var(--teal-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(13,148,136,0.4);
}

.callout-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.stat { text-align: center; }
.stat .num { font-size: 2.2rem; font-weight: 800; color: var(--teal-light); line-height: 1; }
.stat .label { font-size: 0.78rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.2rem; }

/* ── BG ALTERNATE ── */
.bg-off { background: var(--off-white); }
.bg-navy { background: var(--navy); color: var(--white); }

/* ── SERVICE DETAIL ── */
.service-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.5rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
  transition: box-shadow 0.2s;
}
.service-item:hover { box-shadow: 0 6px 24px rgba(10,35,66,0.08); }

.service-num {
  min-width: 56px; height: 56px;
  background: var(--teal);
  color: var(--white);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
}

.service-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.service-body p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
.service-body ul { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; padding-left: 1.25rem; margin-top: 0.5rem; }
.service-body ul li { margin-bottom: 0.25rem; }

@media (max-width: 600px) {
  .service-item { flex-direction: column; gap: 1rem; }
}

/* ── PATIENT PAGE ── */
.cta-box {
  background: linear-gradient(135deg, var(--teal) 0%, #0a8a7e 100%);
  color: var(--white);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  text-align: center;
  margin: 2rem 0;
}
.cta-box h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 0.5rem; }
.cta-box p { font-size: 1rem; color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; }
.cta-box .cta-options { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; align-items: center; }
.cta-box .cta-phone {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  background: rgba(0,0,0,0.2);
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: background 0.2s;
}
.cta-box .cta-phone:hover { background: rgba(0,0,0,0.35); }
.cta-box .or { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; counter-reset: step; }
.step { text-align: center; padding: 1.75rem 1.25rem; background: var(--white); border-radius: 10px; border: 1px solid var(--border); }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--white); font-weight: 800; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.9rem; }
.step h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.35rem; }
.step p { font-size: 0.88rem; color: var(--text-muted); }

/* ── CONTACT FORM ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group.full { grid-column: 1 / -1; }

label { font-size: 0.875rem; font-weight: 600; color: var(--navy); }

input, textarea, select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

input:focus, textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,148,136,0.12);
}

textarea { resize: vertical; min-height: 130px; }

.form-card {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(10,35,66,0.07);
}

.or-call {
  background: var(--off-white);
  border-left: 4px solid var(--teal);
  padding: 1rem 1.25rem;
  border-radius: 4px;
  font-size: 0.95rem;
  color: var(--text);
  margin-top: 1.5rem;
}
.or-call a { color: var(--navy); font-weight: 700; text-decoration: none; }
.or-call a:hover { color: var(--teal); }

/* ── TWO-COL LAYOUT ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  text-align: center;
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.trust-bar span { color: var(--teal-light); font-weight: 600; }

/* ── FOOTER ── */
footer {
  background: #06172e;
  color: rgba(255,255,255,0.65);
  padding: 2.5rem 1.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand { max-width: 320px; }
.footer-brand .logo { color: var(--white); font-weight: 700; font-size: 1.05rem; margin-bottom: 0.5rem; }
.footer-brand .logo span { color: var(--teal-light); }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; }

.footer-links h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--teal-light); }

.footer-bottom {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
