/* ==========================================================================
   Big Bear Car Shipping — Corporate Stylesheet (v2)
   Palette: Deep navy, charcoal, white, with red as a single sharp accent.
   ========================================================================== */

:root {
  --red:        #A8201A;
  --red-dark:   #7A1612;
  --navy:       #0B1E33;
  --navy-deep:  #061321;
  --navy-soft:  #16314D;
  --charcoal:   #1F2937;
  --slate:      #475569;
  --gray:       #64748B;
  --gray-light: #E2E8F0;
  --gray-soft:  #F1F5F9;
  --bg:         #F8FAFC;
  --white:      #FFFFFF;
  --gold:       #C8A24B;
  --shadow-sm:  0 1px 3px rgba(11,30,51,.08);
  --shadow-md:  0 6px 20px rgba(11,30,51,.10);
  --shadow-lg:  0 20px 50px rgba(11,30,51,.16);
  --radius:     8px;
  --radius-lg:  16px;
  --container:  1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  margin: 0;
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--red); }

h1, h2, h3, h4, h5 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 700;
  letter-spacing: -.5px;
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(2rem, 3.8vw, 2.8rem); line-height: 1.15; }
h3 { font-size: 1.45rem; }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1em; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 32px;
  font-family: 'Source Sans 3', sans-serif; font-weight: 600; font-size: 1.05rem;
  letter-spacing: .3px;
  border: 2px solid transparent; border-radius: var(--radius);
  cursor: pointer; transition: all .25s ease; white-space: nowrap; text-align: center;
}
.btn-primary { background: var(--navy); color: var(--white); box-shadow: 0 4px 14px rgba(11,30,51,.25); }
.btn-primary:hover { background: var(--navy-deep); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(11,30,51,.32);}
.btn-accent { background: var(--red); color: var(--white); box-shadow: 0 4px 14px rgba(168,32,26,.30);}
.btn-accent:hover { background: var(--red-dark); color: var(--white); transform: translateY(-2px);}
.btn-outline { background: transparent; color: var(--white); border-color: var(--white);}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--navy);}
.btn-outline-dark:hover { background: var(--navy); color: var(--white);}
.btn-lg { padding: 18px 38px; font-size: 1.15rem; }

/* Top bar */
.topbar { background: var(--navy-deep); color: var(--gray-light); font-size: .95rem; padding: 10px 0;}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;}
.topbar a { color: var(--gray-light); }
.topbar a:hover { color: var(--white); }
.topbar .phone { color: var(--white); font-weight: 600; }
.topbar .phone strong { color: var(--gold); }

/* Header */
.header { background: var(--white); border-bottom: 1px solid var(--gray-light); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm);}
.header .container { display: flex; justify-content: space-between; align-items: center; min-height: 108px; gap: 20px;}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 92px; width: auto; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-family: 'Source Sans 3', sans-serif; font-weight: 600; font-size: 1.05rem;
  color: var(--charcoal); padding: 12px 18px; border-radius: var(--radius);
  position: relative; transition: color .2s;
}
.nav a:hover { color: var(--navy); }
.nav a.active { color: var(--navy); }
.nav a.active::after {
  content: ""; position: absolute; left: 18px; right: 18px; bottom: 2px;
  height: 3px; background: var(--red); border-radius: 2px;
}
.nav .btn { margin-left: 14px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px; flex-direction: column; gap: 5px;}
.nav-toggle span { display: block; width: 28px; height: 3px; background: var(--navy); border-radius: 2px;}

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; background: var(--white);
    flex-direction: column; align-items: stretch; padding: 18px; gap: 4px;
    border-top: 1px solid var(--gray-light); box-shadow: var(--shadow-md); display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 16px 20px; font-size: 1.1rem; }
  .nav a.active::after { display: none; }
  .nav .btn { margin: 10px 0 0; }
}

