*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #3a3f47;
  background: #fff;
}

a { text-decoration: none; color: inherit; }

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── TOP BAR ─── */
.topbar {
  background: #1e2a38;
  color: #b0b8c4;
  font-size: 13px;
  padding: 8px 0;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a { color: #b0b8c4; }
.topbar a:hover { color: #fff; }

/* ─── NAVBAR ─── */
.navbar {
  position: relative;
  z-index: 100;
  background: #0c1423;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
}
.nav-logo img {
  width: 300px;
  height: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.nav-cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #dc2626;
  padding: 14px 44px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(220,38,38,0.3);
}
.nav-cta:hover {
  background: #ef4444;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(220,38,38,0.4);
}

/* ─── DROPDOWN MEGA MENU ─── */
.nav-dropdown {
  position: relative;
}
.nav-chevron {
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-left: 2px;
  transition: transform .2s;
}
.nav-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}
.nav-mega {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #0c1423;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px 24px;
  min-width: 520px;
  gap: 16px;
  z-index: 200;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.nav-dropdown:hover .nav-mega {
  display: flex;
}
.mega-col {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mega-col a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 6px 12px;
  border-radius: 6px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.mega-col a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; transition: .3s; }
.burger.on span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.on span:nth-child(2) { opacity: 0; }
.burger.on span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mob-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  z-index: 10;
  background: rgba(10,18,28,0.95);
  backdrop-filter: blur(8px);
  padding: 16px 24px;
}
.mob-menu.open { display: block; }
.mob-menu a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mob-menu a:last-child { border: none; }
.mob-menu a:hover { color: #60a5fa; }

/* ─── HERO ─── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  background: #fff;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px 60px 0;
  margin-left: max(24px, calc((100vw - 1420px) / 2));
}
.hero-label {
  font-size: 14px;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.hero-left h1 {
  font-size: 3.4rem;
  font-weight: 900;
  color: #1a2740;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 15px;
  font-weight: 400;
  color: #666;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 420px;
}
/* ─── GLOW BUTTON (shared) ─── */
.glow-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(180deg, #4d9ef7 0%, #2563eb 40%, #1a4fd4 100%);
  padding: 6px 6px 6px 44px;
  border-radius: 50px;
  box-shadow: none;
  transition: transform .2s;
  align-self: flex-start;
}
.glow-btn:hover {
  box-shadow: none;
  transform: translateY(-2px);
}
.glow-btn:hover .btn-arrow {
  transform: rotate(-45deg);
}
.hero-right {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  margin: 24px;
  margin-left: 0;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-right-text {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.15;
  text-shadow: 0 3px 16px rgba(0,0,0,0.5);
}


/* ─── INFO BAR ─── */
.info-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px 24px;
  background: #fff;
}
.info-bar-strip {
  display: flex;
  align-items: center;
  gap: 48px;
  background: #1a3a8a;
  border-radius: 12px;
  padding: 22px 40px;
}
.ib-item strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}
.ib-item span {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  line-height: 1.4;
}
.ib-item a {
  color: #fff;
}
.info-bar-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.towing-img-btn {
  display: block;
  transition: transform .2s;
}
.towing-img-btn img {
  height: auto;
  width: 220px;
  display: block;
}
.towing-img-btn:hover {
  transform: translateY(-2px);
}
.ib-btn-lg {
  padding: 12px 12px 12px 36px;
  font-size: 15px;
}
.ib-btn-lg .btn-circle {
  width: 40px;
  height: 40px;
}
.ib-btn-lg .btn-arrow {
  width: 18px;
  height: 18px;
}
.ib-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(180deg, #4d9ef7 0%, #2563eb 40%, #1a4fd4 100%);
  padding: 6px 6px 6px 24px;
  border-radius: 50px;
  transition: transform .2s;
  white-space: nowrap;
}
.ib-btn:hover {
  transform: translateY(-2px);
}
.ib-btn .btn-circle {
  width: 32px;
  height: 32px;
}
.ib-btn .btn-arrow {
  width: 14px;
  height: 14px;
}

@media (max-width: 768px) {
  .info-bar { flex-direction: column; padding: 16px; }
  .info-bar-strip { margin-left: 0; padding-left: 24px; flex-direction: column; gap: 16px; border-radius: 12px; }
  .ib-btn-lg { width: 100%; justify-content: space-between; }
  .ib-btn { width: 100%; justify-content: space-between; }
}

/* ─── FEATURES (3 photo cards) ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px;
  background: #fff;
}
.feature-card {
  position: relative;
  overflow: hidden;
  display: block;
  background: #111820;
  border-radius: 16px;
}
.feature-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s;
}
.feature-card:hover img {
  transform: scale(1.05);
}
.feature-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  padding: 60px 24px 20px;
}
.feature-overlay h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 4px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
.feature-overlay p {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* ─── SERVICE AREAS ─── */
.svc-areas {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 300px;
  max-width: 1420px;
  margin: 0 auto;
  padding: 60px 0;
  background: #fff;
}
.svc-left {
  display: flex;
  flex-direction: column;
  margin-left: -80px;
}
.svc-label {
  font-size: 22px;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
}
.svc-title {
  font-size: 3.8rem;
  font-weight: 900;
  color: #0c1423;
  line-height: 1.05;
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 24px;
}
.svc-right-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.svc-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-left: 0;
}
.btn-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}
.btn-arrow {
  width: 18px;
  height: 18px;
  color: #2563eb;
  transform: rotate(0deg);
  transition: transform .3s ease;
}
.svc-areas-btn:hover .btn-arrow {
  transform: rotate(-45deg);
}
.svc-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s, transform .15s;
}
.svc-arrow svg {
  width: 20px;
  height: 20px;
  color: #3a3f47;
}
.svc-arrow:hover {
  border-color: #2563eb;
  background: #f0f4ff;
  transform: scale(1.08);
}
.svc-arrow:hover svg {
  color: #2563eb;
}
.svc-area-card img {
  transition: transform .4s, opacity .4s;
}
.svc-area-card.fade img {
  opacity: 0;
  transform: scale(1.06);
}
.svc-area-card.fade .svc-area-info {
  opacity: 0;
}
.svc-area-info {
  transition: opacity .4s;
}
.svc-area-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/2;
  background: #1a2740;
}
.svc-area-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s, opacity .4s;
}
.svc-area-card:hover img {
  transform: scale(1.06);
}
.svc-area-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px 24px;
}
.svc-area-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.svc-area-info span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* ─── SERVICES ─── */
.services {
  padding: 40px 0;
  background: #f7f8fa;
}
.services h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e2a38;
  margin-bottom: 24px;
}
.svc-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-item {
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 6px;
  padding: 28px 22px;
  transition: transform .2s, box-shadow .2s;
}
.svc-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
}
.svc-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1e2a38;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.svc-item h3 svg {
  width: 20px;
  height: 20px;
  color: #2563eb;
  flex-shrink: 0;
}
.svc-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.55;
}
.svc-details {
  list-style: none;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #eee;
}
.svc-details li {
  font-size: 13px;
  color: #666;
  padding: 3px 0 3px 16px;
  position: relative;
}
.svc-details li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 700;
  font-size: 12px;
}

