/* ============================================================
   LOCATION PAGE STYLES — Razorback Auto Transport
   Inherits from styles.css + service-styles.css patterns
   ============================================================ */

/* ===========================
   HERO PRICING TOOL — iframe quote widget in the hero sidebar
   =========================== */
.loc-hero__quote {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.08);
  overflow: hidden;
  position: relative;
}
.loc-hero__quote-badge {
  background: linear-gradient(135deg, #C8102E 0%, #a00d24 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8125rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.loc-hero__quote-iframe {
  display: block;
  width: 100%;
  min-height: 560px;
  border: 0;
  background: #fff;
}
.loc-hero__quote-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 8px 14px;
  padding: 12px 16px;
  background: #fafbfc;
  border-top: 1px solid #eef0f3;
  font-family: var(--font-ui);
  font-size: .75rem;
  font-weight: 600;
  color: #444;
}
.loc-hero__quote-foot span { white-space: nowrap; }

/* ===========================
   LOCAL OFFICE INFO STRIP — below hero, slim corporate-style bar
   =========================== */
.loc-office-strip {
  background: #fafbfc;
  border-bottom: 1px solid #e6e7ea;
  padding: 24px 0;
}
.loc-office-strip__inner {
  display: grid;
  grid-template-columns: auto 1.4fr 1.2fr auto;
  gap: 32px;
  align-items: center;
}
.loc-office-strip__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #C8102E;
  padding: 6px 12px;
  background: rgba(200,16,46,.08);
  border-radius: 4px;
  white-space: nowrap;
}
.loc-office-strip__addr,
.loc-office-strip__hours {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.loc-office-strip__addr strong,
.loc-office-strip__hours strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
  line-height: 1.3;
}
.loc-office-strip__addr span,
.loc-office-strip__hours span {
  font-family: var(--font-body);
  font-size: .875rem;
  color: var(--slate);
  line-height: 1.45;
}
.loc-office-strip__contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
  text-align: right;
}
.loc-office-strip__phone {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  color: #C8102E;
  text-decoration: none;
}
.loc-office-strip__phone:hover { color: #a00d24; }
.loc-office-strip__email {
  font-family: var(--font-body);
  font-size: .825rem;
  color: var(--slate);
  text-decoration: none;
}
.loc-office-strip__email:hover { color: var(--ink); }

@media (max-width: 900px) {
  .loc-office-strip__inner {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: left;
  }
  .loc-office-strip__contact {
    align-items: flex-start;
    text-align: left;
  }
}
@media (max-width: 600px) {
  .loc-office-strip { padding: 20px 0; }
  .loc-office-strip__phone { font-size: 1rem; }
}

/* Location hero — same DNA as svc-hero but with city emphasis */
.loc-hero {
  position: relative;
  background:
    linear-gradient(rgba(26,29,35,.86), rgba(26,29,35,.78)),
    url('../assets/hero.jpg') center / cover no-repeat;
  color: #fff;
  padding: 72px 0 64px;
}
.loc-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 460px;
  gap: 48px;
  align-items: start;
}
.loc-hero__copy h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.1;
  margin: 12px 0 16px;
  letter-spacing: -0.02em;
  color: #fff;
}
.loc-hero__copy h1 .accent {
  color: #C8102E;
  display: inline;
}
.loc-hero__lede {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255,255,255,.92);
  margin-bottom: 28px;
  max-width: 56ch;
}
.loc-hero__eyebrow {
  display: inline-block;
  background: #C8102E;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8125rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
}
.loc-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.loc-hero__quick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.loc-hero__quick-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 2px;
}
.loc-hero__quick-item span {
  font-size: .8125rem;
  color: rgba(255,255,255,.78);
}

/* Local info card */
.loc-card {
  background: #fff;
  color: #1A1D23;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.55);
}
.loc-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0 0 6px;
  color: #1A1D23;
}
.loc-card .loc-card__city {
  font-size: .8125rem;
  color: #C8102E;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.loc-card__row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-top: 1px solid #eee;
  font-size: .9375rem;
  line-height: 1.5;
}
.loc-card__row:first-of-type { border-top: none; }
.loc-card__row svg {
  flex-shrink: 0;
  color: #C8102E;
  margin-top: 2px;
}
.loc-card__row a {
  color: #1A1D23;
  text-decoration: none;
  font-weight: 600;
}
.loc-card__row a:hover { color: #C8102E; }
.loc-card__phone {
  display: block;
  background: #C8102E;
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem !important;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  margin-top: 16px;
  text-decoration: none;
}
.loc-card__phone:hover { background: #a50d24; color: #fff !important; }

/* Map section */
.loc-map {
  background: #f6f7f9;
  padding: 64px 0;
}
.loc-map__head {
  text-align: center;
  margin-bottom: 36px;
}
.loc-map__head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin: 0 0 10px;
  color: #1A1D23;
}
.loc-map__head p {
  color: var(--slate);
  max-width: 60ch;
  margin: 0 auto;
}
.loc-map__frame {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px -16px rgba(0,0,0,.25);
}
.loc-map__frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

/* Service grid within city page */
.loc-services {
  padding: 64px 0;
}
.loc-services__head {
  text-align: center;
  margin-bottom: 40px;
}
.loc-services__head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin: 0 0 10px;
}
.loc-services__head p {
  color: var(--slate);
  max-width: 60ch;
  margin: 0 auto;
}
.loc-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.loc-services__card {
  display: block;
  background: #fff;
  border: 1px solid #e6e7ea;
  border-radius: 10px;
  padding: 22px;
  text-decoration: none;
  color: #1A1D23;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.loc-services__card:hover {
  border-color: #C8102E;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -16px rgba(200,16,46,.4);
}
.loc-services__card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  margin: 0 0 6px;
}
.loc-services__card p {
  font-size: .9375rem;
  color: var(--slate);
  margin: 0 0 10px;
  line-height: 1.5;
}
.loc-services__card span {
  font-size: .875rem;
  font-weight: 600;
  color: #C8102E;
}