/* Hero */
.hero { position: relative; background: var(--navy-deep); color: var(--white); overflow: hidden; padding: 110px 0 120px;}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(120deg, rgba(6,19,33,.92) 0%, rgba(11,30,51,.78) 55%, rgba(11,30,51,.55) 100%),
    url('../images/hero.jpg');
  background-size: cover; background-position: center; z-index: 0;
}
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--red); z-index: 2;}
.hero .container { position: relative; z-index: 1; max-width: 900px; text-align: center; }
.hero .eyebrow {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: 4px; font-size: .92rem;
  color: var(--white); padding: 10px 18px;
  border: 1px solid rgba(255,255,255,.35); border-radius: 4px; margin-bottom: 28px;
}
.hero .eyebrow .dot { color: var(--red); margin: 0 6px; }
.hero h1 { color: var(--white); font-size: clamp(2.6rem, 5.6vw, 4.4rem); margin-bottom: 24px;}
.hero h1 .accent { color: var(--white); border-bottom: 4px solid var(--red); padding-bottom: 4px;}
.hero p.lead { font-size: 1.3rem; color: rgba(255,255,255,.92); max-width: 720px; margin: 0 auto 36px; line-height: 1.6;}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 40px; justify-content: center; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.18);}
.hero-trust div { display: flex; align-items: center; gap: 12px; font-size: 1rem; color: rgba(255,255,255,.9);}
.hero-trust strong { color: var(--white); font-size: 1.4rem; font-family: 'Roboto Slab',serif; display: block; line-height: 1;}
.hero-trust .icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%; display: grid; place-items: center; color: var(--white); font-size: 1.2rem;
}

/* Stats */
.stats-strip { background: var(--bg); padding: 60px 0; border-bottom: 1px solid var(--gray-light);}
.stats-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center;}
.stat-num { font-family: 'Roboto Slab', serif; font-size: clamp(2.6rem, 4vw, 3.4rem); font-weight: 700; color: var(--navy); line-height: 1;}
.stat-label {
  font-family: 'Source Sans 3', sans-serif;
  text-transform: uppercase; letter-spacing: 1.5px; font-size: .92rem; font-weight: 600;
  color: var(--slate); margin-top: 10px;
}
.stat-num + .stat-label::before {
  content: ""; display: block; width: 36px; height: 3px; background: var(--red); margin: 12px auto;
}

/* Sections */
.section { padding: 100px 0; }
.section-tight { padding: 70px 0; }
.section-dark { background: var(--navy); color: var(--gray-light); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-bg { background: var(--bg); }

.section-head { text-align: center; max-width: 780px; margin: 0 auto 64px; }
.section-head .eyebrow {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: 4px; font-size: .9rem;
  color: var(--red); margin-bottom: 16px;
}
.section-dark .section-head .eyebrow { color: var(--white); }
.section-head h2 { margin-bottom: 18px; }
.section-head p { color: var(--slate); font-size: 1.18rem; line-height: 1.7; }
.section-dark .section-head p { color: rgba(255,255,255,.8); }

.eyebrow-inline {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: 4px; font-size: .9rem;
  color: var(--red); margin-bottom: 14px;
}

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;}
.service-card {
  background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius-lg);
  padding: 40px 32px; transition: transform .25s, box-shadow .25s, border-color .25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--navy);}
