/* ============================================================
   Weight Loss Davie — Global Stylesheet
   Font dependency: Barlow + Barlow Condensed (Google Fonts)
   Add to <head>:
   <link href="https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@300;400;500;600&display=swap" rel="stylesheet">
   ============================================================ */

/* ─── VARIABLES ─── */
:root {
  --blue:      #1a3fcf;
  --deep:      #0d1f6e;
  --light:     #e8edff;
  --off-white: #f7f8fc;
  --white:     #ffffff;
  --text:      #1a1a2e;
  --muted:     #4a5068;
}

/* ─── RESET ─── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ─── BASE ─── */
body {
  font-family: 'Barlow', sans-serif;
  background: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
}



/* ─── DISCLAIMER TEXT ─── */
.disclaimer,
.legal-text,
.edu-notice {
  color: #ffffff !important;
}

/* ─── HERO ─── */
.hero {
  background: var(--deep);
  color: white;
  padding: 100px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 80px
  );
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  position: relative;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(52px, 9vw, 110px);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  position: relative;
  margin-bottom: 32px;
}

.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.3);
}

.hero-desc {
  max-width: 620px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  font-weight: 300;
  position: relative;
}

/* ─── FEATURE CARDS (Image Strip) ─── */
.features-strip {
  background: var(--blue);
  padding: 70px 40px;
}

.features-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.feat-card {
  background: white;
  border-radius: 16px;
  padding: 28px 20px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.feat-card img {
  width: 100%;
  max-width: 150px;
  height: auto;
  object-fit: contain;
}

/* ─── SECTION WRAPPER ─── */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}

/* ─── SECTION TAG (Eyebrow Label) ─── */
.section-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--light);
  display: inline-block;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}

/* ─── TWO-COLUMN GRIDS ─── */
.s1-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.s3-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.s4-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ─── LEFT COLUMN ─── */
.s1-left h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  color: var(--deep);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.s1-left p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 16px;
}

/* ─── RIGHT COLUMNS ─── */
.s1-right,
.s3-right {
  display: flex;
  flex-direction: column;
}

/* ─── INFO BLOCKS ─── */
.info-block {
  padding: 28px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.info-block:last-child {
  border-bottom: none;
}

.info-block h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue);
  margin-bottom: 8px;
}

.info-block p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* ─── DARK SECTION ─── */
.dark-section {
  background: var(--deep);
  color: white;
}

.dark-section .section-tag {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
}

.dark-section h2 {
  color: white !important;
}

.dark-section .s1-left h2 {
  color: white !important;
}

.dark-section .s1-left p {
  color: rgba(255,255,255,0.9) !important;
}

.dark-section .info-block {
  border-bottom-color: rgba(255,255,255,0.1);
}

.dark-section .info-block h3 {
  color: #7b9fff;
}

.dark-section .info-block p,
.dark-section p {
  color: rgba(255,255,255,0.9) !important;
}

/* Keep white-card body text readable inside dark sections */
.dark-section .card p,
.dark-section .info-card p,
.dark-section .feat-card p,
.dark-section .highlight-card p,
.dark-section .service-card p,
.dark-section .home-card p,
.dark-section .industry-card p,
.dark-section .reason-card p,
.dark-section .reason-card .description,
.dark-section .reason-card .body-text,
.dark-section .whyus-card p {
  color: #0d1f6e !important;
}

/* Keep white-card body text readable inside blue feature strips */
.features-strip .card p,
.features-strip .info-card p,
.features-strip .feat-card p,
.features-strip .highlight-card p,
.features-strip .service-card p,
.features-strip .home-card p,
.features-strip .industry-card p,
.features-strip .reason-card p,
.features-strip .reason-card .description,
.features-strip .reason-card .body-text,
.features-strip .whyus-card p {
  color: #0d1f6e !important;
}

.dark-section .checklist li {
  color: rgba(255,255,255,0.9);
}

.dark-section .checklist li strong {
  color: white;
}

/* ─── CONTACT LINKS IN DARK SECTIONS ─── */
.dark-section a[href^="tel:"],
.dark-section a[href^="mailto:"],
.site-footer a[href^="tel:"],
.site-footer a[href^="mailto:"],
.footer-inner a[href^="tel:"],
.footer-inner a[href^="mailto:"],
.footer-brand a[href^="tel:"],
.footer-brand a[href^="mailto:"],
.hero a[href^="tel:"],
.hero a[href^="mailto:"],
.cta-section a[href^="tel:"],
.cta-section a[href^="mailto:"],
[style*="var(--deep)"] a[href^="tel:"],
[style*="var(--deep)"] a[href^="mailto:"],
[style*="var(--blue)"] a[href^="tel:"],
[style*="var(--blue)"] a[href^="mailto:"] {
  color: #ffffff !important;
}

