/* ============================================================
   Samaritan Home Healthcare — Main Stylesheet
   Calibri-first, large readable fonts, bold standout text
   ============================================================ */

:root {
  --navy:   #1a2e4a;
  --teal:   #2a7f7f;
  --gold:   #c8973a;
  --light:  #f7f9fb;
  --text:   #1a2535;
  --muted:  #4a5a6a;
  --border: #dce6f0;
  --white:  #ffffff;
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 20px; }
body {
  font-family: 'Calibri', 'Calibri Light', 'Candara', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 1rem;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; }

/* ---- Utilities ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
section { padding: 80px 0; }

.tag {
  display: inline-block;
  background: rgba(42,127,127,0.12);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 7px 20px; border-radius: 30px;
  margin-bottom: 16px;
}
.tag-light { background: rgba(255,255,255,0.15); color: #9ecfcf; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-family: 'Calibri', 'Candara', 'Segoe UI', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy); line-height: 1.15;
  letter-spacing: -0.3px;
}
.section-header h2.light { color: white; }
.section-header p {
  max-width: 680px; margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.75;
  font-weight: 400;
}
.section-header p.light { color: #b8d8e8; }
.divider { width: 70px; height: 5px; background: var(--gold); margin: 18px auto 0; border-radius: 3px; }

.btn-primary {
  display: inline-block;
  background: var(--gold); color: white;
  padding: 16px 34px; border-radius: 7px;
  font-family: 'Calibri', sans-serif;
  font-weight: 700; font-size: 1rem;
  text-decoration: none; transition: all 0.2s;
  letter-spacing: 0.3px;
}
.btn-primary:hover { background: #a87a2a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,151,58,0.35); }

.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.7); color: white;
  padding: 14px 34px; border-radius: 7px;
  font-family: 'Calibri', sans-serif;
  font-weight: 600; font-size: 1rem;
  text-decoration: none; transition: all 0.2s;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.15); }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--navy);
  color: #9ec9e8;
  padding: 10px 0;
  font-size: 0.85rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.topbar-left a { color: #9ec9e8; text-decoration: none; font-weight: 600; }
.topbar-left a:hover { color: var(--gold); }
.sep { opacity: 0.4; }
.follow-label { font-size: 0.78rem; color: #7a9ab8; }

.social-links { display: flex; gap: 8px; align-items: center; }
.soc-btn {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: white;
  text-decoration: none; transition: background 0.2s;
}
.soc-btn:hover { background: var(--teal); }

/* ============================================================
   HEADER
   ============================================================ */
header {
  background: white;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  position: sticky; top: 0; z-index: 200;
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 14px 0; gap: 24px;
}
.logo-area { display: flex; align-items: center; gap: 16px; text-decoration: none; }
.logo-img {
  width: 90px; height: 80px; border-radius: 0%;
  object-fit: cover; border: 0px solid var(--teal);
  flex-shrink: 0;
}
.logo-text .brand {
  font-family: 'Calibri', sans-serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--navy); line-height: 1.15;
}
.logo-text .tagline {
  font-size: 0.72rem; color: var(--teal);
  font-weight: 600; letter-spacing: 0.3px; margin-top: 3px;
}

nav ul { display: flex; gap: 2px; }
nav ul li a {
  display: block; padding: 10px 16px;
  text-decoration: none; font-weight: 700;
  font-size: 0.68rem; color: var(--navy);
  border-radius: 6px; transition: all 0.2s;
  text-transform: uppercase; letter-spacing: 0.8px;
  font-family: 'Calibri', sans-serif;
}
nav ul li a:hover, nav ul li a.active { background: var(--navy); color: white; }

.header-cta {
  background: var(--gold); color: white;
  padding: 12px 26px; border-radius: 7px;
  font-weight: 700; font-size: 0.85rem;
  font-family: 'Calibri', sans-serif;
  text-decoration: none; white-space: nowrap;
  transition: background 0.2s; flex-shrink: 0;
}
.header-cta:hover { background: #a87a2a; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none;
  padding: 6px; flex-shrink: 0;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; display: block; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero { position: relative; overflow: hidden; height: 800px; background: var(--navy); }

.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s ease; display: flex; align-items: center; }
.slide.active { opacity: 1; }