.service-card .icon-box {
  width: 64px; height: 64px;
  background: var(--navy); color: var(--white);
  border-radius: var(--radius); display: grid; place-items: center; margin-bottom: 22px;
}
.service-card h3 { margin-bottom: 12px; color: var(--navy); }
.service-card p { color: var(--slate); margin-bottom: 18px; font-size: 1.05rem; line-height: 1.65;}
.service-card .learn {
  font-family: 'Source Sans 3', sans-serif; font-weight: 700; font-size: 1rem;
  color: var(--red); display: inline-flex; align-items: center; gap: 6px;
}
.service-card .learn::after { content: "→"; transition: transform .2s; }
.service-card:hover .learn::after { transform: translateX(4px); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 38px; left: 10%; right: 10%; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.4) 0 10px, transparent 10px 20px);
  z-index: 0;
}
.section:not(.section-dark) .steps::before {
  background: repeating-linear-gradient(90deg, var(--gray-light) 0 10px, transparent 10px 20px);
}
.step { position: relative; z-index: 1; text-align: center; }
.step-num {
  width: 76px; height: 76px;
  background: var(--white); color: var(--navy);
  font-family: 'Roboto Slab', serif; font-size: 2rem; font-weight: 700;
  border-radius: 50%; display: grid; place-items: center;
  margin: 0 auto 24px; border: 3px solid var(--red);
  box-shadow: 0 4px 12px rgba(11,30,51,.15);
}
.section-dark .step-num { background: var(--navy); color: var(--white); border-color: var(--white); }
.step h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--white); }
.section:not(.section-dark) .step h3 { color: var(--navy); }
.step p { color: rgba(255,255,255,.8); font-size: 1.05rem; }
.section:not(.section-dark) .step p { color: var(--slate); }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);}
.split-img img { width: 100%; display: block; }
.feature-list { list-style: none; padding: 0; margin: 30px 0 0; }
.feature-list li { display: flex; gap: 18px; margin-bottom: 26px; }
.feature-list .check {
  flex-shrink: 0; width: 38px; height: 38px;
  background: var(--navy); color: var(--white);
  border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 1.1rem;
}
.feature-list strong { display: block; font-family: 'Roboto Slab', serif; font-size: 1.25rem; color: var(--navy); margin-bottom: 4px;}
.feature-list p { margin: 0; color: var(--slate); font-size: 1.05rem; line-height: 1.65; }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tcard {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 32px;
  border: 1px solid var(--gray-light); position: relative;
}
.tcard::before {
  content: "“"; position: absolute; top: -2px; left: 24px;
  font-family: Georgia, serif; font-size: 5rem; color: var(--red); line-height: 1;
}
.tcard .stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 14px;}
.tcard p.quote { color: var(--charcoal); font-size: 1.1rem; line-height: 1.7; margin-bottom: 22px; }
.tcard .who { display: flex; align-items: center; gap: 14px; }
.tcard .avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: grid; place-items: center;
  font-family: 'Roboto Slab', serif; font-weight: 700; font-size: 1.15rem;
}
.tcard .who strong { display: block; color: var(--navy); font-size: 1.05rem; font-family: 'Roboto Slab',serif;}
.tcard .who span { color: var(--slate); font-size: .95rem; }

/* FAQ */
.faq { max-width: 880px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-light); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 26px 0;
  font-family: 'Roboto Slab', serif; font-weight: 700; font-size: 1.25rem;
  color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.8rem; color: var(--red); transition: transform .25s; flex-shrink: 0;}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer { padding: 0 0 26px; color: var(--slate); font-size: 1.08rem; line-height: 1.7; }

/* CTA banner */
.cta-banner { position: relative; padding: 100px 0; background: var(--navy); color: var(--white); text-align: center; overflow: hidden;}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(168,32,26,.18) 0, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(255,255,255,.05) 0, transparent 50%);
  pointer-events: none;
}
.cta-banner::after { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: var(--red);}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); font-size: clamp(2.2rem, 4.2vw, 3.2rem); margin-bottom: 18px;}
.cta-banner p { font-size: 1.25rem; max-width: 680px; margin: 0 auto 36px; color: rgba(255,255,255,.92); line-height: 1.65;}
.cta-buttons { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* Routes */
.routes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.route-pill {
  background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius);
  padding: 22px 24px; display: flex; align-items: center; justify-content: space-between;
  gap: 12px; transition: border-color .2s, transform .2s, box-shadow .2s;
}
.route-pill:hover { border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-sm);}
.route-pill strong { color: var(--navy); font-size: 1.08rem; font-family: 'Roboto Slab',serif;}
.route-pill small { color: var(--slate); font-size: .92rem; }
.route-pill .arrow { color: var(--red); font-weight: 700; font-size: 1.3rem;}

