:root {
  --primary: #111827;
  --secondary: #1F2937;
  --accent: #E63B2E;
  --accent-dark: #C92D22;
  --background: #FFFFFF;
  --surface: #FFFFFF;
  --surface-soft: #F8FAFC;
  --text: #111827;
  --text-muted: #64748B;
  --border: #E5E7EB;
  --shadow: 0 24px 48px rgba(17, 24, 39, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--background);
  color: var(--text);
  overflow-x: hidden;
  padding-top: 72px;
}

img,
picture,
svg,
iframe {
  display: block;
  max-width: 100%;
}

button,
a,
input,
textarea {
  font: inherit;
}

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

ul {
  list-style: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section-padding {
  padding: 100px 0;
}

.section-heading {
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 56px;
  text-align: center;
}

.section-label {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
}

.section-description {
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 1rem;
}

.btn-nav,
.btn-primary,
.btn-accent,
.btn-secondary {
  border: none;
  border-radius: 12px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-primary:hover,
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 24px rgba(201, 45, 34, 0.22);
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--surface-soft);
}

/* ============================================
   NAVBAR — Single source of truth
   ============================================ */

.site-header {
  width: 100%;
  background: linear-gradient(90deg, #07111F 0%, #0B1424 100%);
  border-bottom: 2px solid #E53935;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  position: sticky;
  top: 0;
  z-index: 10000;
}

.nav-container {
  width: min(1600px, calc(100% - 48px));
  height: 110px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

/* ---- BRAND / LOGO ---- */
.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  text-decoration: none;
}

.brand::after,
.brand::before {
  content: none !important;
  display: none !important;
}

.brand img {
  width: 160px;
  height: auto;
  object-fit: contain;
  object-position: left center;
  display: block;
}

/* ---- NAV RIGHT WRAPPER ---- */
.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-shrink: 0;
}

/* ---- DESKTOP NAV ---- */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 42px;
}

.desktop-nav a,
.nav-link {
  color: #E5E7EB;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  transition: color 0.2s ease;
  padding: 0;
  background: none !important;
  border: none !important;
}

.desktop-nav a::after,
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #EF3E33;
  border-radius: 10px;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.desktop-nav a:hover,
.nav-link:hover {
  color: #FFFFFF;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after,
.nav-link:hover::after,
.nav-link.active::after {
  width: 28px;
}

.desktop-nav a.active,
.nav-link.active {
  color: #FFFFFF;
  font-weight: 700;
}

/* ---- WHATSAPP BUTTON ---- */
.btn-whatsapp,
.nav-whatsapp {
  background: #25D366;
  color: #FFFFFF !important;
  height: 54px;
  padding: 0 26px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.24);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-whatsapp:hover,
.nav-whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.32);
  color: #FFFFFF !important;
}

/* ---- HAMBURGER (mobile only) ---- */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 10001;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #FFFFFF;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.mobile-menu-toggle span:nth-child(1) { top: 0; }
.mobile-menu-toggle span:nth-child(2) { top: 9px; }
.mobile-menu-toggle span:nth-child(3) { top: 18px; }

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ---- MOBILE MENU ---- */
.mobile-nav {
  display: none;
}

/* ============================================
   MOBILE NAVBAR (<= 768px)
   ============================================ */
@media (max-width: 768px) {
  .nav-container {
    height: 78px;
    width: calc(100% - 32px);
    padding: 0 16px;
  }

  .brand {
    flex-shrink: 0;
  }

  .brand img {
    width: 110px;
    height: auto;
    object-position: left center;
  }

  /* hide desktop nav and CTA on mobile */
  .desktop-nav,
  .nav-right > .btn-whatsapp,
  .nav-right > .nav-whatsapp {
    display: none;
  }

  /* show hamburger */
  .mobile-menu-toggle {
    display: block;
  }

  /* mobile collapse menu */
  .mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #07111F;
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all .25s ease;
    z-index: 9999;
  }

  .mobile-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-nav a.nav-link {
    display: block;
    padding: 14px 20px !important;
    color: #E5E7EB !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .mobile-nav a.nav-link:hover,
  .mobile-nav a.nav-link.active {
    background: rgba(239,62,51,0.08) !important;
    color: #FFFFFF !important;
  }

  .mobile-nav a.mobile-chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 12px;
    margin-top: 10px;
    font-weight: 700;
    text-decoration: none;
  }
}

/* Tablet (769–991px) */
@media (min-width: 769px) and (max-width: 991px) {
  .nav-container { height: 90px; }
  .brand img { width: 130px; height: auto; }
  .desktop-nav { gap: 28px; }
  .desktop-nav a, .nav-link { font-size: 14px; }
}