/* ─── WHY CHOOSE US ─── */
.why-section {
  padding: 40px 0;
  border-bottom: 1px solid #eee;
}
.why-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e2a38;
  margin-bottom: 24px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-item {
  background: #f7f8fa;
  border: 1px solid #e8eaed;
  border-radius: 6px;
  padding: 24px 20px;
  transition: transform .2s, box-shadow .2s;
}
.why-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
}
.why-icon {
  color: #2563eb;
  font-size: 14px;
  margin-bottom: 8px;
}
.why-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1e2a38;
  margin-bottom: 6px;
}
.why-item p {
  font-size: 13px;
  color: #666;
  line-height: 1.55;
}

/* ─── WE WORK FOR YOU ─── */
.wework {
  padding: 60px 0;
  background: #f7f8fa;
}
.wework .wrap {
  max-width: 1420px;
  padding: 0;
}
.wework-row {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
}
.wework-label {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.wework-text h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #1e2a38;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.wework-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}
.wework-text .glow-btn {
  margin-top: 12px;
}
.wework-img {
  border-radius: 12px;
  overflow: hidden;
}
.wework-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── CTA BAND ─── */
.cta-band {
  background: #1e2a38;
  padding: 36px 0;
}
.cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.cta-band p {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
}
.cta-band span {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  font-weight: 400;
}
.cta-phone {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  padding: 10px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  transition: background .2s;
}
.cta-phone:hover { background: #1d4ed8; }

/* ─── TESTIMONIALS ─── */
.testimonials {
  padding: 60px 0;
  background: #fff;
}
.testimonials .wrap {
  max-width: 1420px;
}
.test-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}
.test-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.testimonials h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #1e2a38;
  text-transform: uppercase;
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.test-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.test-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.test-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
  padding: 0;
}
.test-dot.active {
  background: #2563eb;
  transform: scale(1.2);
}
.test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.test-stars {
  font-size: 22px;
  color: #00b4d8;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.test-text {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.test-readmore {
  font-size: 13px;
  font-weight: 700;
  color: #00b4d8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  cursor: pointer;
}
.test-readmore:hover {
  color: #0090b0;
}
.test-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #eee;
}
.test-avatar {
  display: none;
}
.test-author {
  font-size: 14px;
  font-weight: 700;
  color: #1e2a38;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.test-location {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
}
/* Review Form */
.review-form-wrap {
  margin-top: 48px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 32px;
}
.review-form-wrap h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.review-form label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}
.review-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 14px;
}
.review-form input,
.review-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  color: #fff;
  background: rgba(255,255,255,0.06);
  margin-bottom: 14px;
  outline: none;
  transition: border-color .2s;
}
.review-form input:focus,
.review-form textarea:focus {
  border-color: #2563eb;
}
.review-form textarea {
  min-height: 100px;
  resize: vertical;
}
.review-form button {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.review-form button:hover {
  background: #1d4ed8;
}
.review-ok {
  display: none;
  background: rgba(37,99,235,0.15);
  color: #60a5fa;
  padding: 12px 16px;
  border-radius: 6px;
  margin-top: 12px;
  font-size: 14px;
}
.review-ok.show {
  display: block;
}
/* Review Page */
.review-page {
  padding: 48px 0;
}
.review-page-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.review-page-form h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e2a38;
  margin-bottom: 8px;
}
.review-page-form > p {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}
.review-page .review-form label {
  color: #555;
}
.review-page .review-form input,
.review-page .review-form textarea,
.review-page .review-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  color: #1e2a38;
  background: #fff;
  margin-bottom: 14px;
  outline: none;
  transition: border-color .2s;
}
.review-page .review-form input:focus,
.review-page .review-form textarea:focus,
.review-page .review-form select:focus {
  border-color: #2563eb;
}
.review-page .review-form textarea {
  min-height: 120px;
  resize: vertical;
}
.review-page .review-ok {
  background: #e8f5e9;
  color: #2e7d32;
}
.star-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}
.star-rating span {
  font-size: 28px;
  color: #d1d5db;
  cursor: pointer;
  transition: color .15s;
}
.star-rating span.active {
  color: #f59e0b;
}

