/*
 Theme Name:   SturdyCare Child
 Theme URI:    https://sturdycares.com
 Description:  SturdyCare Health Services – Child Theme
 Author:       Digital Serve LLC
 Template:     hello-elementor
 Version:      1.0.0
 Text Domain:  sturdycare-child
*/

/* ============================================================
   DESIGN SYSTEM — STURDYCARE HEALTH SERVICES
   Colors extracted from official brand logo
   ============================================================ */

:root {
  /* Brand Colors */
  --sc-navy:           #0C2461;   /* STURDY dark navy */
  --sc-navy-mid:       #1A3C8F;   /* mid navy hover */
  --sc-teal:           #00B4CC;   /* CARE cyan-teal */
  --sc-teal-dark:      #0096AD;   /* teal hover/active */
  --sc-teal-light:     #E6F7FA;   /* teal background wash */
  --sc-navy-light:     #EEF3FF;   /* navy background wash */

  /* Neutrals */
  --sc-white:          #FFFFFF;
  --sc-off-white:      #F8FAFC;
  --sc-gray-light:     #F1F5F9;
  --sc-gray-mid:       #CBD5E1;
  --sc-gray:           #64748B;
  --sc-text:           #1E293B;
  --sc-text-muted:     #64748B;

  /* Semantic */
  --sc-success:        #16A34A;
  --sc-border:         #E2E8F0;
  --sc-shadow:         0 4px 24px rgba(12, 36, 97, 0.10);
  --sc-shadow-hover:   0 8px 32px rgba(12, 36, 97, 0.18);

  /* Typography */
  --sc-font-heading:   'Poppins', 'Inter', sans-serif;
  --sc-font-body:      'Inter', 'Open Sans', sans-serif;

  /* Spacing Scale */
  --sc-radius:         10px;
  --sc-radius-lg:      16px;
  --sc-radius-xl:      24px;
}

