/* Magic Valley Towing Pros - Static Site Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Barlow+Condensed:wght@700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #1c2642;
  --primary-fg: #f8fafc;
  --yellow: #facc15;
  --yellow-hover: #eab308;
  --footer-bg: #002847;
  --secondary: #f0f5f9;
  --muted: #64748b;
  --border: #e2e8f0;
  --foreground: #0f172a;
  --radius: 0.5rem;
  --container: 1280px;
}

body {
  font-family: 'Barlow', sans-serif;
  color: var(--foreground);
  background: #fff;
  line-height: 1.6;
}

/* ── LAYOUT ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* ── NAVIGATION ── */
.site-header {
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
  position: sticky; top: 0; z-index: 100;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem; max-width: var(--container); margin: 0 auto;
  gap: 1rem;
}
.nav-brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.nav-brand img { height: 36px; width: 36px; }
.nav-brand span { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--primary); white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; list-style: none; }
.nav-links a { color: var(--foreground); text-decoration: none; font-weight: 500; font-size: .95rem; transition: color .2s; }
.nav-links a:hover { color: var(--primary); }
.dropdown { position: relative; }
.dropdown-toggle { display: flex; align-items: center; gap: .25rem; cursor: pointer; background: none; border: none; font: inherit; font-weight: 500; font-size: .95rem; color: var(--foreground); padding: 0; }
.dropdown-toggle:hover { color: var(--primary); }
.dropdown-toggle svg { width: 14px; height: 14px; }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,.1); min-width: 200px; z-index: 200;
  padding: .5rem 0;
}
.dropdown:hover .dropdown-menu,
.dropdown-menu:hover { display: block; }
.dropdown-menu a { display: block; padding: .6rem 1rem; color: var(--foreground); text-decoration: none; font-size: .9rem; }
.dropdown-menu a:hover { background: var(--secondary); color: var(--primary); }
.nav-cta {
  background: var(--yellow); color: #000; padding: .5rem 1.1rem;
  border-radius: var(--radius); text-decoration: none; font-weight: 600;
  font-size: .9rem; transition: background .2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--yellow-hover); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: .4rem; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--foreground); margin: 4px 0; transition: .3s; }
