/* ============================================================
   CHHAGAN MITHA — Landing Page Styles
   ============================================================ */

:root {
  --red: #e63946;
  --red-dark: #c1121f;
  --blue: #1d3557;
  --blue-mid: #457b9d;
  --blue-light: #a8dadc;
  --dark: #0d1b2a;
  --light: #f8f9fa;
  --grey: #6c757d;
  --white: #ffffff;
  --teal: #2a9d8f;

  --font-head: "Montserrat", sans-serif;
  --font-body: "Open Sans", sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);

  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 70px;
  background: var(--white);
  border-bottom: 1px solid #e9ecef;
  transition: var(--transition);
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cm-oval {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 32px;
  border: 2.5px solid var(--red);
  border-radius: 50%;
}
.cm-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--red);
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
}
.brand-main {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--blue);
  letter-spacing: 0.5px;
  line-height: 1;
}
.brand-sub {
  font-size: 0.65rem;
  color: var(--blue-mid);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  transition: var(--transition);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--red);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a.active {
  color: var(--red);
}
.nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 6px;
}
.nav-cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px);
}
.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   BANNER SLIDER — simple horizontal slide
   ============================================================ */
.banner-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

/* Track — all slides sit side by side */
.slides-track {
  display: flex;
  width: 400%; /* 4 slides × 100% */
  height: 100%;
  transition: transform 0.55s ease-in-out;
  will-change: transform;
}

/* Each slide takes exactly 1/4 of the track (= 100vw) */
.slide {
  width: 25%;
  flex-shrink: 0;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 42, 0.8) 0%,
    rgba(13, 27, 42, 0.5) 60%,
    rgba(13, 27, 42, 0.25) 100%
  );
}

/* Slide must be relative so overlay positions inside it */
.slide {
  position: relative;
}

/* Slide Content */
.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0rem 1.5rem 9rem;
  max-width: 820px;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 57, 70, 0.18);
  border: 1px solid rgba(230, 57, 70, 0.45);
  color: #ff9aa2;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 1.6rem;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.5);
  }
}

.slide-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 31px;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.slide-accent {
  color: var(--red);
  display: block;
}
.slide-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  margin-bottom: 2px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.slide-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 0.85rem 2.2rem;
  border-radius: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
  display: inline-block;
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 0.85rem 2.2rem;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  transition: var(--transition);
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}
.dark-outline {
  color: var(--dark);
  border-color: #dee2e6;
}
.dark-outline:hover {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  color: var(--white);
  width: auto;
  height: auto;
  border-radius: 0;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-arrow:hover {
  color: var(--red);
  transform: translateY(-50%) scale(1.15);
}
.slider-prev {
  left: 1.5rem;
}
.slider-next {
  right: 1.5rem;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.dot.active {
  background: var(--red);
  width: 30px;
  border-radius: 5px;
}

/* Progress bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 10;
}
.slider-progress-bar {
  height: 100%;
  background: var(--red);
  width: 0%;
  transition: width linear;
}

/* Google Reviews Badge on Banner */
.banner-google-badge {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 0.9rem 1.2rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.banner-google-badge:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(calc(-50% - 3px));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.banner-google-icon {
  background: var(--white);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.banner-google-stars {
  color: #f4a224;
  font-size: 0.85rem;
  letter-spacing: 1px;
  line-height: 1;
}

.banner-google-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--white);
  line-height: 1.3;
  margin-top: 0.2rem;
}

.banner-google-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.1rem;
}

@media (max-width: 768px) {
  .banner-google-badge {
    top: auto;
    right: auto;
    bottom: 148px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.6rem 1rem;
    white-space: nowrap;
  }
  .banner-google-badge:hover {
    transform: translateX(-50%) translateY(-3px);
  }
}

/* Stats bar at bottom of slider */
.slider-stats {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(13, 27, 42, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 0.8rem 2.5rem;
}
.sstat {
  text-align: center;
}
.sstat-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1;
}
.sstat-plus {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--red);
  vertical-align: super;
}
.sstat-label {
  display: block;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}