/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: var(--sc-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--sc-text);
  background-color: var(--sc-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--sc-font-heading);
  font-weight: 700;
  color: var(--sc-navy);
  line-height: 1.25;
  margin-bottom: 0.75em;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p {
  color: var(--sc-text);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

a {
  color: var(--sc-teal);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--sc-teal-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   SITE HEADER
   ============================================================ */

.site-header,
#site-header {
  background-color: var(--sc-white) !important;
  box-shadow: 0 2px 16px rgba(12, 36, 97, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 !important;
}

/* Top Info Bar */
.sc-topbar {
  background-color: var(--sc-navy);
  color: var(--sc-white);
  font-size: 0.82rem;
  padding: 7px 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  padding-right: 40px;
}

.sc-topbar a {
  color: var(--sc-teal);
  font-weight: 500;
}

.sc-topbar a:hover {
  color: var(--sc-white);
}

/* Nav Container */
.sc-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.site-logo img {
  height: 64px;
  width: auto;
}

/* Primary Navigation */
.elementor-nav-menu,
.main-navigation ul {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.elementor-nav-menu > li > a,
.main-navigation > ul > li > a {
  font-family: var(--sc-font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--sc-navy) !important;
  padding: 10px 14px;
  border-radius: 6px;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.elementor-nav-menu > li > a:hover,
.main-navigation > ul > li > a:hover,
.elementor-nav-menu > li.current-menu-item > a {
  color: var(--sc-teal) !important;
  background-color: var(--sc-teal-light);
}

/* Dropdown Menu */
.elementor-nav-menu .sub-menu,
.main-navigation .sub-menu {
  background: var(--sc-white);
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius);
  box-shadow: var(--sc-shadow);
  padding: 8px 0;
  min-width: 220px;
}

.elementor-nav-menu .sub-menu li a,
.main-navigation .sub-menu li a {
  font-size: 0.88rem;
  color: var(--sc-text) !important;
  padding: 10px 20px;
  display: block;
  transition: all 0.18s ease;
  border-left: 3px solid transparent;
}

.elementor-nav-menu .sub-menu li a:hover,
.main-navigation .sub-menu li a:hover {
  color: var(--sc-teal) !important;
  background-color: var(--sc-teal-light);
  border-left-color: var(--sc-teal);
}

/* Nav CTA Button */
.nav-cta-btn,
.sc-nav-cta {
  background-color: var(--sc-teal) !important;
  color: var(--sc-white) !important;
  padding: 10px 22px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.02em;
  transition: background-color 0.2s ease, transform 0.15s ease !important;
}

.nav-cta-btn:hover,
.sc-nav-cta:hover {
  background-color: var(--sc-teal-dark) !important;
  transform: translateY(-1px);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.elementor-button,
.wp-block-button__link,
button,
input[type="submit"] {
  font-family: var(--sc-font-heading);
  font-weight: 700;
  border-radius: var(--sc-radius) !important;
  transition: all 0.22s ease;
  cursor: pointer;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  font-size: 0.95rem;
}

/* Primary Button */
.sc-btn-primary,
.elementor-button-primary {
  background-color: var(--sc-teal) !important;
  color: var(--sc-white) !important;
  border: 2px solid var(--sc-teal) !important;
}

.sc-btn-primary:hover,
.elementor-button-primary:hover {
  background-color: var(--sc-teal-dark) !important;
  border-color: var(--sc-teal-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 180, 204, 0.35);
}

/* Secondary Button */
.sc-btn-secondary,
.elementor-button-secondary {
  background-color: transparent !important;
  color: var(--sc-navy) !important;
  border: 2px solid var(--sc-navy) !important;
}

.sc-btn-secondary:hover,
.elementor-button-secondary:hover {
  background-color: var(--sc-navy) !important;
  color: var(--sc-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(12, 36, 97, 0.25);
}

/* White Outline Button (for dark backgrounds) */
.sc-btn-outline-white {
  background-color: transparent !important;
  color: var(--sc-white) !important;
  border: 2px solid rgba(255,255,255,0.7) !important;
}

.sc-btn-outline-white:hover {
  background-color: var(--sc-white) !important;
  color: var(--sc-navy) !important;
}

/* ============================================================
   SECTION LAYOUT SYSTEM
   ============================================================ */

.sc-section {
  padding: 80px 0;
}

.sc-section-sm {
  padding: 50px 0;
}

.sc-section-lg {
  padding: 110px 0;
}

.sc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Section Label (eyebrow text above heading) */
.sc-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sc-teal);
  margin-bottom: 12px;
}

.sc-eyebrow::before {
  content: "— ";
}

.sc-eyebrow::after {
  content: " —";
}

/* Section Heading Block */
.sc-section-heading {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.sc-section-heading h2 {
  color: var(--sc-navy);
  margin-bottom: 16px;
}

.sc-section-heading p {
  font-size: 1.05rem;
  color: var(--sc-text-muted);
  line-height: 1.8;
}

/* Divider */
.sc-divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--sc-teal), var(--sc-navy));
  border-radius: 2px;
  margin: 16px auto 24px;
}

.sc-divider-left {
  margin-left: 0;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.sc-hero {
  background: linear-gradient(135deg, var(--sc-navy) 0%, #163A8A 60%, #1A5276 100%);
  color: var(--sc-white);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

.sc-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,180,204,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.sc-hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.sc-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.sc-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(0, 180, 204, 0.18);
  border: 1px solid rgba(0, 180, 204, 0.35);
  color: var(--sc-teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.sc-hero h1 {
  color: var(--sc-white);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.18;
  margin-bottom: 20px;
}

.sc-hero h1 span.sc-teal {
  color: var(--sc-teal);
}

.sc-hero p.sc-hero-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 600px;
}

.sc-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 48px;
}

/* Hero Trust Badges */
.sc-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.sc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 100px;
}

.sc-hero-badge svg,
.sc-hero-badge .dashicon {
  color: var(--sc-teal);
  width: 14px;
  height: 14px;
}

/* ============================================================
   STATS BAR
   ============================================================ */

.sc-stats-bar {
  background: var(--sc-navy);
  padding: 28px 0;
  border-bottom: 3px solid var(--sc-teal);
}

.sc-stats-bar .sc-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.sc-stat-item {
  text-align: center;
}

.sc-stat-number {
  font-family: var(--sc-font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--sc-teal);
  line-height: 1;
  display: block;
}

.sc-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */

.sc-services-bg {
  background-color: var(--sc-off-white);
}

.sc-service-card {
  background: var(--sc-white);
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-lg);
  padding: 36px 32px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sc-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sc-teal), var(--sc-navy));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.sc-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sc-shadow-hover);
  border-color: transparent;
}

.sc-service-card:hover::before {
  transform: scaleX(1);
}

.sc-service-icon {
  width: 56px;
  height: 56px;
  background: var(--sc-teal-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--sc-teal);
}

.sc-service-card h3 {
  font-size: 1.15rem;
  color: var(--sc-navy);
  margin-bottom: 10px;
}

