/* ══════════════════════════════════════════
MY CAR MECHANIC — Main Stylesheet
Version: 1.0 | Part 1: UI Design
Ready for PHP Backend Integration
══════════════════════════════════════════ */

:root {
  --red: #e53935;
  --red-d: #b71c1c;
  --red-l: #ffebee;
  --cng: #00897b;
  --cng-d: #00695c;
  --cng-l: #e0f2f1;
  --green: #2e7d32;
  --text: #1a1a2e;
  --text2: #555;
  --text3: #888;
  --bg: #f5f7fa;
  --white: #fff;
  --border: #e8ecf0;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
  --radius: 14px;
  --radius-sm: 8px;
  --nav-h: 72px;
}

/* ── RESET ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Nunito", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  cursor: pointer;
}
button {
  cursor: pointer;
  font-family: inherit;
}
ul {
  list-style: none;
}

/* ── TOPBAR ── */
.topbar {
  background: #e53935;
  color: #fff;
  font-size: 0.82rem;
  padding: 8px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar a,
.tb-link {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
}
.tb-link:hover {
  color: #ffebee !important;
  opacity: 0.9;
}
.tb-wa {
  color: #fff !important;
}
.tb-sep {
  opacity: 0.5;
  margin: 0 8px;
}
.tb-right {
  display: flex;
  gap: 1.5rem;
}
.tb-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

/* ── NAVBAR ── */
#main-nav {
  background: #0a0a0a;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  padding: 0 5vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.2;
}
.nav-logo-text span {
  color: var(--red);
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.nav-links a {
  font-weight: 700;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(229, 57, 53, 0.22);
}
.nav-links a.nav-cng {
  color: var(--cng);
}
.nav-links a.nav-cng:hover,
.nav-links a.nav-cng.active {
  color: #00e676;
  background: rgba(0, 137, 123, 0.2);
}
.nav-book-btn {
  background: var(--red);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 9px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.2s;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-book-btn:hover {
  background: var(--red-d);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* ── MOBILE NAV ── */
#mob-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  z-index: 300;
  flex-direction: column;
  padding: 24px 20px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
}
#mob-nav.open {
  display: flex;
  transform: translateX(0);
}
.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 299;
}
.mob-overlay.open {
  display: block;
}
.mob-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.mob-close {
  font-size: 1.6rem;
  background: none;
  border: none;
  color: var(--text);
  padding: 4px;
}
.mob-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.mob-links a {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  padding: 14px 12px;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--border);
  transition: 0.2s;
  cursor: pointer;
}
.mob-links a:hover {
  color: var(--red);
  background: var(--red-l);
}
.mob-links a.mob-cng {
  color: var(--cng);
}
.mob-book {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px;
  border-radius: 50px;
  margin-top: 1.5rem;
  transition: 0.2s;
}
.mob-book:hover {
  background: var(--red-d);
}

/* ── PAGE SYSTEM ── */
.page {
  display: none;
}
.page.active {
  display: block;
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 60px 5vw;
  text-align: center;
}
.page-hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 0.8rem;
}
.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 0.97rem;
}
.dark-hero {
  background: linear-gradient(135deg, #1a1a4e, #2d0014);
}
.dark-hero h1 {
  color: #fff;
}

/* ══════════════════════════════════════
HERO SLIDER
══════════════════════════════════════ */
.hero-slider {
  position: relative;
  height: 75vh;
  min-height: 420px;
  max-height: 860px;
  overflow: hidden;
  touch-action: pan-y;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
}
.slide.active {
  opacity: 1;
  z-index: 2;
}
.slide-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
  z-index: 0;
}
.slide.active .slide-bg-img {
  transform: scale(1);
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10, 10, 40, 0.78) 0%,
    rgba(20, 0, 8, 0.5) 60%,
    rgba(10, 10, 40, 0.3) 100%
  );
}
.slide-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 0 5vw;
  bottom: 13vh;
}
.slide-text {
  max-width: 700px;
}
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229, 57, 53, 0.22);
  border: 1px solid rgba(229, 57, 53, 0.45);
  color: #ff8a80;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}
