/* ==========================================================================
   ORLANDO TOW SERVICES — GLOBAL STYLESHEET
   Mobile-first. Dark charcoal / deep navy / white / safety orange.
   ========================================================================== */

:root {
  --charcoal: #1a1d21;
  --charcoal-light: #24282e;
  --navy: #0e1626;
  --navy-light: #16223a;
  --white: #ffffff;
  --off-white: #f4f5f7;
  --orange: #ff6a1a;
  --orange-dark: #e05500;
  --gray-600: #5a6270;
  --gray-400: #9aa1ac;
  --gray-200: #e2e4e8;
  --success: #1f9d55;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(14, 22, 38, 0.08);
  --shadow-md: 0 8px 24px rgba(14, 22, 38, 0.14);
  --shadow-lg: 0 16px 48px rgba(14, 22, 38, 0.22);

  --header-h: 64px;
  --sticky-h: 64px;

  --container-max: 1200px;
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--sticky-h); /* room for mobile sticky bar */
}
@media (min-width: 900px) {
  body { padding-bottom: 0; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.15; font-weight: 800; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 56px 0; }
.section--tight { padding: 36px 0; }
.section--dark { background: var(--charcoal); color: var(--white); }
.section--navy { background: var(--navy); color: var(--white); }
.section--offwhite { background: var(--off-white); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-heading { text-align: center; max-width: 720px; margin: 0 auto 32px; }
.section-heading h2 { font-size: clamp(1.6rem, 4vw, 2.25rem); }
.section-heading p { color: var(--gray-600); font-size: 1.05rem; }
.section--dark .section-heading p,
.section--navy .section-heading p { color: var(--gray-400); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--orange-dark); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-secondary:hover { border-color: var(--white); }
.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.btn-lg { padding: 18px 28px; font-size: 1.15rem; width: 100%; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-header__logo {
  color: var(--white);
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
@media (max-width: 400px) {
  .site-header__logo { font-size: 0.85rem; }
  .site-header__call { padding: 9px 12px; font-size: 0.82rem; }
  .site-header__lang { padding: 7px 8px; font-size: 0.75rem; }
  .site-header__inner { gap: 8px; }
}
.site-header__logo .logo-mark {
  color: var(--orange);
}
.site-header__nav {
  display: none;
  align-items: center;
  gap: 28px;
}
.site-header__nav a {
  color: var(--gray-400);
  font-weight: 600;
  font-size: 0.95rem;
}
.site-header__nav a:hover { color: var(--white); }
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-header__call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
}
.site-header__lang {
  color: var(--gray-400);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
}
@media (min-width: 900px) {
  .site-header__nav { display: flex; }
}

/* ---------- Floating call button (desktop) ----------
   The mobile sticky bar already puts CALL front and center on phones.
   On desktop, once someone scrolls past the hero the only call-to-action
   left is the small header button — this floating pill keeps a big,
   obvious call button on screen the entire time, on every page. */
.floating-call {
  display: none;
}
@media (min-width: 900px) {
  .floating-call {
    display: flex;
    align-items: center;
    gap: 10px;
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 60;
    background: var(--orange);
    color: var(--white);
    font-weight: 800;
    font-size: 1rem;
    padding: 16px 22px;
    border-radius: 999px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.12s ease, background-color 0.12s ease;
  }
  .floating-call:hover { background: var(--orange-dark); transform: translateY(-2px); }
}

/* ---------- Mobile sticky CTA bar ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  height: var(--sticky-h);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}
@media (min-width: 900px) { .sticky-cta { display: none; } }
.sticky-cta a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  gap: 2px;
}
.sticky-cta__call { background: var(--orange); color: var(--white); font-size: 0.95rem; }
.sticky-cta__text { background: var(--charcoal); color: var(--white); }
.sticky-cta__lang { background: var(--navy); color: var(--white); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--charcoal) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  gap: 28px;
  padding: 32px 0 40px;
}
.hero__content { order: 1; }
.hero__media { order: 2; }
.hero__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero h1 {
  font-size: clamp(1.9rem, 6vw, 3.1rem);
  margin-bottom: 14px;
}
.hero__sub {
  color: var(--gray-400);
  font-size: 1.05rem;
  max-width: 46ch;
  margin-bottom: 22px;
}
.hero__ctas { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.hero__ctas .btn { width: 100%; }
.hero__esp { text-align: center; font-weight: 700; color: var(--gray-400); font-size: 0.9rem; }
.trust-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.trust-row li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-400);
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.trust-row li::before { content: "✓"; color: var(--orange); font-weight: 900; }

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 45% 55%;
    align-items: center;
    padding: 64px 0 80px;
  }
  .hero__content { order: 1; }
  .hero__media { order: 2; }
  .hero__ctas { flex-direction: row; }
  .hero__ctas .btn { width: auto; }
  .trust-row { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Quick trust bar (page-wide, below hero) ---------- */
.quick-trust {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.quick-trust__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  justify-content: center;
  padding: 18px 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-600);
}
.quick-trust__inner span { display: inline-flex; align-items: center; gap: 6px; }
.quick-trust__inner span::before { content: "•"; color: var(--orange); font-size: 1.2rem; line-height: 0; }

/* ---------- Request a Tow form ---------- */
.tow-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 26px 22px;
  max-width: 640px;
  margin: 0 auto;
  border: 1px solid var(--gray-200);
}
.tow-form__row { margin-bottom: 14px; }
.tow-form__row-2 { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 14px; }
@media (min-width: 640px) { .tow-form__row-2 { grid-template-columns: 1fr 1fr; } }
.tow-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--charcoal);
}
.tow-form label .opt { font-weight: 500; color: var(--gray-600); }
.tow-form input,
.tow-form select,
.tow-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  background: var(--off-white);
}
.tow-form input:focus,
.tow-form select:focus,
.tow-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
}
.tow-form__confirmation {
  display: none;
  text-align: center;
  padding: 20px;
}
.tow-form__confirmation h3 { color: var(--success); }
.tow-form__note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-top: 14px;
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-card__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,106,26,0.12);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.service-card p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 12px; }
.service-card__link { color: var(--orange); font-weight: 700; font-size: 0.9rem; }

