/* ============================================================
   USA Business Class — Global Stylesheet
   usabusinessclass.com
   ============================================================ */

/* ── Reset & Root ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0A1628;
  --navy-mid:   #12233F;
  --navy-light: #1a3060;
  --gold:       #C9A84C;
  --gold-light: #E8C96A;
  --white:      #FFFFFF;
  --silver:     #F0F4FA;
  --border:     #D6E0F0;
  --text:       #1A2840;
  --slate:      #6B7A99;
  --muted:      #A8B8D4;
  --font-display: 'Playfair Display', serif;
  --font-body:    'Inter', sans-serif;
  --max-w:      1100px;
  --bar-h:      60px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  padding-top: var(--bar-h);
}

img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── Typography helpers ── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-desc {
  color: var(--slate);
  font-size: 16px;
  max-width: 580px;
  margin-bottom: 44px;
}

/* ── Layout wrapper ── */
.section-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px 32px;
}
.section-wrap--sm { padding: 52px 32px; }

/* ── Backgrounds ── */
.bg-silver {
  background: var(--silver);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.bg-navy {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

/* ============================================================
   PHONE BAR (sticky header)
   ============================================================ */
.phone-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--bar-h);
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  gap: 16px;
}

.phone-bar__brand {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.phone-bar__brand span { color: var(--gold); }

.phone-bar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-bar__tagline {
  color: var(--slate);
  font-size: 13px;
  white-space: nowrap;
}

.phone-bar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 17px;
  padding: 8px 22px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.2s;
  animation: pulse 2.5s ease-in-out infinite;
}
.phone-bar__cta:hover { background: var(--gold-light); }

@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,.35); }
  50%      { box-shadow: 0 0 0 8px rgba(201,168,76,0); }
}

/* ============================================================
   NAV MENU
   ============================================================ */
.site-nav {
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  gap: 4px;
}
.site-nav a {
  display: inline-block;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s, border-bottom-color 0.2s;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, var(--navy-light) 100%);
  padding: 80px 32px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(201,168,76,.10) 0%, transparent 60%);
  pointer-events: none;
}
.hero__eyebrow {
  display: inline-block;
  background: rgba(201,168,76,.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  max-width: 760px;
  margin: 0 auto 20px;
}
.hero h1 em { color: var(--gold); font-style: normal; }

.hero__sub {
  color: var(--muted);
  font-size: 18px;
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 40px;
}
.hero__cta-label {
  color: var(--slate);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: clamp(24px, 4vw, 36px);
  padding: 16px 36px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
}
.hero__phone:hover { background: var(--gold-light); transform: translateY(-2px); }

.hero__note {
  color: #7A8FAD;
  font-size: 13px;
  margin-top: 10px;
}

/* Trust strip */
.trust-strip {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}
.trust-strip__item svg { color: var(--gold); flex-shrink: 0; }

/* ============================================================
   ROUTE CARDS
   ============================================================ */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}
.route-card {
  background: var(--silver);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 22px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.route-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,76,.12);
  transform: translateY(-3px);
}
.route-card__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.route-card__arrow { color: var(--gold); margin: 0 4px; }
.route-card__class {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 14px;
}
.route-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  width: 100%;
  transition: color 0.2s;
}
.route-card__cta:hover { color: var(--navy); }

/* ============================================================
   STEPS / HOW IT WORKS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 32px;
}
.step { display: flex; flex-direction: column; gap: 12px; }
.step__num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step__title { font-weight: 700; font-size: 16px; color: var(--navy); }
.step__desc  { font-size: 14px; color: var(--slate); line-height: 1.55; }

/* ============================================================
   WHY CARDS
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.why-card {
  border-left: 3px solid var(--gold);
  padding: 20px 22px;
  background: var(--white);
  border-radius: 0 6px 6px 0;
  box-shadow: 0 2px 12px rgba(10,22,40,.06);
}
.why-card__title { font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 6px; }
.why-card__desc  { font-size: 14px; color: var(--slate); line-height: 1.55; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  padding: 72px 32px;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 42px);
  color: var(--white);
  margin-bottom: 14px;
}
.cta-band h2 span { color: var(--gold); }
.cta-band p { color: var(--muted); font-size: 16px; max-width: 500px; margin: 0 auto 36px; }

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
}
.btn-phone:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-phone--sm {
  font-size: 16px;
  padding: 11px 24px;
  border-radius: 4px;
}

.cta-band__hours { margin-top: 16px; color: var(--slate); font-size: 13px; }

/* ============================================================
   DISCLAIMER BAR
   ============================================================ */