.slide-text h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.hl-red {
  color: #ff5252;
}
.slide-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin-bottom: 1.8rem;
  max-width: 520px;
}
.slide-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Slider Controls */
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: 0.3s;
}
.dot.active {
  background: #fff;
  width: 28px;
  border-radius: 5px;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  backdrop-filter: blur(4px);
}
.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}
.prev-arrow {
  left: 20px;
}
.next-arrow {
  right: 20px;
}
.slider-tags {
  position: absolute;
  bottom: 70px;
  left: 5vw;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  z-index: 10;
}
.stag {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.73rem;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hero Booking Card */
.hero-book-card {
  position: absolute;
  right: 5vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 28px 24px;
  width: min(320px, 30%);
}
@media (max-width: 900px) {
  .hero-book-card {
    display: none;
  }
}
.hbc-title {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}
.hbc-field {
  margin-bottom: 12px;
}
.hbc-field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 5px;
}
.hbc-field input,
.hbc-field select {
  width: 100%;
  padding: 10px 14px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: 0.2s;
}
.hbc-field input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.hbc-field input:focus,
.hbc-field select:focus {
  border-color: #ff5252;
  background: rgba(255, 255, 255, 0.14);
}
.hbc-field select option {
  background: #1a1a2e;
  color: #fff;
}
.hbc-btn {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px;
  border-radius: 50px;
  margin-top: 4px;
  transition: 0.2s;
}
.hbc-btn:hover {
  background: var(--red-d);
}
.hbc-msg {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 8px;
  border-radius: 6px;
  padding: 8px;
  display: none;
}
.hbc-msg.ok {
  background: rgba(46, 125, 50, 0.25);
  color: #a5d6a7;
  display: block;
}
.hbc-msg.err {
  background: rgba(229, 57, 53, 0.25);
  color: #ef9a9a;
  display: block;
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: #fff;
  box-shadow: var(--shadow);
  padding: 26px 5vw;
}
.trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.trust-item {
  padding: 10px;
}
.trust-icon {
  font-size: 1.8rem;
  margin-bottom: 6px;
}
.trust-num {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--red);
}
.trust-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--red);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: 0.2s;
  border: 2px solid var(--red);
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--red-d);
  border-color: var(--red-d);
}
.btn-outline {
  background: transparent;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: 0.2s;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}
.btn-outline-dark {
  background: transparent;
  color: var(--text);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 26px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  border: 2px solid var(--border);
  transition: 0.2s;
}
.btn-outline-dark:hover {
  border-color: var(--red);
  color: var(--red);
}
.btn-green {
  background: #00c853;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: 0.2s;
  border: 2px solid #00c853;
}
.btn-green:hover {
  background: #00a846;
}
.btn-block {
  width: 100%;
  text-align: center;
  border: none;
}

/* ── SECTIONS ── */
.section {
  padding: 80px 5vw;
}
.section.alt {
  background: #fff;
}
.sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.sec-head-center {
  text-align: center;
}
.sec-tag {
  display: inline-block;
  background: var(--red-l);
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 0.9rem;
}
.sec-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 0.8rem;
}
.sec-title .red {
  color: var(--red);
}
.sec-sub {
  font-size: 0.95rem;
  color: var(--text2);
  line-height: 1.7;
}

/* ── SERVICE CARDS ── */
.services-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.serv-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: 0.3s;
  border: 2px solid transparent;
  cursor: pointer;
}
.serv-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: 0 12px 40px rgba(229, 57, 53, 0.14);
}
.cng-highlight {
  border-color: var(--cng) !important;
  background: linear-gradient(135deg, var(--cng-l), #fff) !important;
}
.cng-highlight:hover {
  box-shadow: 0 12px 40px rgba(0, 137, 123, 0.2) !important;
}
.serv-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--red-l);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.9rem;
}
.cng-icon {
  background: var(--cng-l);
}
.serv-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.serv-card p {
  font-size: 0.83rem;
  color: var(--text2);
  line-height: 1.6;
}
.serv-link {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--red);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── CNG SECTION ── */
.cng-section {
  background: linear-gradient(135deg, #0a1a00 0%, #0d2800 50%, #0a1a00 100%);
  padding: 80px 5vw;
  position: relative;
  overflow: hidden;
}
.cng-section::before {
  content: "⛽";
  position: absolute;
  right: -40px;
  top: -40px;
  font-size: 18rem;
  opacity: 0.04;
  line-height: 1;
}
.cng-section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.cng-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.cng-title span {
  color: #00e676;
}
.cng-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  /* padding-top: 40px; */
}
.cng-info h3 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}
.cng-info h3 span {
  color: #00e676;
}
.cng-info > p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.cng-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 1.5rem;
}
.cng-benefit {
  background: rgba(0, 230, 118, 0.07);
  border: 1px solid rgba(0, 230, 118, 0.2);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.cb-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}
.cng-benefit h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: #00e676;
  margin-bottom: 0.2rem;
}
.cng-benefit p {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}
.cng-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.brand-chip-dark {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
}

