:root {
  /* P&L Towing brand colors — white with dark blue accent */
  --blue: #1e3a8a;
  --blue-dark: #0f1f4a;
  --blue-light: #3b5bcc;
  --blue-pale: #eaf0fb;
  --blue-deep: #0a1738;
  --accent: #1e3a8a;

  /* Call-to-action accent (kept warm to draw the eye to the phone CTA) */
  --red: #c73030;
  --red-dark: #9e2424;

  /* Legacy aliases — all map to blue so the layout reads as blue + white */
  --green: var(--blue);
  --green-dark: var(--blue-dark);
  --green-light: var(--blue-light);
  --green-pale: var(--blue-pale);
  --gold: var(--blue);
  --gold-dark: var(--blue-dark);
  --gold-light: var(--blue-light);
  --gold-pale: var(--blue-pale);
  --cream: #f3f6fc;

  /* Neutrals */
  --black: #0a0a0a;
  --charcoal: #1a1a1a;
  --steel: #2a2d35;
  --gray: #6b6f76;
  --light: #f5f7fb;
  --border: #dfe5f0;
  --white: #ffffff;
  --yellow: var(--blue);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--black);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 92%; max-width: 1200px; margin: 0 auto; }

/* ========= TOP BAR ========= */
.topbar {
  background: var(--blue-deep);
  color: #d6e0f5;
  font-size: 0.88rem;
  padding: 8px 0;
  border-bottom: 3px solid var(--blue-light);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left span { margin-right: 18px; }
.topbar-left svg { vertical-align: -3px; margin-right: 5px; color: var(--blue-light); }
.topbar-right a { color: var(--white); font-weight: 600; margin-left: 14px; }
.topbar-right a:hover { color: var(--blue-light); }

/* ========= HEADER / NAV ========= */
header.main {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.logo-wrap { display: flex; align-items: center; gap: 14px; }
.logo-wrap img { height: 72px; width: auto; display: block; }
nav ul { display: flex; list-style: none; gap: 26px; align-items: center; }
nav a {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--charcoal);
  transition: color 0.2s;
}
nav a:hover, nav a.active { color: var(--blue); }
.cta-btn {
  background: var(--blue);
  color: var(--white) !important;
  padding: 11px 22px;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s;
}
.cta-btn:hover { background: var(--blue-dark); transform: translateY(-2px); }

/* Dropdown menus for Services and Service Areas */
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: -10px;
  background: var(--white);
  min-width: 250px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border-radius: 4px;
  border-top: 3px solid var(--blue);
  padding: 12px 0;
  z-index: 200;
}
.dropdown li { padding: 0; }
.dropdown a {
  display: block;
  padding: 8px 20px;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.dropdown a:hover { background: var(--blue-pale); color: var(--blue); }
.has-dropdown:hover .dropdown { display: block; }
.has-dropdown > a.dropdown-toggle::after { content: ' ▾'; font-size: 0.7em; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--black);
}

/* ========= HERO ========= */
.hero {
  position: relative;
  min-height: 620px;
  background:
    linear-gradient(rgba(10,23,56,0.78), rgba(10,23,56,0.55)),
    url('images/pl-towing-truck-ontario-ca.jpg') center/cover no-repeat;
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 8px; height: 100%;
  background: var(--blue);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 18px;
}
.hero h1 span { color: var(--blue-light); }

.brand-stamp {
  display: inline-block;
  padding: 14px 28px;
  background: rgba(0,0,0,0.45);
  border: 2px solid var(--blue-light);
  border-radius: 4px;
  margin-bottom: 28px;
  text-align: center;
}
.brand-stamp .brand-name {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 900;
  font-size: 2rem;
  color: #ffffff;
  letter-spacing: 2px;
  line-height: 1;
}
.brand-stamp .brand-name em { font-style: italic; color: var(--blue-light); }
.brand-stamp .brand-loc {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  color: var(--cream);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .brand-stamp { padding: 10px 20px; margin-bottom: 20px; }
  .brand-stamp .brand-name { font-size: 1.5rem; letter-spacing: 1.5px; }
  .brand-stamp .brand-loc { font-size: 0.7rem; letter-spacing: 2px; }
}
.hero .subhead {
  font-size: 1.18rem;
  max-width: 640px;
  margin-bottom: 28px;
  color: #e6eaf2;
}
.hero .subhead-mobile { display: none; }
.hero .tagline {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 22px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* Page banner (non-home pages) */
.page-banner {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-dark));
  color: var(--white);
  padding: 80px 0 60px;
  position: relative;
  border-bottom: 4px solid var(--blue);
}
.page-banner h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
}
.page-banner .crumbs {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-light);
}
.page-banner .crumbs a:hover { color: var(--white); }

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.25s;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
}
.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-2px); }
.btn-call {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  font-size: 1.2rem;
  padding: 18px 32px;
  font-weight: 700;
  letter-spacing: 1.5px;
  box-shadow: 0 0 0 0 rgba(199, 48, 48, 0.7), 0 8px 20px rgba(199, 48, 48, 0.35);
  animation: callPulse 2.2s ease-out infinite;
}
.btn-call:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-3px);
  animation: none;
  box-shadow: 0 12px 28px rgba(199, 48, 48, 0.5);
}
@keyframes callPulse {
  0%   { box-shadow: 0 0 0 0 rgba(199, 48, 48, 0.55), 0 8px 20px rgba(199, 48, 48, 0.35); }
  70%  { box-shadow: 0 0 0 14px rgba(199, 48, 48, 0), 0 8px 20px rgba(199, 48, 48, 0.35); }
  100% { box-shadow: 0 0 0 0 rgba(199, 48, 48, 0), 0 8px 20px rgba(199, 48, 48, 0.35); }
}
.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--blue-dark); }
.btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: var(--charcoal); }