.sc-service-card p {
  font-size: 0.92rem;
  color: var(--sc-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   CONSULTING SECTION (Dark Background Variant)
   ============================================================ */

.sc-consulting-section {
  background: linear-gradient(135deg, var(--sc-navy) 0%, #163A8A 100%);
  color: var(--sc-white);
  position: relative;
  overflow: hidden;
}

.sc-consulting-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(0,180,204,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.sc-consulting-section h2,
.sc-consulting-section h3 {
  color: var(--sc-white);
}

.sc-consulting-section p {
  color: rgba(255,255,255,0.82);
}

.sc-consulting-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--sc-radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
}

.sc-consulting-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(0,180,204,0.4);
  transform: translateY(-4px);
}

.sc-consulting-card h3 {
  color: var(--sc-teal);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.sc-consulting-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */

.sc-why-us {
  background: var(--sc-white);
}

.sc-why-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--sc-radius-lg);
  border: 1px solid var(--sc-border);
  background: var(--sc-white);
  transition: all 0.3s ease;
}

.sc-why-card:hover {
  box-shadow: var(--sc-shadow);
  border-color: var(--sc-teal);
  background: var(--sc-teal-light);
}

.sc-why-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--sc-teal), var(--sc-navy));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--sc-white);
}

.sc-why-card h3 {
  font-size: 1.1rem;
  color: var(--sc-navy);
  margin-bottom: 10px;
}

.sc-why-card p {
  font-size: 0.9rem;
  color: var(--sc-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   COUNTIES SERVED
   ============================================================ */

.sc-counties {
  background: var(--sc-navy-light);
}

.sc-county-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

.sc-county-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sc-white);
  border: 2px solid var(--sc-teal);
  color: var(--sc-navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 100px;
  transition: all 0.22s ease;
  font-family: var(--sc-font-heading);
}

.sc-county-pill:hover {
  background: var(--sc-teal);
  color: var(--sc-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,180,204,0.3);
}

.sc-county-pill::before {
  content: "📍";
  font-size: 0.85rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.sc-testimonials {
  background: var(--sc-off-white);
}

.sc-testimonial-card {
  background: var(--sc-white);
  border-radius: var(--sc-radius-lg);
  padding: 36px 32px;
  box-shadow: var(--sc-shadow);
  border-left: 5px solid var(--sc-teal);
  position: relative;
  height: 100%;
  transition: transform 0.3s ease;
}

.sc-testimonial-card:hover {
  transform: translateY(-4px);
}

.sc-testimonial-quote {
  font-size: 3rem;
  color: var(--sc-teal);
  line-height: 1;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}

.sc-testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--sc-text);
  font-style: italic;
  margin-bottom: 20px;
}

.sc-testimonial-stars {
  color: #F59E0B;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.sc-testimonial-author {
  font-weight: 700;
  color: var(--sc-navy);
  font-size: 0.88rem;
  font-style: normal;
}

.sc-testimonial-location {
  font-size: 0.8rem;
  color: var(--sc-teal);
  font-weight: 600;
  margin-top: 2px;
}

/* ============================================================
   REFERRAL SECTION
   ============================================================ */

.sc-referral {
  background: linear-gradient(135deg, var(--sc-teal) 0%, var(--sc-teal-dark) 100%);
  color: var(--sc-white);
  text-align: center;
  padding: 80px 0;
}

.sc-referral h2 {
  color: var(--sc-white);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.sc-referral p {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 36px;
}

.sc-referral .sc-btn-white {
  background: var(--sc-white) !important;
  color: var(--sc-teal) !important;
  border: 2px solid var(--sc-white) !important;
  font-weight: 800;
}

.sc-referral .sc-btn-white:hover {
  background: transparent !important;
  color: var(--sc-white) !important;
}

/* ============================================================
   CONTACT CTA SECTION
   ============================================================ */

.sc-contact-cta {
  background: var(--sc-navy);
  text-align: center;
  padding: 80px 0;
}

.sc-contact-cta h2 {
  color: var(--sc-white);
  margin-bottom: 12px;
}

.sc-contact-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 32px;
}

.sc-contact-info-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.sc-contact-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

.sc-contact-info-item span.label {
  color: var(--sc-teal);
  font-weight: 700;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer,
#site-footer,
footer.elementor-location-footer {
  background-color: var(--sc-navy) !important;
  color: rgba(255,255,255,0.8) !important;
  padding: 0 !important;
}

.sc-footer-main {
  background: var(--sc-navy);
  padding: 70px 0 48px;
  border-top: 4px solid var(--sc-teal);
}

.sc-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.sc-footer-brand img {
  height: 58px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.sc-footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 20px;
}

.sc-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.sc-footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.sc-footer-social a:hover {
  background: var(--sc-teal);
  border-color: var(--sc-teal);
  color: var(--sc-white);
}

.sc-footer-col h4 {
  color: var(--sc-white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(0,180,204,0.3);
}

.sc-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sc-footer-col ul li {
  margin-bottom: 10px;
}

.sc-footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: all 0.18s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sc-footer-col ul li a:hover {
  color: var(--sc-teal);
  padding-left: 4px;
}

.sc-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.70);
}