/* CNG Form Card */
.cng-form-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 230, 118, 0.25);
  border-radius: 20px;
  padding: 36px 30px;
}
.cng-form-card h3 {
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  text-align: center;
}
.form-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-bottom: 1.5rem;
}
.form-field {
  margin-bottom: 13px;
}
.form-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(0, 230, 118, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}
.cng-form-card input,
.cng-form-card select {
  width: 100%;
  padding: 11px 15px;
  border-radius: 10px;
  border: 1px solid rgba(0, 230, 118, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: 0.2s;
}
.cng-form-card input::placeholder {
  color: rgba(255, 255, 255, 0.33);
}
.cng-form-card input:focus,
.cng-form-card select:focus {
  border-color: #00e676;
}
.cng-form-card select option {
  background: #0d2800;
  color: #fff;
}
.btn-cng-submit {
  width: 100%;
  background: #00c853;
  color: #fff;
  border: none;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px;
  border-radius: 50px;
  margin-top: 8px;
  transition: 0.2s;
}
.btn-cng-submit:hover {
  background: #00a846;
}

/* CNG Process */
.cng-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
  margin-top: 30px;
}
.cng-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 230, 118, 0.15);
  border-radius: 16px;
  padding: 26px 16px;
}
.step-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(0, 200, 83, 0.18);
  border: 2px solid #00c853;
  color: #00e676;
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.cng-step h4 {
  font-family: "Poppins", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}
.cng-step p {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* ── GALLERY PREVIEW ── */
.gallery-preview-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
}
.gallery-preview-grid .gal-item:first-child {
  grid-row: span 2;
}

/* ── GAL ITEMS ── */
.gal-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  background: #1a1a2e;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.gal-item:hover img {
  transform: scale(1.07);
}
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 40, 0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: 0.3s;
}
.gal-item:hover .gal-overlay {
  opacity: 1;
}
.gal-overlay span {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.84rem;
  color: #fff;
}

/* ── WHY US ── */
.why-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.why-visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.why-visual img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.why-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--red);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 8px 16px;
  border-radius: 50px;
}
.why-content .sec-tag {
  display: inline-block;
}
.why-content .sec-title {
  margin: 0.5rem 0 1.5rem;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  padding: 18px 20px;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}
.why-item:hover {
  box-shadow: 0 8px 28px rgba(229, 57, 53, 0.1);
  transform: translateX(5px);
}
.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--red-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-item h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.why-item p {
  font-size: 0.82rem;
  color: var(--text2);
  line-height: 1.6;
}

/* ── REVIEWS ── */
.reviews-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rev-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  transition: 0.3s;
  border-top: 4px solid var(--red);
}
.rev-card:hover {
  transform: translateY(-5px);
}
.rev-stars {
  color: #ffa000;
  font-size: 1rem;
  margin-bottom: 10px;
}
.rev-text {
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--text2);
  margin-bottom: 1rem;
  font-style: italic;
}
.rev-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rev-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--red);
  flex-shrink: 0;
}
.rev-name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--text);
}
.rev-src {
  font-size: 0.72rem;
  color: var(--text3);
}

/* ── BRANDS ROW ── */
.brands-row {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.brand-chip {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text2);
  transition: 0.2s;
}
.brand-chip:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-l);
}

/* ── LISTING SECTION ── */
.listing-section {
  background: linear-gradient(135deg, var(--red-l), #e3f2fd);
  padding: 50px 5vw;
  text-align: center;
}
.listing-cards {
  max-width: 860px;
  margin: 28px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.listing-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  border: 2px solid transparent;
}
.listing-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
}
.l-name {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
}
.l-desc {
  font-size: 0.75rem;
  color: var(--text3);
}