/* ---- Bootstrap override: prevent Bootstrap .nav-link defaults from conflicting ---- */
.site-header .nav-link {
  padding: 0 !important;
  background: none !important;
  border: none !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #E5E7EB !important;
}
.site-header .nav-link.active,
.site-header .nav-link:hover {
  color: #FFFFFF !important;
  background: none !important;
}

.hero {

  padding: 70px 0 60px;
}

.hero .container {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.hero-content {
  padding-top: 10px;
  max-width: 720px;
}

.hero-title {
  font-size: clamp(52px, 4.4vw, 76px);
  line-height: .98;
  letter-spacing: -2px;
  max-width: 720px;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 580px;
  justify-self: end;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.16);
}

.hero-image {
  width: 100%;
  height: 470px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-fast-response {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: rgba(17, 24, 39, 0.92);
  color: #fff;
  padding: 13px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.hero-fast-response span {
  display: block;
  font-weight: 700;
}

.hero-fast-response small {
  display: block;
  margin-top: 2px;
  color: #CBD5E1;
}

/* Legacy duplicate navbar block removed — see consolidated navbar CSS above */


.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: #F8FAFC;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.hero-title {
  font-size: clamp(48px, 4.5vw, 72px);
  line-height: 1.02;
  max-width: 650px;
}

.hero-text {
  margin-top: 1.8rem;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 600px;
}

.hero-points {
  display: grid;
  gap: 16px;
  margin-top: 2rem;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--secondary);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 2.4rem;
}

.hero-small-text {
  margin-top: 1.4rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 2rem;
}

.hero-trust-grid article {
  padding: 1.3rem 1.35rem;
  border-radius: 20px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: #FFFFFF;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
}

.hero-trust-grid strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.hero-trust-grid p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}



.info-card,
.service-card,
.choose-item,
.stat-card,
.testimonial-card,
.cta-card,
.booking-card,
.location-card {
  background: var(--surface);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.info-card,
.service-card,
.choose-item,
.stat-card,
.testimonial-card,
.cta-card,
.booking-card,
.location-card {
  border: 1px solid var(--border);
}

.info-card {
  padding: 2rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
  min-width: 280px;
}

.info-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}

.problem-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: visible;
  margin-top: 2rem;
}

.problem-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, calc((100% - 48px) / 3));
  gap: 24px;
  overflow-x: auto;
  padding: 0 3rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;       /* Firefox */
  -ms-overflow-style: none;    /* IE/Edge */
}

.problem-slider::-webkit-scrollbar {
  display: none;               /* Chrome/Safari */
}

.info-card {
  scroll-snap-align: start;
  padding: 2rem 28px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #FFFFFF;
  color: #111827;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.10);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: all 0.2s ease;
}

.slider-btn:hover {
  background: #ef3b32;
  color: #ffffff;
  border-color: #ef3b32;
  transform: translateY(-50%) scale(1.05);
}

.slider-prev {
  left: -12px;
}

.slider-next {
  right: -12px;
  background: #EF3E33;
  color: #ffffff;
  border: none;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.slider-btn svg {
  width: 21px;
  height: 21px;
  display: block;
}

.slider-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 1.6rem;
}

.slider-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #CBD5E1;
  opacity: 0.55;
  transition: opacity 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--accent);
  opacity: 1;
  transform: scale(1.1);
}

.info-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(239, 59, 44, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.info-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card:hover .info-icon {
  background: var(--accent);
  color: #ffffff;
}

.info-card h3 {
  margin-bottom: 0.85rem;
}

.info-card p {
  color: var(--text-muted);
  line-height: 1.85;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-card-body {
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.service-card-body p {
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-muted);
}

.service-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.service-card-top i {
  font-size: 1.4rem;
  color: var(--accent);
}

.service-card-body h3 {
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--text);
}

.service-card-body p {
  color: var(--text-muted);
  line-height: 1.8;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 1.2rem;
}

.services-actions {
  margin-top: 2rem;
  text-align: center;
}

.about-section {
  padding: 80px 0;
  background: #f8fafc;
}

.about-section .container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-header {
  max-width: 650px;
  margin: 0 auto 45px;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.about-main-card {
  background: #111827;
  color: #ffffff;
  border-radius: 22px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
}

.brand-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: #ef3e33;
  border-radius: 18px;
  color: #ffffff;
}

.brand-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
}

.about-icon {
  width: 62px;
  height: 62px;
  min-width: 62px;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(239, 62, 51, 0.12);
  color: #ef3e33;
}

.about-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.about-main-card h3 {
  font-size: 30px;
  margin: 0;
}