.sstat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
}

/* ============================================================
   SPECIAL TAGS
   ============================================================ */
.special-tags {
  background: var(--light);
  padding: 3rem 1.5rem;
  border-bottom: 1px solid #e9ecef;
}
.tag-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.tag-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid transparent;
  transition: var(--transition);
}
.tag-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.autoclutch-tag {
  border-left-color: var(--red);
}
.cng-tag {
  border-left-color: var(--blue);
}
.insurance-tag {
  border-left-color: var(--teal);
}
.tag-icon svg {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}
.tag-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 3px;
}
.tag-card p {
  font-size: 0.82rem;
  color: var(--grey);
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.8rem;
  position: relative;
  padding: 0 1.5rem;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--red);
}
.section-eyebrow::before {
  right: 100%;
  transform: translateX(1rem);
}
.section-eyebrow::after {
  left: 100%;
  transform: translateX(-1rem);
}
.section-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.highlight {
  color: var(--red);
}
.section-subtitle {
  font-size: 1rem;
  color: var(--grey);
  max-width: 520px;
  margin: 0 auto;
}

/* ============================================================
   INNER PAGE HERO + LAYOUT
   ============================================================ */
.page-main {
  padding-top: 70px;
}

.page-hero {
  position: relative;
  background: linear-gradient(130deg, #0d1b2a 0%, #1d3557 65%, #244a72 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4.5rem 1.5rem 3.2rem;
  color: var(--white);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(13, 27, 42, 0.85) 0%,
    rgba(13, 27, 42, 0.7) 48%,
    rgba(13, 27, 42, 0.5) 100%
  );
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.about-hero {
  background-image: url("images/banner-2.jpg");
}

.services-hero {
  background-image: url("images/banner-1.jpg");
}

.gallery-hero {
  background-image: url("images/banner-3.jpg");
}

.contact-hero {
  background-image: url("images/banner-4.jpg");
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero .section-eyebrow {
  color: #ff9aa2;
}

.page-hero .section-eyebrow::before,
.page-hero .section-eyebrow::after {
  background: #ff9aa2;
}

.page-hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

.page-hero-subtitle {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.breadcrumb-bar {
  margin-top: 1.4rem;
}

.breadcrumb-list {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
}

.breadcrumb-item {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.72);
  transition: var(--transition);
}

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

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.45);
}

.breadcrumb-current {
  color: #ffb7bf;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-page {
  background: var(--light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 42, 0.42), transparent 60%);
}

.gallery-item.large {
  grid-column: span 1;
  grid-row: span 1;
}

/* ============================================================
   SERVICES — Image Cards
   ============================================================ */
.services {
  background: var(--white);
}
.sslider {
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid #e9ecef;
  transition: var(--transition);
  opacity: 1;
  transform: none;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(33.333% - 1.2rem);
  margin-right: 1.8rem;
}
.service-card.visible {
  opacity: 1;
  transform: none;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: transparent;
}

/* Image area */
.service-img-wrap {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.08);
}
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 27, 42, 0.5) 0%,
    transparent 60%
  );
  transition: var(--transition);
}
.service-card:hover .service-img-overlay {
  background: linear-gradient(
    to top,
    rgba(230, 57, 70, 0.35) 0%,
    transparent 70%
  );
}

/* Body area */
.service-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-body h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 0.55rem;
  transition: var(--transition);
}
.service-card:hover .service-body h3 {
  color: var(--red);
}
.service-body p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.7;
  flex: 1;
}
.service-card-footer {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid #f0f0f0;
}
.service-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.4px;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
}
.service-call-btn svg {
  width: 13px;
  height: 13px;
  stroke: var(--white);
  flex-shrink: 0;
}
.service-call-btn:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(230, 57, 70, 0.4);
}

/* ============================================================
   BRANDS
   ============================================================ */