.disclaimer-bar {
  background: var(--silver);
  border-top: 1px solid var(--border);
  padding: 18px 32px;
  text-align: center;
}
.disclaimer-bar p {
  font-size: 12px;
  color: var(--slate);
  line-height: 1.7;
  max-width: 940px;
  margin: 0 auto;
}
.disclaimer-bar a { color: var(--gold); text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: #7A8FAD;
  padding: 48px 32px 32px;
}
.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.site-footer__brand {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.site-footer__brand span { color: var(--gold); }
.site-footer__tagline { font-size: 13px; line-height: 1.6; }
.site-footer__col-title {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.site-footer__links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.site-footer__links a {
  font-size: 14px;
  color: #7A8FAD;
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer__links a:hover { color: var(--gold); }
.site-footer__bottom {
  max-width: var(--max-w);
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
}
.site-footer__bottom a { color: var(--gold); text-decoration: none; }

/* ============================================================
   INNER PAGE HERO (smaller)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 56px 32px 52px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero p { color: var(--muted); font-size: 16px; max-width: 500px; margin: 0 auto; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-intro__text p { color: var(--slate); font-size: 16px; line-height: 1.75; margin-bottom: 16px; }
.about-intro__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-box {
  background: var(--silver);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 22px;
  text-align: center;
}
.stat-box__num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-box__label { font-size: 13px; color: var(--slate); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--silver);
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border);
}
.team-card__avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
}
.team-card__name { font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 4px; }
.team-card__role { font-size: 13px; color: var(--slate); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}
.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-info__icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.contact-info__label { font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 4px; }
.contact-info__value { font-size: 15px; color: var(--slate); line-height: 1.55; }
.contact-info__value a { color: var(--gold); text-decoration: none; font-weight: 600; }

.contact-form-note {
  background: var(--silver);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
}
.contact-form-note h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 12px;
}
.contact-form-note p { color: var(--slate); font-size: 15px; line-height: 1.65; margin-bottom: 20px; }

/* ============================================================
   LEGAL PAGES (Privacy / Terms)
   ============================================================ */
.legal-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 32px;
}
.legal-body h2 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--navy);
  margin: 40px 0 12px;
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body p  { color: var(--slate); font-size: 15px; line-height: 1.75; margin-bottom: 14px; }
.legal-body ul { color: var(--slate); font-size: 15px; line-height: 1.75; margin-bottom: 14px; padding-left: 20px; }
.legal-body ul li { margin-bottom: 6px; }
.legal-body a { color: var(--gold); }
.legal-body .effective { color: var(--slate); font-size: 13px; margin-bottom: 36px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .about-intro { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --bar-h: 56px; }

  .phone-bar { padding: 0 16px; }
  .phone-bar__tagline { display: none; }
  .phone-bar__brand { font-size: 15px; }
  .phone-bar__cta { font-size: 14px; padding: 7px 14px; }

  .site-nav__inner { padding: 0 12px; gap: 0; overflow-x: auto; }
  .site-nav a { padding: 10px 12px; font-size: 12px; white-space: nowrap; }

  .hero { padding: 48px 20px 60px; }
  .trust-strip { gap: 18px; }

  .section-wrap { padding: 48px 20px; }
  .section-wrap--sm { padding: 36px 20px; }

  .cta-band { padding: 52px 20px; }
  .btn-phone { padding: 13px 22px; }

  .disclaimer-bar { padding: 16px 20px; }

  .site-footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .site-footer { padding: 36px 20px 24px; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; gap: 6px; }

  .page-hero { padding: 44px 20px 40px; }
  .legal-body { padding: 48px 20px; }
  .contact-grid { gap: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  .phone-bar__cta { animation: none; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