.about-main-card p {
  color: #CBD5E1;
  line-height: 1.7;
  margin: 0;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 16px 18px;
  border-radius: 14px;
}

.icon-box {
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(239, 62, 51, 0.14);
}

.icon-box svg {
  width: 22px;
  height: 22px;
  color: #ef3e33;
  stroke-width: 2;
  stroke: currentColor;
  fill: none;
}

.highlight-copy {
  display: flex;
  flex-direction: column;
}

.highlight-copy strong {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
}

.highlight-copy span {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-top: 3px;
}

.about-slogan {
  margin-top: auto;
  padding-top: 30px;
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
}

.about-values {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 20px;
}

.vision-card,
.mission-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 30px;
}

.vision-card {
  display: flex;
  flex-direction: column;
}

.vision-header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.vision-icon {
  width: 62px;
  height: 62px;
  min-width: 62px;
  min-height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #fee2e2;
  color: #ef3e33;
  flex-shrink: 0;
}

.vision-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
}

.value-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #fee2e2;
  color: #ef3e33;
}

.value-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
}

.vision-card span,
.mission-header span {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.14em;
}

.vision-card h3,
.mission-header h3 {
  margin: 0.75rem 0 0.75rem;
  font-size: 1.45rem;
}

.vision-description {
  margin: 10px 0 0 82px; /* 62px icon + 20px gap */
  color: var(--text-muted);
  line-height: 1.8;
}

.mission-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mission-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.mission-item {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.mission-item svg,
.highlight-icon svg {
  width: 17px;
  height: 17px;
  color: #ef3e33;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

.mission-item i {
  display: none;
}

.highlight-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
}

.highlight-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
}

.highlight-item strong,
.highlight-item span {
  margin: 0;
}

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

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

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .about-highlights {
    grid-template-columns: 1fr 1fr;
  }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 1300;
}

.modal-overlay.active {
  display: flex;
}

.modal-panel {
  width: 100%;
  max-width: 980px;
  max-height: min(90vh, 860px);
  overflow-y: auto;
  background: var(--surface);
  border-radius: 30px;
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--border);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.modal-close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

.modal-panel h3 {
  margin-bottom: 1.5rem;
}

.modal-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-item {
  display: grid;
  gap: 0.9rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 22px;
}

.service-modal-icon,
.service-item i {
  width: 44px;
  height: 44px;
  display: grid;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(230, 59, 46, 0.12);
  color: var(--accent);
}

.service-modal-icon svg,
.service-item i svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
}

.service-item h4 {
  margin: 0;
}

.service-item p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.why-section {
  background: #111827;
  padding: 80px 0;
  color: #FFFFFF;
}

.why-header {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.why-header .section-label {
  color: #EF3E33;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-flex;
}

.why-header h2 {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.why-header p {
  max-width: 640px;
  margin: 0 auto;
  color: #CBD5E1;
  line-height: 1.8;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 26px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
}

.why-icon,
.why-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 12px;
  background: rgba(239, 62, 51, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #EF3E33;
}

.why-icon svg,
.why-card-icon svg {
  width: 23px;
  height: 23px;
  color: #EF3E33;
  stroke-width: 2;
  stroke: currentColor;
  fill: none;
}

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.why-card p {
  margin: 0;
  color: #CBD5E1;
  font-size: 14px;
  line-height: 1.65;
  flex: 1;
}

.motor-types {
  margin-top: 24px;
  padding: 22px 26px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.motor-type-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.motor-type {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #FFFFFF;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.motor-type i {
  font-size: 0.9rem;
}

@media (max-width: 1199px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .why-section {
    padding: 70px 0;
  }

  .why-header h2 {
    font-size: 32px;
  }

  .motor-types {
    justify-content: center;
  }
}

.process-section {
  background: #F8FAFC;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  padding-top: 24px;
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
}

.process-card {
  position: relative;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 46px 22px 26px;
  text-align: center;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.10);
}

.process-top {
  position: relative;
  width: 64px;
  height: 82px;
  margin: -42px auto 22px;
}

.process-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: #EF3E33;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 7px 18px rgba(239, 62, 51, 0.28);
  z-index: 2;
}

.process-icon {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #FDE8E6;
  color: #EF3E33;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  z-index: 1;
}

.process-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

.process-card p {
  margin: 0;
  color: #64748B;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .process-card {
    min-height: auto;
  }
}