/* ─── FAQ ─── */
.faq-section {
  padding: 60px 0;
  background: #f7f8fa;
  text-align: center;
}
.faq-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.faq-section h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #1e2a38;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 10px;
  margin-bottom: 12px;
  cursor: pointer;
  overflow: hidden;
  transition: box-shadow .2s;
  text-align: left;
}
.faq-item:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
}
.faq-q h4 {
  font-size: 15px;
  font-weight: 600;
  color: #1e2a38;
  margin: 0;
}
.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: #2563eb;
  transition: transform .3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item.open .faq-a {
  max-height: 200px;
}
.faq-a p {
  padding: 0 24px 18px;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}
.faq-a a {
  color: #2563eb;
}

/* ─── TRUST STRIP ─── */
.trust-strip {
  padding: 48px 0;
  background: #fff;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  text-align: center;
  padding: 24px 16px;
}
.trust-icon {
  margin-bottom: 12px;
}
.trust-icon svg {
  width: 36px;
  height: 36px;
}
.trust-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1e2a38;
  margin-bottom: 8px;
}
.trust-item p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* ─── CONTACT ─── */
.contact { padding: 40px 0; }
.contact h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e2a38;
  margin-bottom: 24px;
}
.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  margin-bottom: 4px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  color: #1e2a38;
  margin-bottom: 14px;
  outline: none;
  transition: border-color .2s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: #2563eb; }