/* Other locations strip */
.loc-other {
  background: #1A1D23;
  color: #fff;
  padding: 56px 0;
}
.loc-other h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin: 0 0 8px;
  text-align: center;
}
.loc-other p {
  text-align: center;
  color: rgba(255,255,255,.75);
  margin: 0 auto 32px;
  max-width: 60ch;
}
.loc-other__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.loc-other__chip {
  display: block;
  text-align: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  text-decoration: none;
  padding: 14px 12px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9375rem;
  transition: background .2s, border-color .2s, color .2s;
}
.loc-other__chip:hover {
  background: #C8102E;
  border-color: #C8102E;
}
.loc-other__chip small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: .75rem;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
}

/* Body content layout */
.loc-body {
  padding: 64px 0;
}
.loc-body__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.loc-prose h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.4vw, 1.875rem);
  color: #1A1D23;
  margin: 36px 0 14px;
  letter-spacing: -0.01em;
}
.loc-prose h2:first-child { margin-top: 0; }
.loc-prose h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1875rem;
  color: #1A1D23;
  margin: 24px 0 10px;
}
.loc-prose p, .loc-prose li {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 14px;
}
.loc-prose ul, .loc-prose ol { padding-left: 22px; }
.loc-prose li { margin-bottom: 8px; }
.loc-prose strong { color: #1A1D23; }
.loc-prose a {
  color: #C8102E;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.loc-prose a:hover { color: #a50d24; }

/* Sticky sidebar with quick quote box */
.loc-sidebar {
  position: sticky;
  top: 24px;
  background: #1A1D23;
  color: #fff;
  border-radius: 12px;
  padding: 28px;
}
.loc-sidebar h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0 0 8px;
}
.loc-sidebar p {
  font-size: .9375rem;
  color: rgba(255,255,255,.82);
  margin: 0 0 18px;
  line-height: 1.55;
}
.loc-sidebar .btn { width: 100%; margin-bottom: 10px; }
.loc-sidebar__trust {
  border-top: 1px solid rgba(255,255,255,.15);
  margin-top: 18px;
  padding-top: 16px;
  font-size: .8125rem;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}
.loc-sidebar__trust strong { color: #fff; }

/* FAQ block */
.loc-faq {
  background: #f6f7f9;
  padding: 64px 0;
}
.loc-faq__head { text-align: center; margin-bottom: 36px; }
.loc-faq__head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin: 0 0 10px;
}
.loc-faq__head p { color: var(--slate); max-width: 60ch; margin: 0 auto; }
.loc-faq__list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.loc-faq__item {
  background: #fff;
  border-radius: 10px;
  padding: 22px 24px;
  border: 1px solid #e6e7ea;
}
.loc-faq__item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  margin: 0 0 10px;
  color: #1A1D23;
}
.loc-faq__item p {
  margin: 0;
  font-size: .9875rem;
  line-height: 1.65;
  color: var(--ink);
}

/* Routes table */
.loc-routes {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 22px;
  font-size: .9375rem;
}
.loc-routes th,
.loc-routes td {
  text-align: left;
  padding: 11px 14px;
  border-bottom: 1px solid #e6e7ea;
}
.loc-routes th {
  background: #1A1D23;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.loc-routes tbody tr:nth-child(even) { background: #fafbfc; }

/* Mobile */
@media (max-width: 900px) {
  .loc-hero { padding: 24px 0 36px; }
  .loc-hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  /* CRITICAL: iframe quote tool appears FIRST on mobile so customers can fill it out without scrolling */
  .loc-hero__copy { order: 2; }
  .loc-hero__quote { order: 1; }
  .loc-hero__quote-iframe { min-height: 580px; }
  .loc-hero__quick { grid-template-columns: repeat(2, 1fr); }
  .loc-body__grid { grid-template-columns: 1fr; gap: 32px; }
  .loc-sidebar { position: static; }
  .loc-map__frame iframe { height: 340px; }
  /* Compact the breadcrumb + eyebrow on mobile */
  .loc-hero .svc-breadcrumb { margin-bottom: 8px; font-size: 0.78rem; }
  .loc-hero__eyebrow { font-size: 0.7rem; padding: 4px 10px; margin-bottom: 6px; }
  .loc-hero__copy h1 { font-size: clamp(1.55rem, 5vw, 2rem); margin: 6px 0 12px; }
  .loc-hero__lede { font-size: 0.98rem; line-height: 1.55; margin-bottom: 18px; }
  .loc-hero__actions { gap: 10px; margin-bottom: 22px; }
  .loc-hero__quick { padding-top: 18px; gap: 14px; }
}
@media (max-width: 520px) {
  .loc-hero__quick { grid-template-columns: 1fr 1fr; gap: 12px; }
  .loc-map__frame iframe { height: 280px; }
  .loc-card { padding: 22px; }
}
