@charset "utf-8";
/* ============================================================
   city_CSS.css  —  Southwest Auto Transport
   City page stylesheet
   Based on StS_CSS.css with city-specific additions
   Navigation styles remain in: menu.css (unchanged)
   ============================================================ */

/* ── Reset ─────────────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* ── Base ───────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  margin: 0 !important;
  padding: 0 !important;
  background: #fff;
  color: #000;
  font-family: Tahoma, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
}

h1 { margin: 10px 0; font-size: 2em; letter-spacing: -0.5px; }
h2 { margin: 16px 0 8px; letter-spacing: -1px; }
h3 { margin: 20px 0 0; display: inline-block; clear: both; }
h4 { margin: 20px 0 0; }

p  { margin: 10px 0 0; line-height: 1.55 !important; font-size: 16px !important; font-family: Tahoma, sans-serif !important; }
a  { color: #0062CC; text-decoration: none; }
a:hover { text-decoration: underline; }
a.calltoaction { font-weight: bold; }

p a, li a { text-decoration: underline; }
p a:hover, li a:hover { text-decoration: underline; }

p.price-disclaimer { font-size: 0.9em; color: #333; margin-top: -10px; }
p.price-disclaimer a { text-decoration: underline; }

/* ── Advisory bar ───────────────────────────────────────────── */
#advisory { padding: 5px 10px; text-align: center; color: red; font-weight: bold; }

/* ── Header / Hero ──────────────────────────────────────────── */
#header {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow: hidden;
}

#header img {
  display: block;
  width: 100%;
  height: auto;
}

#header h1 {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  width: auto;
  max-width: 96%;
  text-align: left;
  color: #000;
  font-family: Impact, sans-serif;
  font-weight: 900;
  font-size: 2.8em;
  line-height: 1.06;
  letter-spacing: 0.2px;
  text-shadow:
    -3px -3px 0 #fff,  3px -3px 0 #fff,
    -3px  3px 0 #fff,  3px  3px 0 #fff,
    0 5px 14px rgba(0,0,0,.45);
  pointer-events: none;
}

#header #call::after {
  content: "" !important;
  display: none !important;
}

/* ── Menu placeholder ───────────────────────────────────────── */
#menu { min-height: 55px; position: relative; }

/* Phone icon - left side */
#menu a.mobile:first-child {
  position: absolute;
  left: 15px;
  top: 13px;
  z-index: 101;
  display: block;
}

/* Hamburger open - right side */
#menu a#navopen {
  position: absolute;
  right: 15px;
  top: 13px;
  z-index: 101;
  display: block;
}

/* Close button - right side */
#menu a#navclose {
  position: absolute;
  right: 15px;
  top: 13px;
  z-index: 101;
}

/* Nav collapse */
#menu .nav-collapse {
  width: 100%;
  background: #33366A;
  margin-top: 0;
  top: 55px !important;
  position: absolute !important;
  z-index: 100;
}

/* ── Layout container ───────────────────────────────────────── */
.container {
  width: 90%;
  margin: 0 auto;
  max-width: 100%;
  padding: 5px 0 0;
}

/* ── Main content area ──────────────────────────────────────── */
.content {
  background: #fff;
  float: left;
  width: 100%;
  margin: 0 0 10px 0;
}

/* ── Page layout: content col + sidebar ─────────────────────── */
.page-layout {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 10px 0;
}

.contentcol {
  flex: 1 1 auto;
  min-width: 0;
}

/* ── Quote form sidebar (desktop) ───────────────────────────── */
.quoteformcontainer {
  flex: 0 0 320px;
  max-width: 320px;
  text-align: center;
}

.quoteformcontainer h2 {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
  text-align: center;
  clear: none;
}

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  padding: 8px 0;
  margin-bottom: 5px;
  list-style: none;
  background: transparent;
  font-size: 16px;
}