.mobile-menu { display: none; background: #fff; border-top: 1px solid var(--border); padding: 1rem 1.5rem; }
.mobile-menu.open { display: block; }
.mobile-menu a, .mobile-menu .mob-section h4 { display: block; padding: .5rem 0; color: var(--foreground); text-decoration: none; font-weight: 500; border-bottom: 1px solid var(--border); }
.mobile-menu .mob-section h4 { font-weight: 700; margin-top: .5rem; border-bottom: none; }
.mobile-menu .mob-sub a { padding-left: 1rem; font-weight: 400; }
.mobile-cta { display: block; width: 100%; background: var(--yellow); color: #000; text-align: center; padding: .75rem; border-radius: var(--radius); font-weight: 700; text-decoration: none; margin-top: 1rem; }

@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
}

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: .4rem; padding: .65rem 1.4rem; border-radius: var(--radius); font-weight: 600; font-size: .95rem; text-decoration: none; cursor: pointer; transition: all .2s; border: 2px solid transparent; }
.btn-yellow { background: var(--yellow); color: #000; }
.btn-yellow:hover { background: var(--yellow-hover); }
.btn-navy { background: var(--primary); color: #fff; }
.btn-navy:hover { background: #253059; }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: rgba(255,255,255,.9); }
.btn-outline-white { background: transparent; border-color: #fff; color: #fff; }
.btn-outline-white:hover { background: #fff; color: var(--primary); }
.btn-outline { background: transparent; border-color: var(--border); color: var(--foreground); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-sm { padding: .4rem 1rem; font-size: .85rem; }
.btn-lg { padding: .85rem 1.8rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-red { background: #dc2626; color: #fff; }
.btn-red:hover { background: #b91c1c; }

/* ── HERO ── */
.hero-bg {
  position: relative; padding: 5rem 0; background-size: cover;
  background-position: center; background-repeat: no-repeat;
}
.hero-bg::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.4); }
.hero-bg .container { position: relative; z-index: 1; }
.hero-content { max-width: 48rem; }
.hero-content h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2.2rem, 5vw, 3.75rem); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 1.25rem; }
.hero-content p { font-size: 1.15rem; color: rgba(255,255,255,.9); margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

.hero-solid { background: var(--primary); padding: 5rem 0; text-align: center; }
.hero-solid h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 1.25rem; }
.hero-solid p { font-size: 1.15rem; color: rgba(255,255,255,.88); max-width: 48rem; margin: 0 auto 2rem; }
.hero-solid .hero-actions { justify-content: center; }

.hero-gradient { background: linear-gradient(135deg, var(--primary), #2a3a6e); padding: 5rem 0; text-align: center; }
.hero-gradient h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 1.25rem; }
.hero-gradient p { font-size: 1.15rem; color: rgba(255,255,255,.88); max-width: 48rem; margin: 0 auto 2rem; }
.hero-gradient .hero-actions { justify-content: center; }

@media(max-width:768px) { .hero-bg { padding: 3.5rem 0; } .hero-solid, .hero-gradient { padding: 3.5rem 0; } }

/* ── FEATURE STRIP ── */
.feature-strip { background: var(--yellow); padding: 2.5rem 0; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.feature-item { display: flex; align-items: center; gap: .75rem; color: #000; }
.feature-item svg { width: 2rem; height: 2rem; flex-shrink: 0; }
.feature-item span { font-weight: 600; font-size: .95rem; }
@media(max-width:900px) { .feature-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px) { .feature-grid { grid-template-columns: 1fr; } }

/* ── SECTIONS ── */
section { padding: 4rem 0; }
.section-bg-secondary { background: var(--secondary); }
.section-bg-footer { background: var(--footer-bg); }
.section-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: .5rem; }
.section-label-yellow { color: var(--yellow); }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 800; color: var(--foreground); margin-bottom: 1rem; line-height: 1.2; }
.section-title-white { color: #fff; }
.section-desc { color: var(--muted); max-width: 40rem; }
.section-header-center { text-align: center; margin-bottom: 3rem; }
.section-header-center .section-desc { margin: 0 auto; }

/* ── TWO COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.two-col-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9; }
.two-col-img img { width: 100%; height: 100%; object-fit: cover; }
.text-col h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(1.4rem,2.8vw,2rem); font-weight: 800; margin-bottom: 1rem; color: var(--foreground); line-height: 1.2; }
.text-col p { color: var(--muted); margin-bottom: 1rem; }
@media(max-width:860px) { .two-col { grid-template-columns: 1fr; } }

/* ── CARDS ── */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.cards-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.cards-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.cards-6 { display: grid; grid-template-columns: repeat(6,1fr); gap: 1rem; }
@media(max-width:900px) { .cards-3,.cards-4 { grid-template-columns: repeat(2,1fr); } .cards-6 { grid-template-columns: repeat(3,1fr); } }
@media(max-width:600px) { .cards-3,.cards-4,.cards-2 { grid-template-columns: 1fr; } .cards-6 { grid-template-columns: repeat(2,1fr); } }

.card { background: #fff; border-radius: var(--radius); padding: 1.5rem; }
.card-gray { background: #f8f9fa; border-radius: var(--radius); padding: 1.5rem; }
.card-border { border: 1px solid var(--border); }
.card-hover { transition: box-shadow .2s; }
.card-hover:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: .5rem; color: var(--foreground); }
.card p { color: var(--muted); font-size: .9rem; }

.icon-yellow { background: var(--yellow); color: #000; padding: .75rem; border-radius: var(--radius); width: fit-content; margin-bottom: 1rem; }
.icon-yellow svg { width: 1.5rem; height: 1.5rem; display: block; }
.icon-navy { background: var(--primary); color: #fff; border-radius: 50%; width: 4rem; height: 4rem; display: flex; align-items: center; justify-content: center; }
.icon-navy svg { width: 1.75rem; height: 1.75rem; }
.icon-navy-lg { background: var(--primary); color: #fff; border-radius: 50%; width: 5rem; height: 5rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.icon-navy-lg svg { width: 2rem; height: 2rem; }

.service-card { background: #f8f9fa; padding: 1.5rem; border-radius: var(--radius); text-align: center; }
.service-card .icon-circle { background: var(--yellow); border-radius: 50%; width: 4.5rem; height: 4.5rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.service-card .icon-circle svg { width: 1.75rem; height: 1.75rem; color: var(--primary); }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.service-card p { color: var(--muted); font-size: .88rem; }

/* Location cards */
.loc-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; text-align: center; text-decoration: none; display: block; transition: background .2s, color .2s; }
.loc-card:hover { background: var(--primary); }
.loc-card:hover * { color: #fff !important; }
.loc-card svg { color: var(--primary); width: 2rem; height: 2rem; margin: 0 auto .75rem; display: block; }
.loc-card h3 { font-weight: 600; color: var(--foreground); font-size: 1rem; margin-bottom: .2rem; }
.loc-card p { color: var(--muted); font-size: .85rem; }

/* ── PROMO CARD ── */
.promo-card {
  background: linear-gradient(135deg, #facc15, #f59e0b);
  padding: 1.75rem; border-radius: var(--radius); color: #000;
  position: relative;
}
.promo-card .badge { position: absolute; top: 1rem; right: 1rem; background: #000; color: #fff; font-size: .7rem; padding: .25rem .5rem; border-radius: 4px; font-weight: 600; }
.promo-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.6rem; font-weight: 800; margin-bottom: .5rem; }
.promo-card p { color: rgba(0,0,0,.75); font-size: .9rem; margin-bottom: 1rem; }

/* ── TESTIMONIALS ── */
.testimonial { background: #fff; border-radius: var(--radius); padding: 1.5rem; }
.stars { display: flex; gap: .2rem; margin-bottom: .75rem; }
.stars svg { width: 1.1rem; height: 1.1rem; color: var(--primary); fill: var(--primary); }
.testimonial blockquote { color: var(--foreground); margin-bottom: .75rem; font-style: italic; }
.testimonial cite { color: var(--muted); font-size: .9rem; font-style: normal; }

/* ── CHECK LIST ── */
.check-list { list-style: none; space: ; }
.check-list li { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .75rem; }
.check-badge { background: var(--primary); color: #fff; border-radius: 50%; width: 2rem; height: 2rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .8rem; font-weight: 700; }
.check-list h4 { font-weight: 600; margin-bottom: .2rem; }
.check-list p { color: var(--muted); font-size: .9rem; }

/* ── FAQ ── */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: .75rem; overflow: hidden; }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.25rem; cursor: pointer; font-weight: 600; font-size: 1rem; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { width: 1.1rem; height: 1.1rem; flex-shrink: 0; transition: transform .2s; color: var(--muted); }
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-item .faq-body { padding: 0 1.25rem 1.1rem; color: var(--muted); }

/* ── ACCORDION (FAQ page style) ── */
.accordion-item { background: #fff; border-radius: var(--radius); padding: 0 1.25rem; margin-bottom: .75rem; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.accordion-item summary { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 0; cursor: pointer; font-weight: 600; list-style: none; }
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary svg { width: 1rem; height: 1rem; flex-shrink: 0; transition: transform .2s; }
.accordion-item[open] summary svg { transform: rotate(180deg); }
.accordion-item .acc-body { padding-bottom: 1.1rem; color: var(--muted); }

/* ── CONTACT FORM ── */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: .65rem .85rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  font: inherit; font-size: .95rem; color: var(--foreground);
  background: #fff; transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--primary);
}
.form-group textarea { resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media(max-width:600px) { .form-grid { grid-template-columns: 1fr; } }

/* ── CTA SECTIONS ── */
.cta-yellow { background: var(--yellow); padding: 3rem 0; text-align: center; }
.cta-yellow h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(1.4rem,3vw,2rem); font-weight: 800; color: #000; margin-bottom: .75rem; }
.cta-yellow p { color: rgba(0,0,0,.8); margin-bottom: 1.5rem; }

.cta-navy { background: var(--primary); padding: 4rem 0; text-align: center; }
.cta-navy h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(1.4rem,3vw,2.2rem); font-weight: 800; color: #fff; margin-bottom: 1rem; }
.cta-navy p { color: rgba(255,255,255,.85); margin-bottom: 2rem; max-width: 40rem; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

/* ── VALUES ── */
.value-card { text-align: center; }
.value-card h3 { font-weight: 700; margin: .75rem 0 .4rem; }
.value-card p { color: var(--muted); font-size: .9rem; }

/* ── PROCESS ── */
.step-circle { background: var(--primary); color: #fff; border-radius: 50%; width: 3rem; height: 3rem; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 700; margin: 0 auto 1rem; }
.step { text-align: center; }
.step h3 { font-weight: 700; margin-bottom: .4rem; }
.step p { color: var(--muted); font-size: .9rem; }

/* ── TRUST BADGES ── */
.trust-card { text-align: center; }
.trust-card h3 { font-weight: 700; margin: .75rem 0 .25rem; }
.trust-card p { color: var(--muted); font-size: .85rem; }

/* ── ALERT BOX ── */
.alert-emergency { background: #fef2f2; border: 1px solid #fecaca; border-radius: var(--radius); padding: 1.5rem; }
.alert-emergency h3 { color: #991b1b; font-weight: 700; margin-bottom: .5rem; display: flex; align-items: center; gap: .5rem; }
.alert-emergency p { color: #b91c1c; margin-bottom: 1rem; font-size: .95rem; }

/* ── LOCATION PAGE CONTENT ── */
.prose h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.35rem; font-weight: 700; margin: 1.75rem 0 .75rem; color: var(--foreground); }
.prose p { color: var(--muted); margin-bottom: 1rem; }
.prose ul { list-style: disc; padding-left: 1.5rem; color: var(--muted); margin-bottom: 1.25rem; }
.prose ul li { margin-bottom: .5rem; }
.prose a { color: #1d4ed8; text-decoration: underline; }
.prose a:hover { color: #1e40af; }
.highlight-box { background: rgba(28,38,66,.07); border-radius: var(--radius); padding: 1.5rem; margin-top: 2rem; }
.highlight-box h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: .75rem; }

/* ── FOOTER ── */
.site-footer { background: var(--footer-bg); padding: 3.5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2rem; }
.footer-brand h3 { color: #fff; font-weight: 700; font-size: 1.1rem; margin-bottom: .75rem; }
.footer-brand p { color: rgba(255,255,255,.65); font-size: .9rem; line-height: 1.6; }
.footer-col h3 { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: .75rem; }
.footer-col p { color: rgba(255,255,255,.65); font-size: .9rem; }
.footer-col .phone { color: #fff; font-weight: 700; font-size: 1.1rem; }
.footer-col a { display: block; color: rgba(255,255,255,.65); text-decoration: none; font-size: .9rem; margin-bottom: .4rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding: 1.25rem 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,.55); font-size: .85rem; }
@media(max-width:900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ── SPECIALS ── */
.specs-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
@media(max-width:900px) { .specs-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px) { .specs-grid { grid-template-columns: 1fr; } }
.spec-item { text-align: center; padding: 1rem; }
.spec-item svg { color: var(--primary); width: 3rem; height: 3rem; margin: 0 auto .75rem; display: block; }
.spec-item h3 { font-weight: 700; margin-bottom: .25rem; }
.spec-item p { color: var(--muted); font-size: .85rem; }

.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.flex-gap { display: flex; flex-wrap: wrap; gap: .75rem; }
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.font-bold { font-weight: 700; }
.max-4xl { max-width: 56rem; margin: 0 auto; }

/* ── VEHICLE GRID ── */
.vehicle-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
@media(max-width:900px) { .vehicle-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px) { .vehicle-grid { grid-template-columns: 1fr; } }
.vehicle-card { background: #fff; border-radius: var(--radius); padding: 1.5rem; text-align: center; box-shadow: 0 1px 4px rgba(0,0,0,.06); }
.vehicle-card svg { color: var(--primary); width: 3rem; height: 3rem; margin: 0 auto .75rem; display: block; }
.vehicle-card h3 { font-weight: 700; margin-bottom: .4rem; }
.vehicle-card p { color: var(--muted); font-size: .88rem; }

/* ── WHY CHOOSE ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media(max-width:600px) { .why-grid { grid-template-columns: 1fr; } }
.why-box { background: #f8f9fa; border-radius: var(--radius); padding: 1.5rem; }
.why-box h3 { font-weight: 700; margin-bottom: 1rem; }
.why-box ul { list-style: none; }
.why-box li { display: flex; align-items: flex-start; gap: .5rem; margin-bottom: .5rem; color: var(--muted); font-size: .9rem; }
.why-box li svg { color: var(--primary); width: 1.1rem; height: 1.1rem; margin-top: .15rem; flex-shrink: 0; }

/* ── ICON PLACEHOLDER (for when no img) ── */
.img-placeholder { background: #f0f5f9; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; aspect-ratio: 16/9; }
.img-placeholder svg { color: var(--primary); width: 6rem; height: 6rem; }

/* ── SPECIALIZED SERVICES ── */
.spec-service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
@media(max-width:900px) { .spec-service-grid { grid-template-columns: repeat(2,1fr); } }
.spec-service-item { text-align: center; padding: 1rem; }
.spec-service-icon { background: #f0f5f9; border-radius: 50%; width: 3rem; height: 3rem; display: flex; align-items: center; justify-content: center; margin: 0 auto .75rem; }
.spec-service-icon svg { color: var(--primary); width: 1.25rem; height: 1.25rem; }
.spec-service-item h4 { font-weight: 700; font-size: .9rem; }