.sc-footer-contact-item .icon {
  color: var(--sc-teal);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.sc-footer-contact-item a {
  color: rgba(255,255,255,0.70);
}

.sc-footer-contact-item a:hover {
  color: var(--sc-teal);
}

/* Footer Bottom Bar */
.sc-footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.sc-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.sc-footer-bottom a {
  color: rgba(255,255,255,0.5);
  transition: color 0.18s ease;
}

.sc-footer-bottom a:hover {
  color: var(--sc-teal);
}

.sc-footer-bottom-links {
  display: flex;
  gap: 20px;
}

/* ============================================================
   FORMS
   ============================================================ */

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select,
.elementor-field-type-text input,
.elementor-field-type-email input,
.elementor-field-type-tel input,
.elementor-field-type-textarea textarea {
  border: 1.5px solid var(--sc-border) !important;
  border-radius: var(--sc-radius) !important;
  padding: 12px 16px !important;
  font-family: var(--sc-font-body);
  font-size: 0.95rem;
  color: var(--sc-text) !important;
  background: var(--sc-white) !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  outline: none !important;
  border-color: var(--sc-teal) !important;
  box-shadow: 0 0 0 3px rgba(0, 180, 204, 0.15) !important;
}

label,
.elementor-field-label {
  font-family: var(--sc-font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--sc-navy);
  margin-bottom: 6px;
  display: block;
}

/* ============================================================
   HIPAA / TRUST BADGE STRIP
   ============================================================ */

.sc-trust-strip {
  background: var(--sc-teal-light);
  padding: 18px 0;
  border-top: 1px solid rgba(0,180,204,0.2);
  border-bottom: 1px solid rgba(0,180,204,0.2);
}

.sc-trust-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.sc-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--sc-navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sc-trust-badge .icon {
  font-size: 1.1rem;
  color: var(--sc-teal);
}

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */

.sc-page-hero {
  background: linear-gradient(135deg, var(--sc-navy) 0%, #1E4D9B 100%);
  padding: 70px 0 60px;
  text-align: center;
}

.sc-page-hero h1 {
  color: var(--sc-white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

.sc-page-hero p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* Breadcrumbs */
.sc-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.sc-breadcrumb a {
  color: var(--sc-teal);
}

.sc-breadcrumb span.sep {
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   UTILITIES
   ============================================================ */

.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }

.text-teal    { color: var(--sc-teal) !important; }
.text-navy    { color: var(--sc-navy) !important; }
.text-white   { color: var(--sc-white) !important; }
.text-muted   { color: var(--sc-text-muted) !important; }

.bg-navy      { background-color: var(--sc-navy) !important; }
.bg-teal      { background-color: var(--sc-teal) !important; }
.bg-teal-light { background-color: var(--sc-teal-light) !important; }
.bg-off-white { background-color: var(--sc-off-white) !important; }

.font-bold    { font-weight: 700; }
.font-semibold { font-weight: 600; }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */

:focus-visible {
  outline: 3px solid var(--sc-teal);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--sc-teal);
  color: var(--sc-white);
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  z-index: 9999;
}

.skip-link:focus {
  top: 0;
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .sc-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .sc-section { padding: 60px 0; }
  .sc-section-lg { padding: 70px 0; }

  .sc-nav-wrapper {
    padding: 12px 20px;
  }

  .sc-hero {
    padding: 60px 0 50px;
    text-align: center;
  }

  .sc-hero-ctas {
    justify-content: center;
  }

  .sc-hero-badges {
    justify-content: center;
  }

  .sc-stats-bar .sc-container {
    gap: 24px;
  }

  .sc-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sc-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .sc-footer-bottom-links {
    justify-content: center;
  }

  .sc-trust-strip-inner {
    gap: 20px;
  }

  .sc-contact-info-bar {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .sc-section-heading {
    margin-bottom: 36px;
  }
}

@media (max-width: 480px) {
  .sc-hero h1 {
    font-size: 1.9rem;
  }

  .sc-hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .sc-hero-ctas .elementor-button {
    text-align: center;
    width: 100%;
  }

  .sc-county-pill {
    font-size: 0.88rem;
    padding: 10px 18px;
  }

  .sc-stat-number {
    font-size: 1.6rem;
  }
}

/* ============================================================
   ELEMENTOR OVERRIDES
   ============================================================ */

/* Remove default Elementor padding conflicts */
.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 1200px;
}

.elementor-section .elementor-section-inner {
  padding: 0;
}

/* Ensure Elementor headings use our fonts */
.elementor-widget-heading h1,
.elementor-widget-heading h2,
.elementor-widget-heading h3,
.elementor-widget-heading h4 {
  font-family: var(--sc-font-heading) !important;
}

.elementor-widget-text-editor p,
.elementor-widget-text-editor li {
  font-family: var(--sc-font-body) !important;
}

/* Button widget overrides */
.elementor-widget-button .elementor-button {
  letter-spacing: 0.02em;
  font-family: var(--sc-font-heading) !important;
}
