/* ============================================================
   Devoted Caregivers SD — Landing Page Shared Styles
   Bootstrap 5.3 base | Conversion-optimized
   ============================================================ */

:root {
  --dc-navy:    #5C3578;
  --dc-teal:    #9B6BB5;
  --dc-green:   #1A8FB0;
  --dc-red:     #7A4D9A;
  --dc-orange:  #29B5D9;
  --dc-gold:    #f1c40f;
  --dc-light:   #F7F3FD;
  --dc-white:   #ffffff;
  --dc-text:    #2d3748;
  --font-main:  'Inter', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

body {
  font-family: var(--font-main);
  color: var(--dc-text);
  font-size: 16px;
  line-height: 1.6;
}

/* ── Top Call Bar ─────────────────────────────────────────── */
.lp-top-bar {
  background: #5C3578;
  color: #fff;
  font-size: 0.95rem;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1050;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.lp-top-bar a.btn-call {
  background: var(--dc-green);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 6px 22px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s;
}
.lp-top-bar a.btn-call:hover { background: #1e8449; }
.lp-top-bar .phone-num {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: .03em;
}

/* ── Header ───────────────────────────────────────────────── */
.lp-header {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 14px 0;
}
.lp-header img.logo { max-height: 70px; }
.lp-header .license-badge {
  font-size: 0.78rem;
  color: #555;
}
.lp-header .stars-inline {
  color: var(--dc-gold);
  font-size: 1rem;
}

/* ── Hero Section ─────────────────────────────────────────── */
.lp-hero {
  background: linear-gradient(135deg, #4A2775 0%, #7A4D9A 45%, #1A90B0 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 0 50px;
  min-height: 600px;
}
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img/background/banner-dc.jpg') center/cover no-repeat;
  opacity: 0.12;
}
.lp-hero .hero-content { position: relative; z-index: 2; }

.lp-hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 2px 6px rgba(0,0,0,.4);
}
.lp-hero .hero-sub {
  color: #d6eaf8;
  font-size: 1.15rem;
  margin: 14px 0 22px;
}
.lp-hero .trust-checks { list-style: none; padding: 0; margin: 0 0 24px; }
.lp-hero .trust-checks li {
  color: #fff;
  font-size: 1rem;
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.lp-hero .trust-checks .check-icon {
  color: #2ecc71;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.lp-hero .hero-stars { color: var(--dc-gold); font-size: 1.3rem; }
.lp-hero .hero-review-text { color: #d6eaf8; font-size: 0.9rem; }

/* ── Lead Form Card ───────────────────────────────────────── */
.lp-form-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(0,0,0,.35);
  padding: 32px 28px 28px;
  position: relative;
}
.lp-form-card .form-heading {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dc-navy);
  text-align: center;
  margin-bottom: 6px;
}
.lp-form-card .form-sub {
  text-align: center;
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 18px;
}
.lp-form-card .form-control,
.lp-form-card textarea {
  border: 1.5px solid #cbd5e0;
  border-radius: 5px;
  padding: 10px 14px;
  font-size: 0.97rem;
  width: 100%;
  margin-bottom: 12px;
  transition: border-color .2s;
}
.lp-form-card .form-control:focus,
.lp-form-card textarea:focus {
  border-color: var(--dc-teal);
  outline: none;
  box-shadow: 0 0 0 3px rgba(26,127,110,.15);
}
.lp-form-card textarea { resize: vertical; min-height: 80px; }
.btn-cta-primary {
  background: #7A4D9A;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px;
  border: none;
  border-radius: 6px;
  width: 100%;
  cursor: pointer;
  letter-spacing: .03em;
  transition: background .2s, transform .15s;
}
.btn-cta-primary:hover {
  background: #5C3578;
  transform: translateY(-1px);
}
.lp-form-card .privacy-note {
  text-align: center;
  font-size: 0.78rem;
  color: #888;
  margin-top: 10px;
}

/* ── Trust Bar ────────────────────────────────────────────── */
.lp-trust-bar {
  background: var(--dc-light);
  border-top: 3px solid #9B6BB5;
  border-bottom: 1px solid #e2e8f0;
  padding: 18px 0;
}
.trust-item {
  text-align: center;
  padding: 8px 12px;
}
.trust-item .trust-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 4px;
}
.trust-item .trust-label {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dc-navy);
  display: block;
}
.trust-item .trust-sub {
  font-size: 0.78rem;
  color: #666;
}

/* ── Section Generic ──────────────────────────────────────── */
.lp-section { padding: 60px 0; }
.lp-section-gray { background: var(--dc-light); }
.lp-section-navy { background: var(--dc-navy); color: #fff; }
.section-label {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 0.8rem;
  color: var(--dc-teal);
  font-weight: 700;
  margin-bottom: 8px;
}
.section-h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--dc-navy);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-h2-white { color: #fff; }

/* ── Services Grid ────────────────────────────────────────── */
.service-card {
  background: #fff;
  border: 1px solid #ede3f7;
  border-top: 4px solid #9B6BB5;
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
  height: 100%;
  transition: box-shadow .2s;
}
.service-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); }
.service-card .svc-icon { font-size: 2.2rem; margin-bottom: 10px; display: block; }
.service-card h5 { font-weight: 700; color: var(--dc-navy); font-size: 1rem; }
.service-card p { font-size: 0.88rem; color: #555; margin: 0; }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonial-card {
  background: #fff;
  border-left: 5px solid #9B6BB5;
  border-radius: 6px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  height: 100%;
}
.testimonial-card .stars { color: var(--dc-gold); font-size: 1.1rem; margin-bottom: 10px; }
.testimonial-card blockquote {
  font-size: 0.97rem;
  line-height: 1.65;
  font-style: italic;
  color: #444;
  margin: 0 0 14px;
}
.testimonial-card .reviewer {
  font-weight: 700;
  color: var(--dc-navy);
  font-size: 0.9rem;
}