.dark-section a[href^="tel:"]:hover,
.dark-section a[href^="mailto:"]:hover,
.site-footer a[href^="tel:"]:hover,
.site-footer a[href^="mailto:"]:hover,
.footer-inner a[href^="tel:"]:hover,
.footer-inner a[href^="mailto:"]:hover,
.footer-brand a[href^="tel:"]:hover,
.footer-brand a[href^="mailto:"]:hover,
.hero a[href^="tel:"]:hover,
.hero a[href^="mailto:"]:hover,
.cta-section a[href^="tel:"]:hover,
.cta-section a[href^="mailto:"]:hover,
[style*="var(--deep)"] a[href^="tel:"]:hover,
[style*="var(--deep)"] a[href^="mailto:"]:hover,
[style*="var(--blue)"] a[href^="tel:"]:hover,
[style*="var(--blue)"] a[href^="mailto:"]:hover {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* ─── HIGHLIGHT BOX (Blue Card) ─── */
.highlight-box {
  background: var(--blue);
  color: white;
  border-radius: 20px;
  padding: 48px 40px;
}

.highlight-box h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 18px;
  color: white;
}

.highlight-box p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.9);
}

.highlight-box .badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

/* ─── BADGES ─── */
.badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── CHECKLIST ─── */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.check-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.check-icon::after {
  content: '✓';
  color: white;
  font-size: 12px;
  font-weight: 700;
}

.checklist li strong {
  color: var(--deep);
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

/* ─── TESTIMONIAL IMAGES ─── */
.testimonial-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

.full-testimonial-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.full-testimonial-wrap img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

/* ─── FULL WIDTH IMAGE WRAP (Industry page) ─── */
.full-image-wrap {
  padding: 0 40px 70px;
}

.full-image-wrap img {
  display: block;
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 12px 50px rgba(0,0,0,0.3);
}

.full-image-wrap-light {
  padding: 0 40px 70px;
}

.full-image-wrap-light img {
  display: block;
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: var(--blue);
  text-align: center;
  padding: 80px 40px;
  color: white;
}

.cta-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-btn {
  display: inline-block;
  background: white;
  color: var(--blue);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 18px 48px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero h1,
.hero-desc,
.hero-eyebrow {
  animation: fadeUp 0.7s ease both;
}

.hero h1       { animation-delay: 0.1s; }
.hero-desc     { animation-delay: 0.25s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .features-strip-inner { grid-template-columns: repeat(3, 1fr); }
  .s1-grid, .s3-grid, .s4-grid { grid-template-columns: 1fr; gap: 36px; }
  .highlight-box { padding: 36px 28px; }
}

@media (max-width: 600px) {
  .features-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 60px 24px; }
  .features-strip { padding: 50px 24px; }
  .full-image-wrap,
  .full-image-wrap-light,
  .full-testimonial-wrap { padding: 0 24px 50px; }
}

/* ─── GLOBAL CONTAINER (header/footer helper) ─── */
.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

/* ─── GLOBAL HEADER / NAV ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(247, 248, 252, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(13, 31, 110, 0.08);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.brand-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--deep);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--deep);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  padding: 10px 12px;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  background: var(--light);
  color: var(--blue);
  transform: translateY(-1px);
}

.site-nav a.active {
  background: var(--blue);
  color: var(--white);
}

.site-nav a.nav-cta {
  background: var(--blue);
  color: var(--white);
}

.site-nav a.nav-cta:hover {
  background: var(--deep);
  color: var(--white);
}

.site-nav a.nav-ghost {
  border: 1px solid rgba(13, 31, 110, 0.12);
  background: var(--white);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(13, 31, 110, 0.14);
  background: var(--white);
  color: var(--deep);
  border-radius: 8px;
  padding: 10px 12px;
  font-weight: 700;
  font-family: 'Barlow', sans-serif;
  cursor: pointer;
}

/* ─── MOBILE NAV ─── */
@media (max-width: 1050px) {
  .nav-wrap {
    min-height: 72px;
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .site-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 6px 0 10px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(13,31,110,0.06);
  }

  .site-nav a.nav-cta,
  .site-nav a.active {
    border: none;
  }
}

@media (max-width: 600px) {
  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand-text {
    font-size: 1.1rem;
  }
}


/* ─── FOOTER ─── */
.site-footer {
  background: var(--deep);
  color: rgba(255,255,255,0.9);
  padding: 60px 40px 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.9);
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .site-footer { padding: 48px 24px 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
