:root {
  --primary: #f24a2a;
  --primary-dark: #c43b1f;
  --accent: #1f2933;
  --accent-light: #f4f6f8;
  --text: #111827;
  --muted: #4b5563; /* improved contrast */
  --border: #e5e7eb;
  --max-width: 1160px;
}

/* RESET */

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

body {
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: #ffffff;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.top-social a:hover,
.social-links a:hover,
.circle-icon:hover,
.whatsapp-float:hover {
  text-decoration: none;
}

.top-phone-icon a:hover,
.top-email-icon a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* ---------------------------- */
/*          TOP BAR             */
/* ---------------------------- */

.top-bar {
  background: #0b1220;
  color: #e5e7eb;
  font-size: 0.85rem;
}

.top-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.45rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.top-bar-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hide icon versions on desktop */
.top-phone-icon,
.top-email-icon {
  display: none;
}

.top-social {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.top-social a {
  display: inline-flex;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  justify-content: center;
  align-items: center;
  color: #f9fafb;
  font-size: 0.85rem;
}

.top-social a:hover {
  background: var(--primary);
}

.top-whatsapp-icon a,
.social-btn.whatsapp {
  color: #25d366 !important;
}

.circle-icon .fa-whatsapp {
  color: #25d366;
}

/* ---------------------------- */
/*     MOBILE TOP BAR ICONS     */
/* ---------------------------- */

@media (max-width: 640px) {
  .top-phone-text,
  .top-email-text,
  .top-hours-text {
    display: none;
  }

  .top-phone-icon,
  .top-email-icon {
    display: inline-flex;
  }

  .top-bar-list {
    gap: 0.6rem;
  }

  .top-bar-list li a {
    display: inline-flex;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    color: #f9fafb;
  }

  .top-bar-list li a:hover {
    background: var(--primary);
  }

  .top-social a {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}

/* ---------------------------- */
/*        HEADER NAV            */
/* ---------------------------- */

header {
  border-bottom: 1px solid var(--border);
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 40;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-block img {
  height: 85px;
  width: auto;
}

.logo-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.4rem;
  align-items: center;
  font-size: 0.95rem;
}

nav a {
  color: #111827;
  font-weight: 600;
}

nav a:hover {
  color: var(--primary);
}

.btn-nav {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  border: none;
  font-size: 0.9rem;
}

.btn-nav:hover {
  background: var(--primary-dark);
  color: #ffffff;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle i {
  font-size: 1.8rem;
  color: #111827; /* or whatever colour your header uses */
  -webkit-text-fill-color: #111827; /* prevents iOS blue override */
}

.whatsapp-float {
  display: none;
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  z-index: 999;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

/* Mobile slide-down menu */

@media (max-width: 780px) {
  nav ul {
    position: absolute;
    top: 107px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 0 1rem;

    max-height: 0;
    opacity: 0;
    transform: translateY(-8px);
    overflow: hidden;
    pointer-events: none;

    transition: max-height 0.28s ease, opacity 0.2s ease, transform 0.28s ease;
  }

  nav ul.open {
    padding: 0.75rem 1rem 0.9rem;
    max-height: 320px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-toggle {
    display: block;
  }

  .btn-nav {
    width: 100%;
    text-align: center;
  }
}

/* ---------------------------- */
/*         PAGE LAYOUT          */
/* ---------------------------- */

main {
  scroll-behavior: smooth;
}

section {
  padding: 3.5rem 1.25rem;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 0.35rem;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 1.7rem;
}

.contact-section .section-subtitle {
  color: #e5e7eb;
}

/* ---------------------------- */
/*            HERO              */
/* ---------------------------- */

.hero {
  position: relative;
  padding: 4.5rem 1.25rem 4rem;
  color: #ffffff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      to right,
      rgba(15, 23, 42, 0.94),
      rgba(15, 23, 42, 0.8),
      rgba(15, 23, 42, 0.1)
    ),
    url("../images/hero-workshop.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr);
  gap: 2rem;
  align-items: center;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 0.8rem;
}

.hero-badge .dot {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(242,74,42,0.5);
}

.hero h1 {
  font-size: clamp(2.1rem, 3.5vw, 2.8rem);
  margin-bottom: 0.8rem;
}

.hero p.lead {
  font-size: 1.04rem;
  max-width: 36rem;
  margin-bottom: 1.5rem;
  color: #e5e7eb;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  font-size: 0.96rem;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  border-color: rgba(209, 213, 219, 0.85);
  color: #e5e7eb;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: #ffffff;
}

.hero-note {
  font-size: 0.9rem;
  color: #e5e7eb;
}

/* HERO MOBILE */

@media (max-width: 880px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero {
    padding-top: 4rem;
    padding-bottom: 3.2rem;
  }
}

/* ---------------------------- */
/*       CRASH INFO CARD        */
/* ---------------------------- */

.crash-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.6rem 1.4rem;
  text-align: center;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  color: #1f2937;
}

.crash-card img {
  max-width: 180px;
  margin: 0 auto 1rem;
}

.crash-card p {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.crash-card .btn-outline {
  display: inline-block;
  margin-top: 1.1rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 2px solid #111827;
  color: #111827;
}

/* ---------------------------- */
/*       WHY CHOOSE US          */
/* ---------------------------- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 1.6rem;
}

.feature-card {
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: #ffffff;
  text-align: center;
  transition: box-shadow 0.2s ease;
}

.feature-card:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary); /* solid brand colour */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 1rem;
}

.feature-icon i {
  font-size: 30px;
  color: #fff;
}

.icon-bg {
  color: var(--accent-light);
}

.icon-fg {
  color: var(--primary);
  font-size: 1.4rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  color: #111827;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------------------------- */
/*           SERVICES           */
/* ---------------------------- */

.band {
  background: var(--accent-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.3rem;
}

@media (max-width: 880px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.services-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 3rem;
  row-gap: 0.8rem;
  margin-top: 1.4rem;
  font-size: 0.98rem;
}

.services-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: #111827;
  line-height: 1.5;
}

.services-list li::before {
  content: "\f00c";              
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

@media (max-width: 880px) {
  .services-list {
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
  }
}

.pill-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.7rem;
}

.pill-row li {
  font-size: 0.82rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--muted);
}

.services-image {
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
}

/* ---------------------------- */
/*        ACCIDENT HELP         */
/* ---------------------------- */

/* ACCIDENT HELP SECTION */
.accident-help {
  background: #ffffff;
  padding-top: 1rem;
}

/* Redesigned steps */
.accident-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
  margin-top: 1.8rem;
}

/* Individual step card */
.step-card {
  background: linear-gradient(
    145deg,
    rgba(242, 74, 42, 0.18),
    rgba(242, 74, 42, 0.08)
  );
  border-radius: 1rem;
  padding: 1.4rem 1.2rem 1.6rem;
  border: 1px solid rgba(242, 74, 42, 0.28);
  position: relative;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

/* Number badge */
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px rgba(242, 74, 42, 0.35);
  margin-bottom: 0.7rem;
  flex-shrink: 0;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.step-icon {
  font-size: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
  margin: 0;
}

/* Title */
.step-card strong {
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.35rem;
  color: #111827;
}

/* Paragraph */
.step-card p {
  font-size: 0.92rem;
  color: #374151;
  line-height: 1.45;
}

.step-card .NCBig {
  font-weight: bold;
}

/* LEGAL RIGHT BOX */

.legal-box {
  margin-top: 1.6rem;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.2rem 1.4rem 1.3rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.legal-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary-dark);
  margin-bottom: 0.35rem;
}

.legal-label i {
  font-size: 1rem;
  color: var(--primary);
}

.legal-box p {
  margin: 0;
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.55;
}

/* ---------------------------- */
/*           GALLERY            */
/* ---------------------------- */

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.gallery-item {
  position: relative;
  border-radius: 0.85rem;
  overflow: hidden;
  background: #111827;
}

.gallery-item img {
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.5rem 0.7rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  color: #ffffff;
  font-size: 0.8rem;
}

/* ---------------------------- */
/*       LOCATION + REVIEWS     */
/* ---------------------------- */


.cards-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.8rem;
  align-items: flex-start;
  margin-top: 1.4rem;
}

@media (max-width: 880px) {
  .cards-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

.card {
  border-radius: 1.1rem;
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 1.3rem 1.35rem 1.5rem;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  color: #0f172a;
}

.card p {
  font-size: 0.93rem;
}

/* Map */

.map-wrap {
  margin-top: 0.9rem;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid #cbd5e1;
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.18);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

/* Reviews */

.reviews-list {
  list-style: none;
  margin: 0.7rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.review {
  border-radius: 0.8rem;
  padding: 0.65rem 0.7rem 0.7rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  font-size: 0.9rem;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.2rem;
}

.review-name {
  font-weight: 600;
  font-size: 0.86rem;
}

.review-stars {
  font-size: 0.8rem;
  color: #f59e0b;
  white-space: nowrap;
}

.review-text {
  font-size: 0.87rem;
  color: var(--muted);
}

.reviews-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.7rem;
}

/* ---------------------------- */
/*          CONTACT             */
/* ---------------------------- */

.contact-section {
  background: #111827;
  color: #f9fafb;
}

.contact-section .section-title {
  margin-bottom: 0.1rem;
}

.contact-section .section-subtitle {
  margin-bottom: 1.4rem;
  max-width: 40rem;
}

.contact-details {
  margin-bottom: 0.5rem;
}

.contact-details p {
  margin: 0.2rem 0;
}

.contact-details strong {
  color: #f9fafb;
}

.contact-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.2rem;
  padding: 0 1.25rem;
}

@media (max-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-details p {
  font-size: 0.94rem;
  margin-bottom: 0.45rem;
}

/* MOBILE contact icons */
.contact-icons-mobile {
  display: none;
  gap: 0.75rem;
}

.circle-icon {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #020617;
  color: #f9fafb;
  font-size: 1.3rem;
  position: relative;
}

.circle-icon span {
  position: absolute;
  bottom: -1.25rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #9ca3af;
}

/* Contact mobile rules */

@media (max-width: 640px) {
  .contact-line-phone,
  .contact-line-email {
    display: none;
  }

  .contact-icons-mobile {
    display: flex;
    justify-content: center; 
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .contact-details {
    padding-bottom: 2.2rem;
  }

  .contact-details p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: center;
  }
}


.social-links {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #374151;
  background: rgba(255,255,255,0.03);
  color: #f3f4f6;
  font-size: 0.92rem;
  transition: all 0.2s ease;
}

.social-btn i {
  font-size: 1rem;
}

.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  text-decoration: none;
}

input,
textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.6rem 0.7rem;
  border-radius: 0.45rem;
  border: 1px solid #4b5563;
  background: #020617;
  color: #f9fafb;
  margin-bottom: 0.6rem;
}

textarea {
  min-height: 110px;
}

/* CONTACT BUTTON */

.btn-contact {
  border: none;
  background: var(--primary);
  color: #ffffff;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.96rem;
}

.btn-contact:hover {
  background: var(--primary-dark);
}

/* ---------------------------- */
/*            FOOTER            */
/* ---------------------------- */

footer {
  background: #020617;
  color: #9ca3af;
  text-align: center;
  padding: 1.4rem 1rem 1.7rem;
  font-size: 0.78rem;
}

footer a {
  color: #e5e7eb;
}

@media (max-width: 768px) {
  .whatsapp-float {
    display: flex;
  }
}