.brands {
  background: var(--light);
}
.brands-track-wrapper {
  overflow: hidden;
  margin-bottom: 3rem;
  position: relative;
}
.brands-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: brandScroll 10s linear infinite;
}
@keyframes brandScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.brands-track:hover {
  animation-play-state: paused;
}
/* Ticker pills with logo */
.brand-pill {
  background: var(--white);
  border: 1.5px solid #dee2e6;
  border-radius: 16px;
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: var(--transition);
  cursor: default;
}
.brand-pill img {
  height: 56px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  display: block;
}
.brand-pill:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
}

/* Logo grid */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}
.brand-card {
  background: var(--white);
  border: 1.5px solid #e9ecef;
  border-radius: var(--radius-lg);
  padding: 1.6rem 1rem 1.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  transition: var(--transition);
  cursor: default;
}
.brand-card img {
  height: 52px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.brand-card span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
}
.brand-card:hover {
  border-color: #c6d4e8;
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.brand-card:hover img {
  transform: scale(1.08);
}

/* Maruti featured card */
.brand-card.featured {
  border-color: var(--red);
  background: linear-gradient(
    135deg,
    rgba(230, 57, 70, 0.04),
    rgba(29, 53, 87, 0.04)
  );
  grid-column: span 2;
}
.brand-card.featured:hover {
  border-color: var(--red);
  background: linear-gradient(
    135deg,
    rgba(230, 57, 70, 0.08),
    rgba(29, 53, 87, 0.08)
  );
}
.auth-badge {
  background: var(--red);
  color: var(--white);
  font-size: 0.6rem;
  padding: 2px 7px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 700;
}

/* ============================================================
   FEATURES / WHY US
   ============================================================ */
.features {
  position: relative;
  overflow: hidden;
}
.features-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d1b2a 0%, #1d3557 100%);
}
.features .section-container {
  position: relative;
  z-index: 1;
}
.light-header .section-title {
  color: var(--white);
}
.light-eyebrow {
  color: #ff8a95 !important;
}
.light-eyebrow::before,
.light-eyebrow::after {
  background: #ff8a95 !important;
}
.highlight-light {
  color: var(--blue-light);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.feature-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.feature-item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(230, 57, 70, 0.4);
  transform: translateY(-4px);
}
.feature-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.5rem;
  color: rgba(230, 57, 70, 0.25);
  line-height: 1;
  margin-bottom: 0.8rem;
  transition: var(--transition);
}
.feature-item:hover .feature-num {
  color: rgba(230, 57, 70, 0.5);
}
.feature-item h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.feature-item p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ============================================================
   WHY CHOOSE US (VISUAL SPLIT)
   ============================================================ */
.why-us {
  background: var(--light);
  padding: 5rem 1.5rem;
  overflow: hidden;
}
.why-us-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Image stack */
.why-us-images {
  position: relative;
  height: 480px;
}
.why-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.why-img-main:hover img {
  transform: scale(1.05);
}

.why-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
.why-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-img-badge {
  position: absolute;
  bottom: 110px;
  left: -20px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.why-badge-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
}
.why-badge-num sup {
  font-size: 1rem;
  vertical-align: super;
}
.why-badge-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  opacity: 0.9;
  line-height: 1.4;
  margin-top: 3px;
}

/* Content */
.why-us-content .section-eyebrow {
  display: block;
  text-align: left;
  padding: 0;
}
.why-us-content .section-eyebrow::before,
.why-us-content .section-eyebrow::after {
  display: none;
}
.why-us-intro {
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.why-reasons {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.why-reason {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--red);
  transition: var(--transition);
}
.why-reason:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}
.why-reason-icon {
  width: 28px;
  height: 28px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}
.why-reason h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 3px;
}
.why-reason p {
  font-size: 0.83rem;
  color: var(--grey);
  line-height: 1.6;
}

/* ============================================================
   CUSTOMER BENEFITS
   ============================================================ */