.contact-form textarea { min-height: 100px; resize: vertical; }
.contact-form button {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 11px 32px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s;
}
.contact-form button:hover { background: #1d4ed8; }
.form-ok {
  display: none;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 12px 16px;
  border-radius: 4px;
  margin-top: 10px;
  font-size: 14px;
}
.form-ok.show { display: block; }

.contact-info h3 {
  font-size: 15px;
  font-weight: 600;
  color: #1e2a38;
  margin-bottom: 16px;
}
.ci-row {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 14px;
  color: #555;
}
.ci-row strong {
  color: #1e2a38;
  font-weight: 500;
  min-width: 60px;
}
.ci-row a { color: #2563eb; }
.ci-row a:hover { text-decoration: underline; }
.contact-map {
  margin-top: 12px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

/* ─── FOOTER ─── */
.ftr {
  background: #0c1423;
  color: #8896a7;
  padding: 48px 0 0;
  font-size: 13px;
}
.ftr-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ftr-logo {
  width: 180px;
  height: auto;
  margin-bottom: 14px;
  display: block;
}
.ftr-col p {
  font-size: 13px;
  color: #8896a7;
  line-height: 1.6;
  margin-bottom: 6px;
}
.ftr-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.ftr-col a {
  display: block;
  font-size: 13px;
  color: #8896a7;
  padding: 3px 0;
  transition: color .2s;
}
.ftr-col a:hover {
  color: #fff;
}
.ftr-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: #5a6778;
}
.ftr a { color: #8896a7; }
.ftr a:hover { color: #fff; }

/* ─── ABOUT PAGE ─── */
.about-hero {
  background: #0c1423;
  padding: 60px 0;
  text-align: center;
}
.about-hero .hero-label {
  display: block;
  margin-bottom: 12px;
}
.about-hero h1 {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.about-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
}
.about-content {
  padding: 48px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.about-photo {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 32px;
  max-height: 360px;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-text h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e2a38;
  margin: 24px 0 12px;
}
.about-text h2:first-child {
  margin-top: 0;
}
.about-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}
.about-list {
  list-style: none;
  padding: 0;
}
.about-list li {
  font-size: 15px;
  color: #555;
  padding: 6px 0 6px 20px;
  position: relative;
}
.about-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 700;
}
.about-info-card {
  background: #f7f8fa;
  border: 1px solid #e8eaed;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 20px;
}
.about-info-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: #1e2a38;
  margin-bottom: 16px;
}
/* ─── TIRES PAGE ─── */
.tire-search {
  padding: 48px 0;
}
.tire-search-box {
  background: #f7f8fa;
  border: 1px solid #e8eaed;
  border-radius: 12px;
  padding: 36px 40px;
}
.tire-search-box h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e2a38;
  margin-bottom: 8px;
}
.tire-search-box > p {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}
.tire-search-box a {
  color: #2563eb;
}
.tire-form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tire-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  margin-bottom: 4px;
}
.tire-field select,
.tire-field input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  color: #1e2a38;
  background: #fff;
}
.tire-field select:focus,
.tire-field input:focus {
  border-color: #2563eb;
  outline: none;
}
.tire-divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
}
.tire-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #d1d5db;
}
.tire-divider span {
  background: #f7f8fa;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 700;
  color: #999;
  position: relative;
}
.tire-submit {
  margin-top: 20px;
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 12px 36px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.tire-submit:hover {
  background: #1d4ed8;
}
.tire-result {
  display: none;
  margin-top: 20px;
  background: #e8f5e9;
  border-radius: 8px;
  padding: 16px 20px;
}
.tire-result p {
  font-size: 14px;
  color: #2e7d32;
  line-height: 1.6;
}
.tire-result a {
  color: #2563eb;
}
.tire-brands {
  padding: 48px 0;
  background: #f7f8fa;
}
.tire-brands h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e2a38;
  margin-bottom: 24px;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.brand-item {
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 8px;
  padding: 20px;
  font-size: 15px;
  font-weight: 600;
  color: #1e2a38;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.brand-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
}
.brand-note {
  margin-top: 20px;
  font-size: 14px;
  color: #666;
}
.tire-services {
  padding: 48px 0;
}
.tire-services h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e2a38;
  margin-bottom: 24px;
}
.tire-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tire-svc-card {
  background: #f7f8fa;
  border: 1px solid #e8eaed;
  border-radius: 8px;
  padding: 24px;
  transition: transform .2s, box-shadow .2s;
}
.tire-svc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
}
.tire-svc-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: #1e2a38;
  margin-bottom: 8px;
}
.tire-svc-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
.tire-cta {
  padding: 48px 0;
  background: #f7f8fa;
}
.tire-cta h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1e2a38;
  margin-bottom: 12px;
}
.tire-cta p {
  font-size: 15px;
  color: #666;
}