.breadcrumb-item { display: inline; }
.breadcrumb-item a { color: #0056b3; text-decoration: underline; }
.breadcrumb-item a:hover { text-decoration: underline; }
.breadcrumb-item + .breadcrumb-item::before {
  content: "»";
  display: inline-block;
  padding: 0 0.5em;
  color: #6c757d;
}
.breadcrumb-item.active { color: #333; font-weight: bold; }

/* ── Pricing / rates table ──────────────────────────────────── */
table.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
  margin: 12px 0 20px;
  background: #fff;
  font-size: 1em;
}

table.pricing-table thead tr {
  background-color: #00796b;
  color: #fff;
  text-align: left;
}

table.pricing-table th,
table.pricing-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  vertical-align: top;
}

table.pricing-table tbody tr:nth-child(even) { background: rgba(0,0,0,.02); }
table.pricing-table tbody tr:last-child td { border-bottom: none; }

.action-btn {
  display: inline-block;
  padding: 7px 12px;
  background-color: #00796b;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 5px;
  text-align: center;
  font-size: 0.9em;
  white-space: nowrap;
}
.action-btn:hover { background-color: #005f56; text-decoration: none !important; }

/* ── Bullet list ────────────────────────────────────────────── */
ul.list {
  list-style: none;
  margin: 0;
  padding: 12px 0 0 0;
}

ul.list li {
  position: relative;
  padding: 4px 0 4px 25px;
  font-size: 16px;
  line-height: 1.45;
}

ul.list li::before {
  content: '';
  display: block;
  position: absolute;
  border: 2px solid #004999;
  left: 5px;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

/* ── Float image utility ────────────────────────────────────── */
.float-img-right {
  float: right;
  margin: 0 0 14px 20px;
  width: 300px;
  height: 200px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.10);
  object-fit: cover;
}

.cf::after { content: ''; display: block; clear: both; }

/* ── Mobile quote form (shown only on mobile) ───────────────── */
.mobile-quote-form-container { display: none; }

.contentcol h2.page-title {
  font-size: 1.6em;
  margin: 10px 0 16px;
  letter-spacing: -0.5px;
}

/* ── CTA paragraph ──────────────────────────────────────────── */
p.final-cta {
  font-size: 1.1em;
  font-weight: bold;
  line-height: 1.4;
  margin: 20px 0 10px;
  color: #222;
}

p#city-final-cta {
  font-size: 1.1em;
  font-weight: bold;
  line-height: 1.4;
  margin: 20px 0 10px;
  color: #222;
  border-left: 4px solid #c8102e;
  padding: 10px 14px;
  background: #f4f6fb;
}

/* ── CTA inline links ───────────────────────────────────────── */
.js-form-link { font-weight: bold; }

/* ── Cards grid (challenges & tips) ────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 16px 0;
}

.info-card {
  background: #f0f4fc;
  border: 1px solid #d0d8e8;
  border-radius: 6px;
  padding: 14px;
}

.info-card.challenge { border-left: 4px solid #c8102e; }
.info-card.tip       { border-left: 4px solid #003087; }

.card-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 6px;
}

.info-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: #003087;
  display: block;
  clear: none;
}

.info-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.4;
}

/* ── FAQ accordion ──────────────────────────────────────────── */
.faq-list { margin: 16px 0; }

.faq-item {
  border: 1px solid #d0d8e8;
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: #f0f4fc;
  border: none;
  padding: 12px 16px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #003087;
  font-family: Tahoma, sans-serif;
}

.faq-question:hover { background: #dce8ff; }
.faq-question[aria-expanded="true"] { background: #003087; color: #fff; }

.faq-icon { font-size: 1.2rem; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 14px 16px;
  background: #fff;
  font-size: 0.88rem;
  line-height: 1.5;
}
.faq-answer.open { display: block; }
.faq-answer p { font-size: 0.88rem; margin: 0 0 8px; }
.faq-answer p:last-child { margin: 0; }

/* ── Helpful links ──────────────────────────────────────────── */
.helpful-links p {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.55;
}

/* ── Footer ─────────────────────────────────────────────────── */
#footer {
  margin-top: 20px;
  background-color: #001f3f;
  padding: 20px 0;
  float: left;
  width: 100%;
  text-align: center;
}

#footer ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 90%;
}