.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.slide-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(26,46,74,0.90) 40%, rgba(26,46,74,0.25) 100%);
}

.slide-content { position: relative; z-index: 2; max-width: 620px; }
.slide-content .eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 2.5px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 16px;
  font-family: 'Calibri', sans-serif;
}
.slide-content h1 {
  font-family: 'Calibri', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: white; line-height: 1.15; margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.slide-content p {
  color: #d8eaf5;
  font-size: 1.2rem;
  line-height: 1.7; margin-bottom: 32px;
  font-weight: 400;
}
.slide-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.slider-dots {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 9px; z-index: 10;
}
.slider-dots span {
  width: 11px; height: 11px; border-radius: 50%;
  background: rgba(255,255,255,0.35); cursor: pointer; transition: background 0.3s;
}
.slider-dots span.active { background: var(--gold); }

.slider-arrows {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 100%; display: flex; justify-content: space-between;
  padding: 0 18px; z-index: 10; pointer-events: none;
}
.slider-arrows button {
  pointer-events: all;
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.25);
  color: white; font-size: 24px; cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.slider-arrows button:hover { background: var(--teal); border-color: var(--teal); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--teal); padding: 34px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item {
  text-align: center; color: white; padding: 14px 18px;
  border-right: 1px solid rgba(255,255,255,0.22);
}
.stat-item:last-child { border-right: none; }
.stat-item .num {
  font-family: 'Calibri', sans-serif;
  font-size: 2.8rem;
  font-weight: 700; line-height: 1;
}
.stat-item .label { font-size: 0.9rem; opacity: 0.9; margin-top: 6px; font-weight: 600; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img { position: relative; }
.about-img img { width: 100%; border-radius: 14px; box-shadow: 0 20px 56px rgba(26,46,74,0.18); }
.badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--gold); color: white;
  padding: 20px 26px; border-radius: 12px; text-align: center;
  box-shadow: 0 10px 28px rgba(200,151,58,0.4);
}
.badge .big { font-family: 'Calibri', sans-serif; font-size: 2.4rem; font-weight: 700; line-height: 1; }
.badge .sm { font-size: 0.75rem; font-weight: 700; margin-top: 5px; opacity: 0.92; text-transform: uppercase; letter-spacing: 0.5px; }

.about-text .tag { margin-bottom: 12px; }
.about-text h2 {
  font-family: 'Calibri', sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 700;
  color: var(--navy); margin-bottom: 20px; line-height: 1.2;
}
.about-text p {
  font-size: 1.1rem;
  line-height: 1.8; color: var(--muted); margin-bottom: 16px;
  font-weight: 400;
}
.about-features { display: flex; flex-direction: column; gap: 11px; margin: 26px 0 34px; }
.about-features li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 1.05rem;
  color: var(--text); font-weight: 500;
}
.about-features li::before {
  content: '✓'; color: var(--teal);
  font-weight: 700; font-size: 1.1rem; flex-shrink: 0; margin-top: 2px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 24px; }

.service-card {
  background: white; border-radius: 14px; padding: 30px 26px;
  box-shadow: 0 3px 16px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(26,46,74,0.12);
  border-color: var(--teal);
}
.service-card-wide { display: flex; align-items: center; gap: 26px; }
.service-card-wide .svc-icon { font-size: 2.2rem; flex-shrink: 0; margin-bottom: 0; }