/* ── ABOUT ── */
.about-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.about-text h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
}
.about-text p {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}
.about-vals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 1.2rem;
}
.val-item {
  background: var(--red-l);
  border-radius: var(--radius-sm);
  padding: 14px;
  border-left: 4px solid var(--red);
}
.val-item h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--red);
  margin-bottom: 0.2rem;
}
.val-item p {
  font-size: 0.78rem;
  color: var(--text2);
}
.team-grid {
  max-width: 900px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 26px 16px;
  text-align: center;
  transition: 0.3s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.team-avatar {
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.team-name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 4px;
}
.team-card p {
  font-size: 0.78rem;
  color: var(--text3);
}

/* ── SERVICES PAGE ── */
.serv-detail-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.serv-detail-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
}
.sdl {
  background: var(--red);
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 100px;
}
.cng-sdl {
  background: linear-gradient(135deg, #1b5e20, #2e7d32);
}
.big-icon {
  font-size: 2.6rem;
  margin-bottom: 8px;
}
.sdl span {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}
.sdr {
  padding: 22px 20px;
  flex: 1;
}
.sdr h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.sdr p {
  font-size: 0.83rem;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 0.8rem;
}
.serv-feats {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.sf {
  background: var(--red-l);
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
}
.sf-green {
  background: #e8f5e9 !important;
  color: #2e7d32 !important;
}
.serv-price {
  font-family: "Poppins", sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  color: #2e7d32;
  margin-top: 0.7rem;
}
.cng-card-full {
  border: 2px solid rgba(0, 200, 83, 0.3);
}
.new-badge {
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid #a5d6a7;
}

/* ── CNG PRICING ── */
.cng-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 10px;
}
.price-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px 20px;
  border: 2px solid var(--border);
  position: relative;
  transition: 0.3s;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--cng);
}
.price-card.popular {
  background: linear-gradient(135deg, #e0f2f1, #fff);
  border-color: var(--cng);
}
.popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cng);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
}
.pc-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}
.pc-name {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 4px;
}
.pc-price {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--red);
  margin-bottom: 8px;
}
.price-card p {
  font-size: 0.8rem;
  color: var(--text2);
}

/* ── GALLERY PAGE ── */
.gal-page-wrap {
  padding: 40px 5vw 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.gal-stats-bar {
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.gal-count-display {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 12px;
}
.gal-count-display span {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--red);
}
.gal-count-bar {
  width: 140px;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
}
.gal-count-fill {
  height: 100%;
  background: var(--red);
  border-radius: 3px;
  transition: width 0.5s ease;
}
.gal-filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.gal-tab {
  padding: 8px 18px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--text2);
  cursor: pointer;
  transition: 0.2s;
}
.gal-tab.active,
.gal-tab:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.gal-section {
  margin-bottom: 48px;
}
.gal-cat-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.gal-cat-title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: var(--border);
}
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gal-grid .gal-item {
  height: 220px;
  cursor: zoom-in;
}
.gal-grid .gal-overlay {
  opacity: 0;
}
.gal-grid .gal-item:hover .gal-overlay {
  opacity: 1;
}

/* ── CONTACT ── */
.contact-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 {
  font-family: "Poppins", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.7rem;
}
.contact-info > p {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 1.6rem;
}
.c-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.c-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.c-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--red-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.c-label {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  margin-bottom: 2px;
}
.c-val {
  font-size: 0.85rem;
  color: var(--text2);
  line-height: 1.5;
}
.c-val a {
  color: var(--red);
  text-decoration: none;
}
.soc-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}
.soc-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 15px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.76rem;
  text-decoration: none;
  transition: 0.2s;
  border: 2px solid;
}
.soc-fb {
  border-color: #1877f2;
  color: #1877f2;
}
.soc-fb:hover {
  background: #1877f2;
  color: #fff;
}
.soc-gm {
  border-color: var(--red);
  color: var(--red);
}
.soc-gm:hover {
  background: var(--red);
  color: #fff;
}
.soc-jd {
  border-color: #f57c00;
  color: #f57c00;
}
.soc-jd:hover {
  background: #f57c00;
  color: #fff;
}
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 1.4rem;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.cf-g {
  margin-bottom: 13px;
}
.cf-g label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text3);
  margin-bottom: 5px;
}
.cf-g input,
.cf-g textarea,
.cf-g select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: 0.2s;
  background: #fff;
}
.cf-g input:focus,
.cf-g textarea:focus,
.cf-g select:focus {
  border-color: var(--red);
}
.cf-g textarea {
  resize: vertical;
  min-height: 85px;
}
.map-box {
  max-width: 1280px;
  margin: 36px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.btn-red {
  background: var(--red-d);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: 0.2s;
  border: 2px solid var(--red);
  cursor: pointer;
}

/* ── FORM MSG ── */
.form-msg {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 10px;
  border-radius: 8px;
  padding: 10px;
  display: none;
}
.form-msg.ok {
  background: #e8f5e9;
  color: #2e7d32;
  display: block;
}
.form-msg.err {
  background: #ffebee;
  color: #c62828;
  display: block;
}

/* ── LIGHTBOX ── */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.93);
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
}
.lightbox-overlay.open {
  display: flex;
}
.lightbox-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
}
.lightbox-inner img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
}
.lb-close {
  position: absolute;
  top: -46px;
  right: 0;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.lb-close:hover {
  background: rgba(255, 255, 255, 0.3);
}
.lb-caption {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 14px;
}
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  z-index: 10;
}
.lb-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}
.lb-prev {
  left: -62px;
}
.lb-next {
  right: -62px;
}