#footer ul li {
  display: inline-block;
  border-right: 2px solid #9A9A9A;
}

#footer ul li:last-child { border-right: none; }

#footer ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-family: Calibri, sans-serif;
  display: inline-block;
  padding: 10px 12px;
}

#footer ul li a:hover { text-decoration: underline; color: #ccc; }
#footer p { color: #fff; text-align: center; padding: 10px 0; }

.copyright { color: rgba(255,255,255,.6); font-size: .75rem; margin-top: 6px; text-align: center; }
.copyright::before { content: "© 2026 SouthWest Auto Transport. All Rights Reserved."; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
════════════════════════════════════════════════════════════ */

/* Hide sidebar on mobile */
@media (max-width: 767px) {
  .sidecol { display: none !important; }
}

  #header img {
    height: 150px;
    width: 100%;
    object-fit: cover;
    object-position: center center;
  }

  #header h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
    width: 92%;
    text-align: center;
    font-size: 2em;
    line-height: 1.15;
    color: #fff;
    text-shadow:
      -3px -3px 0 #000,  3px -3px 0 #000,
      -3px  3px 0 #000,  3px  3px 0 #000,
      -3px  0   0 #000,  3px  0   0 #000,
       0   -3px 0 #000,  0    3px 0 #000,
      0 4px 14px rgba(0,0,0,.8);
  }

  .page-layout { flex-direction: column; gap: 0; }

  .quoteformcontainer {
    flex: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 10px 0;
  }

  .mobile-quote-form-container {
    display: block;
    background: #fff;
    padding: 0 15px;
  }

  .desktop-quote-form { display: none; }

  .float-img-right {
    float: none !important;
    display: block;
    width: 100%;
    height: auto;
    margin: 12px 0 !important;
  }

  table.pricing-table { border: 0; border-radius: 0; }
  table.pricing-table thead { display: none; }
  table.pricing-table tr { display: block; margin-bottom: 0.6em; border-bottom: 2px solid #00796b; }
  table.pricing-table td {
    display: block;
    text-align: right;
    border-bottom: 1px dotted #ccc;
  }
  table.pricing-table td:last-child { border-bottom: 0; }
  table.pricing-table td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85em;
  }
  .action-btn { width: 100%; display: block; margin: 4px 0; box-sizing: border-box; }

  /* Typography — matches StS_CSS.css exactly */
  h1 { font-size: 1.6em; text-align: center; }
  h2 { font-size: 1.3em; text-align: center; line-height: 1.2em; }
  h3 { line-height: 1.2em; }
  p  { font-size: 14px; line-height: 1.4; }
  .contentcol p { font-size: 14px; line-height: 1.4; }

  ul.list li { font-size: 1em; padding-bottom: 6px; }

  .cards-grid { grid-template-columns: 1fr; }

  #footer ul { width: 100%; }
  #footer ul li {
    display: block;
    width: 100%;
    border-right: none;
  }
  #footer ul li a {
    display: block;
    padding: 14px 10px;
    font-size: 1.05em;
    text-align: center;
    border-bottom: 1px solid #4a4e8a;
  }
  #footer ul li:last-child a { border-bottom: none; }
}

/* ── Tablet: 768px – 930px ──────────────────────────────────── */
@media (min-width: 768px) and (max-width: 930px) {

  #header h1 { font-size: 2em; }

  .page-layout { gap: 18px; }

  .quoteformcontainer {
    flex: 0 0 260px;
    max-width: 260px;
  }

  table.pricing-table th,
  table.pricing-table td { padding: 8px 10px; font-size: 0.92em; }
}

/* ── Large tablet / small desktop: 931px – 1050px ───────────── */
@media (min-width: 931px) and (max-width: 1050px) {

  #header h1 { font-size: 2.4em; }

  .quoteformcontainer {
    flex: 0 0 290px;
    max-width: 290px;
  }
}

/* ── Desktop: 1051px and above ──────────────────────────────── */
@media (min-width: 1051px) {

  #header h1 { font-size: 3em; }

  .quoteformcontainer {
    flex: 0 0 320px;
    max-width: 320px;
  }
}