.benefits {
  background: var(--white);
}
.bslider {
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}
.benefit-card {
  flex: 0 0 calc(25% - 1.125rem);
  margin-right: 1.5rem;
  background: var(--white);
  border: 1.5px solid #e9ecef;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--clr, var(--red));
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--clr, var(--red)) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  transition: var(--transition);
  color: var(--clr, var(--red));
}
.benefit-card:hover .benefit-icon {
  background: var(--clr, var(--red));
  color: var(--white);
}
.benefit-icon svg {
  width: 30px;
  height: 30px;
}

.benefit-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
  transition: var(--transition);
}
.benefit-card:hover h3 {
  color: var(--clr, var(--red));
}
.benefit-card p {
  font-size: 0.83rem;
  color: var(--grey);
  line-height: 1.7;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--white);
}
.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: start;
}
.contact-top-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.contact-person {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--light);
}
.person-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.contact-person h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
}
.contact-person p {
  font-size: 0.83rem;
  color: var(--grey);
}
.contact-card-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-icon {
  width: 42px;
  height: 42px;
  background: rgba(230, 57, 70, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--red);
}
.contact-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey);
  margin-bottom: 3px;
}
.contact-value {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.6;
}
.contact-link:hover {
  color: var(--red);
}
.contact-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.contact-form-wrap {
  margin-top: 0;
  padding: 1.6rem;
  border: 1.5px solid #e9ecef;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  background: var(--white);
}

.contact-form-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid #dbe3ec;
  border-radius: 8px;
  padding: 0.72rem 0.8rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--dark);
  background: #fbfcfe;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.12);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit-btn {
  margin-top: 0.2rem;
  border: none;
  cursor: pointer;
}

/* Map */
.contact-map {
  position: relative;
  top: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.map-embed-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid #e9ecef;
  line-height: 0;
}
.map-embed-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}
.map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.75rem 1.6rem;
  border-radius: 8px;
  transition: var(--transition);
  width: 100%;
  text-align: center;
}
.map-btn:hover {
  background: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29, 53, 87, 0.3);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem 1.5rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 1.6rem;
}
.footer-col {
  min-width: 0;
}
.footer-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.9rem;
  letter-spacing: 0.3px;
}
.footer-text {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-link {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  transition: var(--transition);
  display: inline-block;
}
.footer-link:hover {
  color: #ff9aa2;
  transform: translateX(4px);
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer-contact-item .footer-icon {
  width: 16px;
  flex-shrink: 0;
  color: #ff9aa2;
  line-height: 1.6;
  text-align: center;
}
.footer-copy {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.6;
}

/* ============================================================
   SCROLL-REVEAL (injected by JS)
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .benefit-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .brand-card.featured {
    grid-column: span 3;
    flex-direction: row;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 960px) {
  .service-card {
    flex: 0 0 calc(50% - 0.9rem);
  }
  .why-us-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .why-us-images {
    height: 340px;
  }
  .why-img-main {
    width: 90%;
    height: 300px;
  }
  .why-img-secondary {
    width: 45%;
    height: 160px;
  }
  .why-img-badge {
    left: 0;
    bottom: 80px;
  }
}

@media (max-width: 768px) {
  .contact-top-grid {
    grid-template-columns: 1fr;
  }
  .slider-stats {
    gap: 1rem;
    padding: 0.7rem 1.5rem;
  }
  .sstat-num {
    font-size: 1.2rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  /* Special tags — horizontal scroll slider on mobile */
  .tag-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 0.8rem;
    scrollbar-width: none;
  }
  .tag-container::-webkit-scrollbar {
    display: none;
  }
  .tag-card {
    flex: 0 0 80vw;
    scroll-snap-align: center;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease;
  }
  .nav-links.open {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: block;
    padding: 0.9rem 2rem;
    border-bottom: 1px solid #f0f0f0;
    color: var(--blue);
  }
  .nav-links a::after {
    display: none;
  }
  .nav-cta {
    margin: 0.5rem 2rem !important;
    text-align: center;
    border-radius: 6px !important;
    padding: 0.7rem !important;
  }
  .hamburger {
    display: flex;
  }

  .slider-arrow {
    width: auto;
    height: auto;
    font-size: 1.8rem;
  }
  .slider-prev {
    left: 0.7rem;
  }
  .slider-next {
    right: 0.7rem;
  }
  .slider-stats {
    gap: 0.7rem;
    padding: 0.6rem 1rem;
    border-radius: 14px;
    bottom: 14px;
    font-size: 0.75rem;
  }
  .sstat-divider {
    height: 24px;
  }

  .service-card {
    flex: 0 0 calc(100% - 0px);
    margin-right: 1.8rem;
  }
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-card.featured {
    grid-column: span 2;
  }
  .brand-card img {
    height: 38px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .page-hero {
    padding: 4rem 1.2rem 2.5rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }
  .benefit-card {
    flex: 0 0 calc(100% - 0px);
  }
  .why-us-images {
    height: 280px;
  }
  .why-img-main {
    width: 100%;
    height: 240px;
    position: relative;
  }
  .why-img-secondary {
    display: none;
  }
  .why-img-badge {
    left: auto;
    right: 10px;
    bottom: -20px;
  }

  .contact-actions .btn-primary,
  .contact-actions .btn-outline {
    width: 100%;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }
}

/* ============================================================
   TESTIMONIALS SLIDER
   ============================================================ */
.testimonials {
  background: var(--light);
}

/* Slider wrapper */
.tslider {
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}

.tslider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
  /* 3 visible on desktop */
  flex: 0 0 calc(33.333% - 1.2rem);
  margin-right: 1.8rem;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: #f4a224;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid #eee;
  padding-top: 1rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: var(--dark);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--grey);
}