/* ── FOOTER ── */
footer {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.72);
  padding: 56px 5vw 28px;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.7;
  margin-top: 0.8rem;
  max-width: 270px;
}
.footer-logo {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
}
.footer-logo span {
  color: #ff5252;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
}
.footer-socials a {
  font-size: 1.4rem;
  text-decoration: none;
  transition: 0.2s;
  opacity: 0.7;
}
.footer-socials a:hover {
  opacity: 1;
}
.footer-col h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.82rem;
  transition: 0.2s;
  cursor: pointer;
}
.footer-col ul li a:hover {
  color: #ff5252;
}
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.33);
}

/* ── WA FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 150;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  animation: wapulse 2.5s ease-in-out infinite;
}
@keyframes wapulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 40px rgba(37, 211, 102, 0.7);
  }
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ════════════════════════════════
RESPONSIVE
════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .cng-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-book-btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-preview-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-preview-grid .gal-item:first-child {
    grid-row: span 1;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-visual {
    display: none;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-img {
    display: none;
  }
  .serv-detail-grid {
    grid-template-columns: 1fr;
  }
  .cng-price-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .cng-process {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 50vh;
    min-height: 400px;
    touch-action: pan-y;
  }
  .slide-content {
    /* justify-content: center;
    text-align: center;
    padding: 0 4vw; */
    position: absolute;
    bottom: 11vh;
  }
  /* 
  .slide-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  } */
  .slide-text h1 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
  .slide-text p {
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    max-width: 100%;
  }
  .slide-badge {
    font-size: 0.65rem;
    padding: 4px 12px;
    margin-bottom: 0.8rem;
  }
  .slide-btns {
    /* justify-content: center; */
    /* display: block; */
    gap: 0.6rem;
    width: 100%;
  }
  .slide-btns a {
    padding: 10px 16px;
    font-size: 0.7rem;
    flex: 1;
    min-width: 120px;
    max-width: 165px;
    text-align: center;
  }
  .slider-tags {
    /* display: none !important; */
    bottom: 33px;
  }
  /* .stag {
    font-size: 0.6rem;
    font-weight: 600;
    padding: 5px 13px;
  } */
  .slider-arrow {
    display: none !important;
  }
  .slider-dots {
    bottom: 12px;
  }
  .section {
    padding: 60px 5vw;
  }
  .trust-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .gallery-preview-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cng-benefits {
    grid-template-columns: 1fr;
  }
  .cng-process {
    grid-template-columns: 1fr 1fr;
  }
  .cf-row {
    grid-template-columns: 1fr;
  }
  .about-vals {
    grid-template-columns: 1fr;
  }
  .lb-prev {
    left: 4px;
  }
  .lb-next {
    right: 4px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .slider-tags {
    bottom: 35px;
  }
  .stag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
  }

  .slide-text h1 {
    font-size: 1.55rem;
  }
  .trust-inner {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cng-process {
    grid-template-columns: 1fr;
  }
  .gal-grid {
    grid-template-columns: 1fr;
  }
  .gallery-preview-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   CUSTOMER REVIEWS SLIDER CSS
   ══════════════════════════════════════ */
.reviews-slider-container {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 45px;
  overflow: hidden;
}
.reviews-slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Hide scrollbar Firefox */
}
.reviews-slider-track::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}
.rev-slide {
  flex: 0 0 calc(33.333% - 14px);
  scroll-snap-align: start;
  box-sizing: border-box;
}
@media (max-width: 992px) {
  .rev-slide {
    flex: 0 0 calc(50% - 10px);
  }
}
@media (max-width: 768px) {
  .reviews-slider-container {
    padding: 0 10px; /* Less padding on touch screens since swipe is primary */
  }
  .rev-slide {
    flex: 0 0 100%;
  }
}
.rev-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  color: var(--red);
  border: none;
  font-size: 2.4rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s ease;
}
.rev-slider-arrow:hover {
  background: rgba(229, 57, 53, 0.08);
  transform: translateY(-50%) scale(1.1);
}
.rev-prev-arrow {
  left: 2px;
}
.rev-next-arrow {
  right: 2px;
}

/* --- Smooth Scroll Flash Highlight --- */
.serv-detail-card.highlight-flash {
  animation: serviceFlashHighlight 2.1s ease-in-out;
  border: 2px solid var(--red) !important;
}

@keyframes serviceFlashHighlight {
  0%,
  100% {
    box-shadow: var(--shadow);
    transform: scale(1);
  }
  30% {
    box-shadow: 0 0 25px rgba(229, 57, 53, 0.45);
    transform: scale(1.02);
    background-color: var(--red-l);
  }
}