.svc-icon {
  font-size: 1.8rem; width: 62px; height: 62px; border-radius: 14px;
  background: rgba(42,127,127,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: background 0.25s;
}
.service-card:hover .svc-icon { background: rgba(42,127,127,0.18); }

.service-card h3 {
  font-family: 'Calibri', sans-serif;
  font-size: 1.2rem;
  font-weight: 700; color: var(--navy); margin-bottom: 12px;
}
.service-card p {
  font-size: 0.97rem;
  line-height: 1.75; color: var(--muted);
}

/* ============================================================
   REQUEST FORM
   ============================================================ */
.request-section { background: var(--navy); }
.form-box {
  max-width: 840px; margin: 0 auto;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px; padding: 52px;
}
.form-box h3 {
  font-family: 'Calibri', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: white; text-align: center; margin-bottom: 8px;
}
.form-sub { color: #9ec9e8; text-align: center; margin-bottom: 40px; font-size: 1rem; }
.form-sub a { color: var(--gold); font-weight: 700; text-decoration: none; }

.form-step { margin-bottom: 32px; }
.form-step h4 {
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--gold); margin-bottom: 16px;
  font-family: 'Calibri', sans-serif;
}

.check-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 11px; }
.check-full { grid-column: span 2; }

.check-item, .radio-item {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 9px; padding: 13px 16px; cursor: pointer; transition: all 0.2s;
}
.check-item:hover, .radio-item:hover { background: rgba(42,127,127,0.22); border-color: var(--teal); }
.check-item input, .radio-item input { accent-color: var(--teal); width: 18px; height: 18px; flex-shrink: 0; cursor: pointer; }
.check-item span, .radio-item span { color: #d0e4f0; font-size: 1rem; font-weight: 500; }

.radio-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 11px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { color: #9ec9e8; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.2px; }
.field input {
  background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.16);
  border-radius: 9px; padding: 14px 16px; color: white; font-size: 1rem;
  outline: none; transition: border 0.2s;
  font-family: 'Calibri', sans-serif;
}
.field input:focus { border-color: var(--teal); background: rgba(255,255,255,0.12); }
.field input::placeholder { color: rgba(255,255,255,0.32); }

.submit-btn {
  width: 100%; background: var(--gold); color: white;
  border: none; padding: 18px; border-radius: 9px;
  font-size: 1.1rem; font-weight: 700; cursor: pointer; margin-top: 10px;
  transition: background 0.2s;
  font-family: 'Calibri', sans-serif;
  letter-spacing: 0.5px;
}
.submit-btn:hover { background: #a87a2a; }
.submit-btn:disabled { opacity: 0.7; cursor: default; }
.form-help { text-align: center; margin-top: 16px; color: #9ec9e8; font-size: 0.9rem; }
.form-help a { color: var(--gold); font-weight: 700; text-decoration: none; }
.success-msg {
  display: none; background: rgba(42,127,127,0.2); border: 1px solid var(--teal);
  border-radius: 10px; padding: 16px 22px; color: #7dcfcf;
  text-align: center; margin-top: 18px; font-size: 1rem;
}

/* ============================================================
   TEAM
   ============================================================ */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; max-width: 960px; margin: 0 auto; }
.team-card {
  background: white; border-radius: 14px; overflow: hidden;
  box-shadow: 0 5px 24px rgba(26,46,74,0.1); border: 1px solid var(--border);
  transition: all 0.25s;
}
.team-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(26,46,74,0.16); }
.card-top {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  padding: 36px 28px; text-align: center;
}
.avatar {
  width: 86px; height: 86px; border-radius: 50%;
  background: rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 2.2rem;
  border: 3px solid rgba(255,255,255,0.3);
}
.t-name {
  font-family: 'Calibri', sans-serif;
  font-size: 1.3rem; color: white; font-weight: 700;
}
.ownership-badge {
  display: inline-block; background: var(--gold);
  color: white; font-size: 0.75rem; font-weight: 700;
  padding: 5px 14px; border-radius: 20px; margin-top: 10px;
  letter-spacing: 0.3px;
}
.card-body { padding: 28px; }
.credential {
  font-size: 0.9rem; font-weight: 700; color: var(--teal);
  margin-bottom: 14px; letter-spacing: 0.2px;
}
.card-body p { font-size: 1rem; line-height: 1.75; color: var(--muted); }
.team-note {
  text-align: center; margin-top: 44px;
  max-width: 800px; margin-left: auto; margin-right: auto;
  color: var(--text); font-size: 1.05rem; line-height: 1.75;
  font-weight: 500;
  padding: 28px 32px; background: var(--light); border-radius: 12px;
  border-left: 5px solid var(--teal);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 52px; align-items: start; }
.contact-info h3 {
  font-family: 'Calibri', sans-serif;
  font-size: 1.7rem; font-weight: 700;
  color: var(--navy); margin-bottom: 16px;
}
.contact-info > p { font-size: 1.05rem; line-height: 1.75; color: var(--muted); margin-bottom: 32px; }
.ci-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.ci-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--teal); color: white; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.ci-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); }
.ci-value { display: block; font-size: 1.05rem; color: var(--navy); font-weight: 700; text-decoration: none; margin-top: 3px; line-height: 1.55; }
.ci-value:hover { color: var(--teal); }
.follow-box { margin-top: 30px; }
.follow-box h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--navy); margin-bottom: 14px; }
.follow-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.follow-btn {
  display: flex; align-items: center; gap: 9px;
  padding: 11px 16px; border-radius: 9px;
  font-size: 0.88rem; font-weight: 600; text-decoration: none;
  border: 2px solid var(--border); color: var(--navy);
  transition: all 0.2s; font-family: 'Calibri', sans-serif;
}
.follow-btn:hover { border-color: var(--teal); color: var(--teal); background: rgba(42,127,127,0.07); }