/* Prev / Next buttons */
.tslider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--dark);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.tslider-btn:hover {
  background: var(--red);
  color: var(--white);
}

.tslider-prev {
  left: -10px;
}
.tslider-next {
  right: -10px;
}

/* Services slider — arrow only, no background */
#ssliderPrev,
#ssliderNext {
  background: none;
  border: none;
  box-shadow: none;
  color: var(--dark);
  font-size: 2.4rem;
  width: auto;
  height: auto;
  border-radius: 0;
}
#ssliderPrev {
  left: -1.5rem;
}
#ssliderNext {
  right: -1.5rem;
}
#ssliderPrev:hover,
#ssliderNext:hover {
  background: none;
  box-shadow: none;
  color: var(--red);
  transform: translateY(-50%) scale(1.15);
}

/* Dots */
.tslider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.8rem;
}

.tslider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.tslider-dot.active {
  background: var(--red);
  width: 24px;
  border-radius: 4px;
}

/* Google Reviews Banner */
.google-reviews-banner {
  background: linear-gradient(135deg, #1d3557 0%, #457b9d 100%);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2.5rem;
  box-shadow: var(--shadow-md);
}

.google-reviews-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.google-reviews-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.google-logo-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.google-reviews-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  margin-top: 0.3rem;
}

.google-rating-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.google-rating-score {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}

.google-stars {
  color: #f4a224;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.google-reviews-count {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
}

.btn-google-review {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--blue);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.btn-google-review:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

/* Responsive — 2 cards on tablet */
@media (max-width: 900px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 0.9rem);
  }
}

/* Responsive — 1 card on mobile */
@media (max-width: 600px) {
  .testimonial-card {
    flex: 0 0 100%;
    margin-right: 1.2rem;
  }

  .tslider-prev {
    left: 0;
  }
  .tslider-next {
    right: 0;
  }

  .google-reviews-inner {
    flex-direction: column;
    text-align: center;
  }

  .google-reviews-left {
    flex-direction: column;
    text-align: center;
  }

  .google-rating-row {
    justify-content: center;
  }

  .btn-google-review {
    width: 100%;
    justify-content: center;
  }
}