/* Footer */
.footer { background: var(--navy-deep); color: var(--gray-light); padding: 80px 0 0;}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.1);}
.footer .logo img { height: 100px; }
.footer p { color: rgba(255,255,255,.7); font-size: 1.02rem; line-height: 1.7;}
.footer h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 22px; font-family: 'Roboto Slab', serif;}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 12px; }
.footer ul a { color: rgba(255,255,255,.7); font-size: 1.02rem; }
.footer ul a:hover { color: var(--white); }
.footer .contact-item { display: flex; gap: 12px; margin-bottom: 14px; font-size: 1.02rem; color: rgba(255,255,255,.85);}
.footer .contact-item span:first-child { color: var(--red); flex-shrink: 0; font-weight: 700;}
.copyright { padding: 26px 0; text-align: center; font-size: .95rem; color: rgba(255,255,255,.55);}
.copyright a { color: rgba(255,255,255,.75); margin: 0 6px;}

/* Page header */
.page-header { background: var(--navy-deep); color: var(--white); padding: 90px 0 80px; text-align: center; position: relative; overflow: hidden;}
.page-header::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(120deg, rgba(6,19,33,.90), rgba(11,30,51,.70)), url('../images/hero.jpg');
  background-size: cover; background-position: center; z-index: 0;
}
.page-header::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--red);}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); margin-bottom: 14px;}
.page-header .crumbs {
  font-family: 'Source Sans 3', sans-serif;
  text-transform: uppercase; letter-spacing: 3px; font-size: .9rem;
  color: rgba(255,255,255,.7); margin-bottom: 8px;
}
.page-header .crumbs a { color: var(--white);}
.page-header .lead { font-size: 1.2rem; color: rgba(255,255,255,.88); max-width: 720px; margin: 14px auto 0; line-height: 1.6;}

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; }
.contact-info-card {
  background: var(--bg); padding: 40px 36px;
  border-radius: var(--radius-lg); border-top: 4px solid var(--red);
}
.contact-info-card h3 { margin-bottom: 22px; color: var(--navy);}
.contact-info-card .item { margin-bottom: 24px; }
.contact-info-card .item strong {
  display: block; font-family: 'Source Sans 3', sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; font-size: .88rem; color: var(--slate); margin-bottom: 6px;
}
.contact-info-card .item a, .contact-info-card .item p {
  color: var(--navy); font-size: 1.15rem; margin: 0; font-weight: 500;
}
.contact-form { background: var(--white); padding: 44px 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border-top: 4px solid var(--red);}
.contact-form h2 { margin-bottom: 8px; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
.contact-form .field { display: flex; flex-direction: column; }
.contact-form .full { grid-column: 1 / -1; }
.contact-form label {
  font-family: 'Source Sans 3', sans-serif; font-weight: 600;
  font-size: .95rem; margin-bottom: 8px; color: var(--charcoal);
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--gray-light); border-radius: var(--radius);
  font: inherit; font-size: 1.05rem; color: var(--charcoal);
  background: var(--white); transition: border-color .2s, box-shadow .2s;
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(11,30,51,.12);
}

/* Responsive */
@media (max-width: 980px) {
  html { font-size: 16px; }
  .hero { padding: 70px 0 90px; }
  .stats-strip .container { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .steps::before { display: none; }
  .split { grid-template-columns: 1fr; gap: 50px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .routes-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px;}
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .header .container { min-height: 90px; }
  .logo img { height: 72px; }
}
@media (max-width: 640px) {
  html { font-size: 16px; }
  body { font-size: 1.02rem; }
  .container { padding: 0 20px; }
  .section { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .stats-strip .container { grid-template-columns: 1fr 1fr; gap: 28px; }
  .routes-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px;}
  .topbar { font-size: .88rem; }
  .topbar .container { justify-content: center; text-align: center;}
  .hero-trust { gap: 24px; }
  .hero-cta .btn { width: 100%; }
  .contact-form { padding: 32px 24px; }
  .contact-form .row { grid-template-columns: 1fr; }
  .header .container { min-height: 80px; }
  .logo img { height: 60px; }
  .btn { padding: 14px 24px; font-size: 1rem; }
  .btn-lg { padding: 16px 28px; font-size: 1.05rem; }
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease;}
.reveal.visible { opacity: 1; transform: translateY(0); }
