/* ============================================================
   JTtv — Version B Stylesheet
   Dark Charcoal + Teal. Phone-first. No chat.
   ============================================================ */

:root {
  --navy: #0f172a;
  --navy-mid: #1e293b;
  --navy-light: #334155;
  --gold: #0d9488;
  --gold-dark: #0f766e;
  --gold-bright: #14b8a6;
  --white: #ffffff;
  --off-white: #f8fafc;
  --light-gray: #e2e8f0;
  --mid-gray: #94a3b8;
  --dark-gray: #475569;
  --text: #0f172a;
  --red: #ef4444;
  --green: #10b981;
  --font-main: Arial, Helvetica, sans-serif;
  --font-ui: Arial, Helvetica, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-ui); color: var(--text); background: var(--white); line-height: 1.6; }
a { color: var(--gold-dark); text-decoration: underline; }
a:hover { color: var(--navy); }
img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header {
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-wrap img {
  width: 60px;   /* was 44px */
  height: 60px;  /* was 44px */
}
.logo-name {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold-bright);
  letter-spacing: 1px;
  line-height: 1;
}

.logo-tagline {
  font-size: 0.6rem;
  color: var(--mid-gray);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
}

#site-nav { display: flex; align-items: center; }
#site-nav ul { list-style: none; display: flex; gap: 0; }

#site-nav ul li a {
  display: block;
  padding: 22px 14px;
  color: var(--white);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

#site-nav ul li a:hover,
#site-nav ul li a.active {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-bright);
}

#nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--gold-bright);
  color: var(--gold-bright);
  padding: 6px 10px;
  cursor: pointer;
  font-size: 1.2rem;
  border-radius: 4px;
}

@media (max-width: 700px) {
  #nav-toggle { display: block; }
  #site-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy-mid);
    border-bottom: 3px solid var(--gold);
    z-index: 99;
    flex-direction: column;
    align-items: stretch;
  }
  #site-nav.open { display: flex; }
  #site-nav ul { flex-direction: column; }
  #site-nav ul li a { padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.07); border-left: 3px solid transparent; }
  #site-nav ul li a:hover, #site-nav ul li a.active { border-bottom: 1px solid rgba(255,255,255,0.07); border-left-color: var(--gold-bright); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: calc(100vh - 64px);
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 55%, #0a1020 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%230d9488' opacity='0.12'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 16px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-main);
  font-size: clamp(2rem, 7vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 700px;
}

.hero h1 span { color: var(--gold-bright); }

.hero-sub {
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: #94a3b8;
  max-width: 520px;
  margin-bottom: 38px;
  line-height: 1.7;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); text-decoration: none; }

.btn-call { background: var(--gold); color: var(--white); }
.btn-call:hover { background: var(--gold-dark); color: var(--white); }

.hero-note { color: var(--mid-gray); font-size: 0.82rem; }

/* ============================================================
   MOBILE FLOATING CALL BAR (phone only)
   ============================================================ */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--gold);
  color: var(--white);
  font-weight: bold;
  font-size: 1.05rem;
  text-align: center;
  padding: 16px;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 0 -3px 12px rgba(0,0,0,0.3);
}
.mobile-call-bar:hover { background: var(--gold-dark); color: var(--white); text-decoration: none; }

@media (max-width: 700px) {
  .mobile-call-bar { display: block; }
  body { padding-bottom: 60px; }

  .hero {
    min-height: calc(100vh - 60px);
    padding: 48px 24px 80px;
  }
  .hero h1 { font-size: 2.6rem; line-height: 1.1; margin-bottom: 18px; }
  .hero-sub { font-size: 1.08rem; margin-bottom: 0; }
  .hero-cta-row { display: none; }
  .hero-note { display: none; }
}

/* ============================================================
   PAGE SECTIONS
   ============================================================ */
.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 20px;
}

.page-banner {
  background: var(--navy-mid);
  color: var(--white);
  text-align: center;
  padding: 52px 20px;
  border-bottom: 3px solid var(--gold);
}

.page-banner h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 10px;
}

.page-banner p { color: var(--mid-gray); font-size: 1.05rem; }

.section-title {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
  padding-left: 16px;
  border-left: 4px solid var(--gold);
}

.section-sub {
  color: var(--dark-gray);
  margin-bottom: 30px;
  padding-left: 20px;
  font-size: 1rem;
}

/* ============================================================
   CARDS
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  padding: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover { box-shadow: 0 6px 24px rgba(13,148,136,0.12); transform: translateY(-2px); }
.card h3 { font-size: 1.05rem; font-weight: bold; color: var(--navy); margin-bottom: 10px; }
.card p { font-size: 0.92rem; color: var(--dark-gray); line-height: 1.65; }

/* ============================================================
   STATS / HIGHLIGHTS
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--light-gray);
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  overflow: hidden;
  margin: 44px 0;
}

.stat-box {
  background: var(--white);
  text-align: center;
  padding: 32px 20px;
}

.stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label { font-size: 0.85rem; color: var(--dark-gray); font-weight: bold; text-transform: uppercase; letter-spacing: 0.5px; }

@media (max-width: 600px) {
  .stats-row { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
  border-top: 3px solid var(--gold);
}

.cta-band h2 { font-size: clamp(1.4rem, 4vw, 2.2rem); font-weight: 900; margin-bottom: 24px; }

.cta-band .btn-call {
  font-size: 1.1rem;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--white);
}
.cta-band .btn-call:hover { background: var(--gold-dark); }

/* ============================================================
   INFO BOX
   ============================================================ */
.info-box {
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 18px 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--dark-gray);
}

.info-box strong { color: var(--navy); }
.info-box a { color: var(--gold-dark); }

/* ============================================================
   STEPS LIST
   ============================================================ */
.steps-list {
  list-style: none;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  counter-increment: step;
}

.steps-list li::before {
  content: counter(step);
  background: var(--gold);
  color: var(--white);
  font-weight: bold;
  font-size: 0.85rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-body { display: flex; flex-direction: column; gap: 4px; }
.step-body strong { color: var(--navy); font-size: 0.95rem; }
.step-body span { color: var(--dark-gray); font-size: 0.9rem; }

/* ============================================================
   DIVIDER
   ============================================================ */
.divider { border: none; border-top: 1px solid var(--light-gray); margin: 40px 0; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form { display: flex; flex-direction: column; gap: 16px; }

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: bold;
  color: var(--navy);
  margin-bottom: 5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--light-gray);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: var(--font-ui);
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(13,148,136,0.12);
}

.contact-form button[type="submit"] {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}

.contact-form button[type="submit"]:hover { background: var(--gold-dark); }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.narrow { max-width: 760px; }

.legal-body h2 {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--navy);
  margin: 28px 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--light-gray);
}

.legal-body p { color: var(--dark-gray); margin-bottom: 12px; font-size: 0.95rem; }

.legal-body ul, .legal-body ol {
  margin: 0 0 14px 20px;
  color: var(--dark-gray);
  font-size: 0.95rem;
}

.legal-body li { margin-bottom: 6px; line-height: 1.65; }
.legal-body a { color: var(--gold-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--navy-mid);
  color: var(--mid-gray);
  padding: 48px 20px 0;
  border-top: 3px solid var(--gold);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  padding-bottom: 36px;
}

.footer-col h4 {
  color: var(--gold-bright);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.footer-col p { font-size: 0.88rem; line-height: 1.7; }

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { color: var(--mid-gray); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-bright); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--mid-gray);
}

.footer-logo span { font-weight: bold; color: var(--gold-bright); font-size: 1rem; }