/* ========= FEATURE STRIP ========= */
.feature-strip {
  background: var(--blue-deep);
  color: var(--white);
  padding: 28px 0;
  border-top: 1px solid rgba(59,91,204,0.35);
  border-bottom: 1px solid rgba(59,91,204,0.35);
}
.feature-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.feature-item h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 4px; }
.feature-item p { font-size: 0.9rem; opacity: 0.95; }
.feature-item svg { margin-bottom: 8px; color: var(--blue-light); }

/* ========= SECTION SHARED ========= */
section { padding: 90px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title .eyebrow {
  color: var(--blue);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: block;
}
.section-title h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
.section-title .divider { width: 60px; height: 4px; background: var(--blue); margin: 18px auto; }
.section-title p {
  color: var(--gray);
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ========= ABOUT ========= */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-img {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}
.about-img img { width: 100%; height: 480px; object-fit: cover; }
.about-img::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  background: var(--blue);
  z-index: -1;
}
.about-content .eyebrow {
  color: var(--blue);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: block;
}
.about-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 20px; }
.about-content p { margin-bottom: 16px; color: #444; }
.about-list { list-style: none; margin-top: 20px; }
.about-list li {
  padding: 8px 0;
  padding-left: 32px;
  position: relative;
  font-weight: 600;
}
.about-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  width: 22px; height: 22px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  top: 11px;
}

/* ========= SERVICES ========= */
.services { background: var(--light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 28px;
  text-align: center;
  border-radius: 6px;
  transition: all 0.3s;
  border-top: 4px solid var(--blue);
  position: relative;
  overflow: hidden;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(0,0,0,0.10); }
.service-card .icon {
  width: 70px; height: 70px;
  margin: 0 auto 18px;
  background: var(--blue-deep);
  color: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.service-card:hover .icon {
  background: var(--blue);
  color: var(--white);
  transform: rotate(-8deg) scale(1.05);
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { color: var(--gray); font-size: 0.95rem; }
.service-card .learn-more {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--blue);
  text-transform: uppercase;
}
.service-card .learn-more:hover { color: var(--blue-dark); }
.service-card.linked { cursor: pointer; }

/* ========= CONTENT PAGES ========= */
.content-page { padding: 80px 0; background: var(--white); }
.content-section { padding: 60px 0; }
.content-section .container { max-width: 900px; }
.content-section h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 30px 0 14px;
  color: var(--black);
}
.content-section h2:first-child { margin-top: 0; }
.content-section h3 {
  font-size: 1.25rem;
  margin: 22px 0 10px;
  color: var(--black);
}
.content-section p { margin-bottom: 16px; color: #333; font-size: 1.05rem; }
.content-section ul { margin: 14px 0 22px; padding-left: 0; list-style: none; }
.content-section ul li {
  padding: 6px 0 6px 28px;
  position: relative;
  color: #333;
}
.content-section ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  width: 20px; height: 20px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  top: 9px;
  font-weight: 700;
}

/* Breadcrumbs */
.crumbs-bar {
  background: var(--light);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.crumbs-bar .container { font-size: 0.9rem; }
.crumbs-bar a { color: var(--blue); }
.crumbs-bar a:hover { text-decoration: underline; }
.crumbs-bar .sep { margin: 0 8px; color: #999; }
.crumbs-bar .here { color: #666; }

/* Page hero (interior page banners) */
.page-hero {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-dark));
  color: var(--white);
  padding: 80px 0 60px;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.6rem); margin-top: 10px; }
.page-hero p { font-size: 1.15rem; max-width: 700px; margin-top: 14px; opacity: 0.95; }
.page-hero .tagline {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* FAQ details */
details.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 22px;
  margin-bottom: 12px;
  transition: box-shadow 0.2s;
}
details.faq-item[open] { box-shadow: 0 4px 14px rgba(30,58,138,0.08); }
details.faq-item summary {
  font-weight: 700;
  color: var(--blue-dark);
  cursor: pointer;
  font-size: 1.05rem;
  line-height: 1.4;
  list-style: none;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+';
  float: right;
  font-size: 1.4rem;
  color: var(--blue);
  font-weight: 400;
  line-height: 1;
}
details.faq-item[open] summary::after { content: '−'; }
details.faq-item p { margin-top: 12px; line-height: 1.7; color: #444; }

/* Promo pricing banner */
.promo-banner {
  background: var(--blue-deep);
  color: var(--white);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--blue-light);
  border-bottom: 3px solid var(--blue-light);
}
.promo-banner::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.promo-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.promo-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.promo-text h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 6px; }
.promo-text p { font-size: 1.05rem; opacity: 0.95; margin: 0; }
.promo-price {
  background: var(--white);
  padding: 16px 30px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transform: rotate(-3deg);
}
.promo-price .from {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #666;
  display: block;
}
.promo-price .price {
  font-family: 'Oswald', sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

/* CTA band */
.cta-band {
  background: var(--blue-deep);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); font-size: 2rem; margin-bottom: 16px; }