.contact-form-box {
  background: white; border-radius: 14px; padding: 40px;
  box-shadow: 0 5px 24px rgba(0,0,0,0.07); border: 1px solid var(--border);
}
.contact-form-box h3 {
  font-family: 'Calibri', sans-serif;
  font-size: 1.45rem; font-weight: 700;
  color: var(--navy); margin-bottom: 26px;
}
.cf-field { margin-bottom: 16px; }
.cf-field label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.cf-field input, .cf-field select, .cf-field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 9px;
  font-size: 1rem; color: var(--text); outline: none;
  transition: border 0.2s; font-family: 'Calibri', sans-serif; background: white;
}
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus { border-color: var(--teal); }
.cf-field textarea { resize: vertical; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-submit {
  width: 100%; background: var(--navy); color: white;
  border: none; padding: 15px; border-radius: 9px;
  font-size: 1.05rem; font-weight: 700; cursor: pointer; margin-top: 6px;
  transition: background 0.2s; font-family: 'Calibri', sans-serif;
  letter-spacing: 0.3px;
}
.cf-submit:hover { background: var(--teal); }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #0f1e30; color: #8899aa; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { width: 68px; height: 60px; border-radius: 0%; object-fit: cover; margin-bottom: 14px; border: 0px solid rgba(255,255,255,0.15); }
.footer-name { font-family: 'Calibri', sans-serif; font-size: 1.1rem; color: white; font-weight: 700; margin-bottom: 12px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: #7a8da0; margin-bottom: 22px; }
.footer-social { display: flex; gap: 9px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,0.08); color: #8899aa;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all 0.2s;
}
.footer-social a:hover { background: var(--teal); color: white; }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { text-decoration: none; color: #8899aa; font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  padding: 22px 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: #5a6a7a; flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: #5a6a7a; text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  html { font-size: 18px; }
  .about-grid { grid-template-columns: 1fr; gap: 52px; }
  .about-img { max-width: 560px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 500px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-cta { display: none; }
  nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; box-shadow: 0 8px 24px rgba(0,0,0,0.1); padding: 14px 18px; z-index: 100; }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 2px; }
  nav ul li a { font-size: 0.9rem; }
  .nav-toggle { display: flex; }
}
@media (max-width: 640px) {
  html { font-size: 17px; }
  .hero { height: 500px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-wide { flex-direction: column; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-box { padding: 30px 20px; }
  .check-grid, .radio-grid, .two-col { grid-template-columns: 1fr; }
  .check-full { grid-column: span 1; }
  .cf-row { grid-template-columns: 1fr; }
  .follow-grid { grid-template-columns: 1fr 1fr; }
  .badge { right: 10px; bottom: -16px; }
  .topbar-left .sep { display: none; }
}