.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.12);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.testimonials-section {
  background: var(--background);
  padding: 70px 0 80px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  color: #EF3E33;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.7;
  color: #64748B;
  margin: 0 0 24px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FDE8E6;
  color: #EF3E33;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.testimonial-footer h5 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}

.testimonial-footer span {
  display: block;
  font-size: 13px;
  color: #64748B;
}

@media (max-width: 991px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.cta-section .cta-card {
  padding: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #FFFFFF;
  text-align: center;
}

.cta-section .cta-card p {
  margin-bottom: 1.7rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.9;
}

.booking-section {
  background: #F8FAFC;
  padding: 80px 0;
}

.booking-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
}

.booking-form-side {
  padding: 48px;
  background: #ffffff;
}

.section-label {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.booking-form-side h2 {
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  line-height: 1.05;
  max-width: 520px;
  margin-bottom: 1rem;
}

.booking-subtitle {
  margin-top: 0;
  margin-bottom: 32px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 520px;
}

.booking-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: grid;
  gap: 10px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  margin-bottom: 0;
  font-weight: 600;
  color: var(--primary);
}

.form-control {
  width: 100%;
  min-height: 50px;
  border-radius: 12px;
  border: 1px solid #DDE3EA;
  background: #F8FAFC;
  padding: 0 15px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: #EF3E33;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(239, 62, 51, 0.08);
}

.booking-form textarea {
  min-height: 110px;
  padding: 14px 15px;
  resize: vertical;
}

.btn-booking-submit {
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 12px;
  background: #25D366;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-booking-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.22);
}

.booking-contact-side {
  background: #111827;
  color: #ffffff;
  padding: 48px 38px;
  display: flex;
  flex-direction: column;
}

.contact-side-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-side-header h3 {
  margin: 0 0 6px;
  font-size: 1.5rem;
}

.contact-side-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.contact-badge-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #86EFAC;
  border: 1px solid rgba(34, 197, 94, 0.25);
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-dark-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.contact-dark-item.last-item {
  border-bottom: none;
}

.contact-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-whatsapp {
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
}

.contact-icon-whatsapp svg {
  width: 22px;
  height: 22px;
  color: #25D366;
  fill: currentColor;
}

.contact-icon-clock {
  background: rgba(239, 62, 51, 0.12);
  color: #EF3E33;
}

.contact-icon-clock svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.contact-dark-item strong {
  display: block;
  font-weight: 700;
  color: #ffffff;
}

.contact-dark-item span {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-cta .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.contact-cta .btn-icon-light i,
.contact-cta .btn-icon-dark i {
  font-size: 18px;
}

.contact-cta .btn-icon-light {
  color: #ffffff;
}

.contact-cta .btn-icon-dark {
  color: #25D366;
}

.contact-cta .btn-contact-primary i,
.contact-cta .btn-contact-secondary i {
  display: block;
}

.contact-trust {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.contact-cta {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.btn-contact-primary,
.btn-contact-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 52px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
}

.btn-contact-primary {
  background: #25D366;
  color: #ffffff;
  border: none;
}

.btn-contact-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

@media (max-width: 1000px) {
  .booking-wrapper {
    grid-template-columns: 1fr;
  }

  .booking-form-side,
  .booking-contact-side {
    padding: 32px;
  }
}

@media (max-width: 767px) {
  .booking-wrapper {
    grid-template-columns: 1fr;
  }

  .booking-form-side,
  .booking-contact-side {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

.contact-item strong {
  display: block;
  font-weight: 700;
  color: #111827;
}

.contact-item span {
  display: block;
  color: #64748B;
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-actions {
  margin-top: 22px;
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.contact-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 14px;
}

.contact-actions .btn-primary {
  background: #22C55E;
  color: #FFFFFF;
  border: none;
}

.contact-actions .btn-secondary {
  background: #FFFFFF;
  color: #111827;
  border: 1px solid #dbe2ea;
}

@media (max-width: 991px) {
  .booking-container {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }
}

.location-info strong {
  color: var(--primary);
}

.location-info span a {
  color: var(--accent);
}

.map-frame {
  margin-top: 1.75rem;
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
}

.footer {
  background: #0B1220;
  color: #CBD5E1;
  padding: 38px 0 16px;
  min-height: 0;
  height: auto;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 36px;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
  align-items: start;
}

.footer-logo {
  display: inline-block;
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
  line-height: 1.2;
  text-transform: none;
}

.footer-column h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
  color: #FFFFFF;
}

.footer h5,
.footer p,
.footer a {
  color: #CBD5E1;
}

.footer-description {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
  max-width: 280px;
  font-size: 14px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.35;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-contact-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-item > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: #EF3E33;
  flex-shrink: 0;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.4;
}

.contact-item p a {
  color: rgba(255, 255, 255, 0.90);
  text-decoration: none;
}

.contact-item p a:hover {
  color: #ffffff;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 0;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: #ffffff;
}

.social-icon i {
  font-size: 18px;
}

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 50px 20px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-description {
    max-width: 100%;
  }
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 100px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #111827;
  color: #FFFFFF;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(17, 23, 39, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.back-to-top:hover {
  transform: scale(1.05);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  display: block;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.32);
  z-index: 1200;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  display: block;
}

@media (max-width: 1199px) {
  .hero-grid,
  .choose-grid,
  .services-grid,
  .stats-grid,
  .booking-grid {
    gap: 28px;
  }

  .problem-slider {
    grid-auto-columns: minmax(280px, calc((100% - 32px) / 2));
  }
}

@media (max-width: 767px) {
  .problem-slider {
    grid-auto-columns: minmax(280px, 100%);
  }
}

@media (max-width: 991px) {
  /* navbar handled by consolidated CSS above */
  body {
    padding-top: 0;
  }

  .choose-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-text,
  .section-description {
    max-width: 100%;
  }

  .hero-image-wrapper {
    max-width: 100%;
    margin-top: 30px;
  }

  .hero-image {
    height: auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .services-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problem-slider {
    padding: 0 14px;
  }

  .slider-btn {
    width: 44px;
    height: 44px;
  }

  .slider-prev {
    left: -12px;
  }

  .slider-next {
    right: -12px;
  }

  .map-frame {
    min-height: 280px;
  }
}

@media (max-width: 767px) {
  body, html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    padding-top: 100px;
  }

  /* ---- ABOUT SECTION MOBILE OVERRIDES ---- */
  .about-section,
  .about-section .container,
  .about-grid,
  .about-main-card,
  .vision-card,
  .mission-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .about-section .container {
    padding-left: 16px;
    padding-right: 16px;
    margin: 0 auto;
  }

  .about-section .section-header {
    padding: 0 16px;
    text-align: center;
  }
  .about-section .section-header h2 {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.15;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
  }

  .about-main-card {
    padding: 28px 24px;
    overflow: hidden;
  }

  .about-main-card p,
  .vision-card p,
  .mission-card p {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .about-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .highlight-item {
    width: 100%;
    min-width: 0;
  }

  .vision-card {
    padding: 24px 20px;
    box-sizing: border-box;
  }
  
  .vision-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }

  .vision-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    border-radius: 14px;
    flex-shrink: 0;
    margin: 0;
  }

  .vision-heading-wrap {
    flex: 1;
    min-width: 0;
  }

  .vision-heading-wrap span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
  }

  .vision-heading-wrap h3 {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
    white-space: normal;
  }

  .vision-description {
    margin-top: 18px;
    margin-left: 0;
    width: 100%;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.7;
    color: #64748B;
  }

  .mission-card {
    padding: 24px 20px;
  }

  .mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .mission-item {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .about-icon,
  .value-icon,
  .brand-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    flex-shrink: 0;
  }

  .section-padding {
    padding: 70px 0;
  }

  .hero-title {
    font-size: 2.55rem;
    line-height: 1.05;
  }

  .hero-text,
  .section-description {
    max-width: 100%;
    font-size: 0.96rem;
  }

  .hero-image-wrapper {
    max-width: 100%;
    margin-top: 28px;
  }

  .hero-image {
    height: 320px;
  }

  .hero-grid,
  .why-grid,
  .booking-wrapper {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-points {
    gap: 12px;
  }

  .hero-trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-trust-grid article {
    padding: 1.2rem 1.25rem;
  }

  .services-grid,
  .gallery-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: auto;
  }

  .problem-slider {
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 100%);
    padding: 0 16px;
  }

  .slider-btn {
    width: 42px;
    height: 42px;
  }

  .slider-prev {
    left: -12px;
  }

  .slider-next {
    right: -12px;
  }

  .footer {
    padding: 50px 20px 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    text-align: left;
    font-size: 13px;
  }

  .back-to-top {
    right: 16px;
    bottom: 90px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .booking-form-side,
  .booking-contact-side {
    padding: 20px;
  }

  .map-frame {
    min-height: 260px;
  }

  .why-section {
    padding: 60px 0;
  }

  .why-header h2 {
    font-size: 30px;
  }

  .motor-types {
    gap: 12px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .nav-shell {
    padding: 0 14px;
  }


  .hero-title {
    font-size: 2.2rem;
  }

  .hero-actions .btn {
    padding: 14px;
  }

  .service-card-body {
    padding: 20px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .footer {
    padding: 40px 16px 22px;
  }

  .social-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom {
    padding-top: 10px;
  }

  .slider-prev {
    left: -8px;
  }

  .slider-next {
    right: -8px;
  }
}