/* ─── TOWING INTRO ─── */
.towing-intro {
  padding: 48px 0;
}
.towing-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: stretch;
}
.towing-img {
  border-radius: 12px;
  overflow: hidden;
}
.towing-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.towing-card {
  background: #f2f3f5;
  border-radius: 12px;
  padding: 36px 40px;
}
.towing-card h2 {
  font-size: 1.6rem;
  font-weight: 900;
  color: #1e2a38;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.towing-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 14px;
}
.towing-card a {
  color: #2563eb;
}

.towing-credentials {
  margin: 20px 0;
}
.credentials-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.credentials-table td {
  padding: 10px 16px;
  border-bottom: 1px solid #e8eaed;
  color: #555;
}
.credentials-table td:first-child {
  color: #1e2a38;
  width: 160px;
}
.credentials-table a {
  color: #2563eb;
}
.about-sidebar .glow-btn {
  width: 100%;
  justify-content: center;
}

/* ─── 404 PAGE ─── */
.page-404 {
  padding: 100px 0;
  text-align: center;
}
.err-code {
  font-size: 8rem;
  font-weight: 900;
  color: #e8eaed;
  line-height: 1;
  margin-bottom: 8px;
}
.page-404 h1 {
  font-size: 2rem;
  font-weight: 900;
  color: #1e2a38;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.page-404 p {
  font-size: 15px;
  color: #666;
  margin-bottom: 32px;
}
.err-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── BACK TO TOP ─── */
.back-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #2563eb;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,99,235,0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s, transform .2s;
  z-index: 90;
}
.back-top.show {
  opacity: 1;
  visibility: visible;
}
.back-top:hover {
  transform: translateY(-3px);
  background: #1d4ed8;
}
.back-top svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .topbar .wrap > span:last-child { display: none; }
  .hdr-nav, .hdr-phone { display: none; }
  .burger { display: block; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 40px 24px; margin-left: 0; }
  .hero-left h1 { font-size: 2rem; }
  .hero-right { height: 280px; border-radius: 16px; margin: 0 16px 16px; }
  .hero-right-text { font-size: 1.8rem; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: block; }
  .nav-logo img { width: 180px; }
  .hero-body h1 { font-size: 1.6rem; }
  .hero-actions { flex-direction: column; align-items: stretch; text-align: center; }
  .hero-phone-btn { justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { height: 240px; }
  .svc-areas { grid-template-columns: 1fr; gap: 24px; }
  .svc-left { text-align: center; align-items: center; }
  .svc-title { font-size: 1.8rem; }
  .svc-right { grid-template-columns: 1fr; }
  .svc-list { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .test-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .review-row { grid-template-columns: 1fr; }
  .wework-row { grid-template-columns: 1fr; }
  .wework-img { height: 280px; }
  .cta-band .wrap { flex-direction: column; text-align: center; }
  .contact-row { grid-template-columns: 1fr; }
  .ftr-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .ftr-logo { width: 140px; }
  .towing-row { grid-template-columns: 1fr; }
  .towing-img { height: 280px; }
  .towing-card { padding: 24px; }
  .about-grid { grid-template-columns: 1fr; }
}