/* ── Service Areas ────────────────────────────────────────── */
.area-badge {
  display: inline-block;
  background: #EDE3F7;
  color: #5C3578;
  border: 1px solid #9B6BB5;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin: 4px;
}

/* ── Bottom CTA Banner ────────────────────────────────────── */
.lp-cta-banner {
  background: linear-gradient(90deg, #7A4D9A 0%, #29B5D9 100%);
  padding: 48px 0;
  text-align: center;
  color: #fff;
}
.lp-cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.btn-cta-white {
  display: inline-block;
  background: #fff;
  color: var(--dc-navy);
  font-weight: 800;
  font-size: 1.15rem;
  padding: 14px 36px;
  border-radius: 6px;
  text-decoration: none;
  margin: 6px;
  transition: all .2s;
}
.btn-cta-white:hover {
  background: var(--dc-gold);
  color: var(--dc-navy);
}
.btn-cta-green {
  display: inline-block;
  background: var(--dc-green);
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  padding: 14px 36px;
  border-radius: 6px;
  text-decoration: none;
  margin: 6px;
  transition: all .2s;
}
.btn-cta-green:hover { background: #1e8449; color: #fff; }

/* ── Minimal Footer ───────────────────────────────────────── */
.lp-footer {
  background: #111827;
  color: #9ca3af;
  padding: 20px 0;
  font-size: 0.82rem;
  text-align: center;
}
.lp-footer a { color: #9ca3af; text-decoration: none; }
.lp-footer a:hover { color: #fff; }

/* ── Utility ──────────────────────────────────────────────── */
.text-teal   { color: var(--dc-teal) !important; }
.text-navy   { color: var(--dc-navy) !important; }
.bg-navy     { background: var(--dc-navy) !important; }
.bg-teal     { background: var(--dc-teal) !important; }
.fw-800      { font-weight: 800 !important; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .lp-hero { padding: 36px 0 32px; min-height: auto; }
  .lp-form-card { margin-top: 32px; }
  .lp-hero h1 { font-size: 1.7rem; }
  .lp-top-bar .phone-num { font-size: 1rem; }
}