/* ---------- How it works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 800px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step {
  text-align: center;
  padding: 10px;
}
.step__num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.step h3 { font-size: 1rem; margin-bottom: 6px; }
.step p { color: var(--gray-600); font-size: 0.9rem; }

/* ---------- Location / service-area cards ---------- */
.area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 640px) { .area-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .area-grid { grid-template-columns: repeat(3, 1fr); } }
.area-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--charcoal);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
  display: flex;
  flex-direction: column;
}
.area-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.area-card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.area-card__media img { width: 100%; height: 100%; object-fit: cover; }
.area-card__body { padding: 16px 18px 20px; color: var(--white); }
.area-card__body h3 { font-size: 1.05rem; margin-bottom: 6px; }
.area-card__body p { color: var(--gray-400); font-size: 0.88rem; margin-bottom: 10px; }
.area-card__link { color: var(--orange); font-weight: 700; font-size: 0.88rem; }

/* ---------- Reviews (built, hidden until real reviews exist) ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 700px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px;
}
.review-card__stars { color: var(--orange); letter-spacing: 2px; margin-bottom: 10px; }
.review-card__quote { font-style: italic; margin-bottom: 12px; color: var(--charcoal); }
.review-card__meta { font-size: 0.85rem; color: var(--gray-600); font-weight: 700; }

/* ---------- Why us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 700px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
.why-item { display: flex; gap: 14px; }
.why-item__icon {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,106,26,0.15);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
}
.why-item h3 { font-size: 1rem; margin-bottom: 4px; }
.why-item p { color: var(--gray-400); font-size: 0.92rem; margin: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 4px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--orange);
  flex: none;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 4px 18px; color: var(--gray-600); }

/* ---------- Local SEO content block ---------- */
.local-seo-content {
  max-width: 820px;
  margin: 0 auto;
  color: var(--gray-600);
}
.local-seo-content h2 { color: var(--charcoal); }
.local-seo-content h3 { font-size: 1.1rem; margin-top: 1.4em; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  font-size: 0.82rem;
  color: var(--gray-600);
  padding: 14px 0;
}
.breadcrumbs a { color: var(--gray-600); }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs span[aria-current] { color: var(--charcoal); font-weight: 700; }

/* ---------- Final CTA ---------- */
.final-cta {
  text-align: center;
  padding: 56px 0;
}
.final-cta h2 { font-size: clamp(1.6rem, 5vw, 2.4rem); }
.final-cta p { color: var(--gray-400); max-width: 52ch; margin: 0 auto 26px; }
.final-cta__ctas { display: flex; flex-direction: column; gap: 12px; max-width: 420px; margin: 0 auto; }
@media (min-width: 640px) { .final-cta__ctas { flex-direction: row; justify-content: center; } }

/* ---------- Location hero (interior pages) ---------- */
.loc-hero {
  position: relative;
  color: var(--white);
  background: var(--navy);
}
.loc-hero__media { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.loc-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.loc-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,22,38,0.15) 0%, rgba(14,22,38,0.85) 100%);
}
.loc-hero__content {
  position: relative;
  padding: 26px 0 30px;
}
.loc-hero__content h1 { font-size: clamp(1.6rem, 5vw, 2.6rem); }
.loc-hero__content p { color: var(--gray-400); max-width: 60ch; }
.loc-hero__ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
@media (min-width: 640px) { .loc-hero__ctas { flex-direction: row; } }
@media (min-width: 900px) {
  .loc-hero__media { aspect-ratio: 21/9; }
}

/* ---------- Content + internal links block ---------- */
.internal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.internal-links a {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--charcoal);
}
.internal-links a:hover { border-color: var(--orange); color: var(--orange); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: var(--gray-400);
  padding: 48px 0 100px;
}
@media (min-width: 900px) { .site-footer { padding: 48px 0 40px; } }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (min-width: 700px) { .site-footer__grid { grid-template-columns: 2fr repeat(3, 1fr); } }
.site-footer__brand { color: var(--white); font-weight: 900; font-size: 1.1rem; margin-bottom: 10px; }
.site-footer__col h4 {
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.site-footer__col li { margin-bottom: 10px; font-size: 0.9rem; }
.site-footer__col a:hover { color: var(--white); }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.82rem;
}
.site-footer__bottom a { color: var(--gray-400); }
.site-footer__bottom a:hover { color: var(--white); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.mt-0 { margin-top: 0; }