.cta-band p { font-size: 1.1rem; margin-bottom: 28px; opacity: 0.95; }

/* Area & service cards grids */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.tile {
  background: var(--white);
  padding: 18px;
  border-radius: 6px;
  border: 1px solid var(--border);
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(30,58,138,0.10);
  border-color: var(--blue);
}
.tile strong { display: block; color: var(--blue); font-family: 'Oswald', sans-serif; letter-spacing: 0.5px; }
.tile span { font-size: 0.88rem; color: #666; display: block; margin-top: 4px; }

/* Area pills */
.area-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.area-pill {
  text-decoration: none;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--blue-dark);
  font-weight: 500;
  transition: all 0.2s;
}
.area-pill:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* ========= FOOTER ========= */
footer { background: var(--blue-deep); color: #c5d0e8; padding: 70px 0 0; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.foot-col h4 {
  color: var(--white);
  margin-bottom: 18px;
  font-size: 1.05rem;
  position: relative;
  padding-bottom: 10px;
}
.foot-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 3px;
  background: var(--blue-light);
}
.foot-col ul { list-style: none; }
.foot-col li { padding: 5px 0; font-size: 0.95rem; }
.foot-col a:hover { color: var(--white); }
.foot-col p { font-size: 0.95rem; margin-bottom: 10px; line-height: 1.6; }
.foot-logo-wrap { margin-bottom: 14px; }
.foot-logo-wrap img { max-width: 140px; display: block; }
.copyright {
  border-top: 1px solid #1c2e5e;
  padding: 22px 0;
  text-align: center;
  font-size: 0.88rem;
  color: #8694b4;
}

/* ========= RESPONSIVE ========= */
@media (max-width: 980px) {
  .menu-toggle { display: block; }
  nav ul {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    gap: 14px;
    align-items: flex-start;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  nav ul.open { display: flex; }
  .has-dropdown { width: 100%; }
  .has-dropdown:hover .dropdown { display: none; }
  .dropdown {
    position: static;
    box-shadow: none;
    border-top: none;
    padding: 8px 0 8px 16px;
    margin-top: 8px;
    border-left: 2px solid var(--blue);
    border-radius: 0;
    min-width: 0;
    width: 100%;
  }
  .dropdown a { padding: 10px 12px; }
  .has-dropdown.open .dropdown { display: block; }
  .feature-strip .container { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .topbar { padding: 8px 0; font-size: 0.78rem; }
  .topbar .container {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 4px;
  }
  .topbar-left span { display: inline-block; margin: 2px 8px; }
  .topbar-right a { margin: 0 8px; font-size: 0.85rem; }
}
@media (max-width: 600px) {
  .feature-strip .container, .foot-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .hero {
    min-height: 460px;
    padding: 48px 0;
  }
  .hero .tagline { display: none; }
  .hero h1 {
    font-size: 1.5rem;
    line-height: 1.15;
    margin-bottom: 12px;
  }
  .hero .subhead-desktop { display: none; }
  .hero .subhead-mobile {
    display: block;
    font-size: 1rem;
    margin-bottom: 26px;
    line-height: 1.4;
    font-weight: 500;
    opacity: 0.92;
  }
  .hero-buttons { gap: 12px; flex-direction: column; }
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-size: 0.95rem;
  }
  .hero-buttons .btn-call {
    padding: 20px 24px;
    font-size: 1.2rem;
  }
  .hero-buttons .btn-outline { display: none; }
  .logo-wrap img { height: 58px; }
}
