
/* ===============================
   TESTIMONIALS SECTION
================================ */
.testimonials-section {
  background: #f8fafc;
  padding: 90px 16px;
}

/* ===============================
   SECTION HEADER
================================ */
.testimonials-section .section-header {
  max-width: 820px;
  margin: 0 auto 55px;
  text-align: center;
}

.testimonials-section .sub-heading {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-red);
  margin-bottom: 10px;
}

.testimonials-section h2 {
  font-size: 44px;
  color: var(--text-main);
}

.testimonials-section h2 span {
  color: var(--primary-red);
}

/* ===============================
   TESTIMONIAL GRID
================================ */
.testimonial-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ===============================
   CARD
================================ */
.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 34px 30px 36px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.15);
}

/* ===============================
   QUOTE ICON
================================ */
.quote-icon {
  position: absolute;
  top: 22px;
  right: 26px;
  font-size: 64px;
  line-height: 1;
  color: rgba(196,0,0,0.15);
  font-family: serif;
}

/* ===============================
   STARS
================================ */
.stars {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

/* ===============================
   REVIEW TEXT
================================ */
.review-text {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 22px;
}

/* ===============================
   CLIENT INFO
================================ */
.client-info {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 16px;
}

.client-meta h4 {
  font-size: 16px;
  color: var(--text-main);
  margin-bottom: 2px;
}

.client-meta span {
  font-size: 13px;
  color: var(--text-light);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .testimonial-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 70px 14px;
  }

  .testimonials-section h2 {
    font-size: 34px;
  }

  .testimonial-container {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 30px 26px 32px;
  }
}


/* ===============================
   COMMON SECTION HEADER
================================ */
.section-header {
  max-width: 860px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-header .sub-heading {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-red);
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 44px;
  color: var(--text-main);
}

.section-header h2 span {
  color: var(--primary-red);
}

.section-header p {
  font-size: 15px;
  color: var(--text-light);
  margin-top: 10px;
}

/* ===============================
   COMPLIANCE / PROCESS SECTION
================================ */
.compliance-section {
  background: #f8fafc;
  padding: 90px 16px;
}

.process-flow {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}

.process-step {
  background: var(--white);
  border-radius: 18px;
  padding: 30px 22px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.15);
}

.step-number {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--primary-red);
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(196,0,0,0.45);
}

.process-step h3 {
  font-size: 17px;
  color: var(--text-main);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===============================
   STATS SECTION
================================ */
.stats-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  padding: 70px 16px;
}

.stats-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h2 {
  font-size: 42px;
  color: var(--primary-red);
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 14px;
  color: #cbd5f5;
  letter-spacing: 0.5px;
}

/* ===============================
   FLEET SECTION
================================ */
.fleet-section {
  background: var(--white);
  padding: 90px 16px;
}

.fleet-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.fleet-item {
  background: #f8fafc;
  border-radius: 18px;
  padding: 36px 30px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.fleet-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.15);
}

.fleet-item i {
  font-size: 34px;
  color: var(--primary-red);
  margin-bottom: 14px;
}

.fleet-item h3 {
  font-size: 18px;
  color: var(--text-main);
  margin-bottom: 8px;
}

.fleet-item p {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .process-flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .compliance-section,
  .fleet-section {
    padding: 70px 14px;
  }

  .section-header h2 {
    font-size: 34px;
  }

  .process-flow {
    grid-template-columns: 1fr;
  }

  .process-step {
    text-align: left;
    display: flex;
    gap: 20px;
  }

  .step-number {
    margin: 0;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item h2 {
    font-size: 36px;
  }
}
/* ===============================
   WHY CHOOSE G9S
================================ */
.why-choose-section {
  background: #ffffff;
  padding: 90px 16px;
}

/* ===============================
   SECTION HEADER
================================ */
.why-choose-section .section-header {
  max-width: 820px;
  margin: 0 auto 50px;
  text-align: center;
}

.why-choose-section .sub-heading {
  display: inline-block;
  color: var(--primary-red);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
}

.why-choose-section h2 {
  font-size: 44px;
  color: var(--text-main);
}

.why-choose-section h2 span {
  color: var(--primary-red);
}

/* ===============================
   GRID
================================ */
.advantage-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* ===============================
   CARD
================================ */
.advantage-card {
  background: var(--white);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover */
.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.15);
}

/* ===============================
   ICON
================================ */
.adv-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(196,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.adv-icon i {
  font-size: 20px;
  color: var(--primary-red);
}

/* ===============================
   TEXT
================================ */
.advantage-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
}

.advantage-card p {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .why-choose-section {
    padding: 70px 14px;
  }

  .why-choose-section h2 {
    font-size: 34px;
  }

  .advantage-card {
    padding: 26px 22px;
  }
}

@media (max-width: 480px) {
  .advantage-card h3 {
    font-size: 17px;
  }

  .advantage-card p {
    font-size: 14px;
  }
}

/* ===============================
   G9S SERVICES BACKGROUND
================================ */
.services-bg {
  position: relative;
  min-height: 100%;
  background:
    linear-gradient(rgba(5,10,18,0.88), rgba(5,10,18,0.88)),
    url("/assets/img/td4.JPG")
    center / cover no-repeat;
}

@media (min-width: 1024px) {
  .services-bg {
    background-attachment: fixed;
  }
}

.services-snapshot {
  background: transparent;
}

/* ===============================
   SERVICES SECTION
================================ */
.services-snapshot {
  background: transparent;
  padding: 90px 16px;
}

/* ===============================
   SECTION HEADER
================================ */
.section-header {
  max-width: 860px;
  margin: 0 auto 45px;
  text-align: center;
}

.section-header .sub-heading {
  display: inline-block;
  color: var(--primary-red);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 44px;
  color: var(--text-main);
  margin-bottom: 10px;
}

.section-header h2 span {
  color: var(--primary-red);
}

.section-header p {
  font-size: 15px;
  color: var(--text-light);
}

/* ===============================
   SERVICES GRID
================================ */
.services-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

/* ===============================
   SERVICE CARD
================================ */
.service-card {
  position: relative;
  display: block;
  background: var(--white);
  border-radius: 18px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover lift */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.25);
}

/* ===============================
   RED HOVER LINE
================================ */
.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--primary-red);
  transition: width 0.4s ease;
}

.service-card:hover::before {
  width: 100%;
}

/* ===============================
   CARD CONTENT
================================ */
.card-inner {
  padding: 26px 24px;
}

/* ===============================
   PROFESSIONAL ICON
================================ */
.service-icon {
  width: 44px;
  height: 44px;
  background: rgba(196,0,0,0.12);
  border-radius: 10px;
  margin-bottom: 14px;
  position: relative;
}

.service-icon::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px solid var(--primary-red);
  border-radius: 4px;
}

/* ===============================
   TEXT
================================ */
.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===============================
   ACCESSIBILITY
================================ */
.service-card:focus-visible {
  outline: 2px solid var(--primary-red);
  outline-offset: 4px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .services-snapshot {
    padding: 70px 14px;
  }

  .section-header h2 {
    font-size: 34px;
  }

  .card-inner {
    padding: 22px 20px;
  }
}

@media (max-width: 480px) {
  .section-header p {
    font-size: 14px;
  }

  .service-card h3 {
    font-size: 16px;
  }
}

/* ===============================
   TOUCH DEVICES
================================ */
@media (hover: none) {
  .service-card::before {
    width: 100%;
  }
}
/* ABOUT SECTION */
.about-section {
  background: var(--white);
  padding: 120px 20px;
}

/* MAIN CONTAINER */
.about-container {
  max-width: 1350px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* IMAGE */
.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.15);
}

/* EXPERIENCE BADGE */
.experience-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--primary-red);
  color: var(--white);
  padding: 24px 30px;
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(196,0,0,0.45);
}

.experience-badge h3 {
  font-size: 38px;
  margin: 0;
}

.experience-badge p {
  font-size: 15px;
  margin-top: 6px;
}

/* TEXT */
.sub-heading {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--primary-red);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-text h2 {
  font-size: 54px;
  line-height: 1.1;
  color: var(--text-main);
  margin-bottom: 20px;
}

.about-text h2 span {
  color: var(--primary-red);
}

.about-text p {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.9;
  max-width: 560px;
  margin-bottom: 35px;
}

/* CHECK LIST */
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-main);
}

.check-list .dot {
  width: 12px;
  height: 12px;
  background: var(--primary-red);
  border-radius: 50%;
  margin-right: 16px;
  box-shadow: 0 0 0 6px rgba(196,0,0,0.15);
}

/* GRID */
.about-grid {
  max-width: 1350px;
  margin: 110px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARDS */
.grid-card {
  background: var(--white);
  border-radius: 24px;
  padding: 45px 35px;
  text-align: left;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  transition: var(--transition);
  border-top: 5px solid var(--primary-red);
}

.grid-card h3 {
  font-size: 22px;
  color: var(--text-main);
  margin-bottom: 14px;
}

.grid-card p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
}

/* PROFESSIONAL ICON */
.grid-card .icon {
  width: 48px;
  height: 48px;
  background: rgba(196,0,0,0.12);
  border-radius: 12px;
  margin-bottom: 18px;
  position: relative;
}

.grid-card .icon::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px solid var(--primary-red);
  border-radius: 4px;
}

/* HIGHLIGHT CARD */
.grid-card.highlighted {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  color: var(--white);
  border-top-color: var(--primary-red);
}

.grid-card.highlighted h3,
.grid-card.highlighted p {
  color: var(--white);
}

/* HOVER */
.grid-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-text h2 {
    font-size: 44px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 80px 15px;
  }

  .about-text h2 {
    font-size: 36px;
  }

  .experience-badge {
    padding: 18px 22px;
  }

  .experience-badge h3 {
    font-size: 30px;
  }
}
:root {
  --primary-red: #c40000;
  --navy-dark: #050a12;
  --navy-mid: #0f172a;
  --text-main: #000000;
  --text-light: #000000;
  --white: #ffffff;
  --transition: all 0.4s ease;
}

/* HERO BASE */
.hero-g9s {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* BACKGROUND SLIDER */
.bg-slider {
  position: absolute;
  inset: 0;
  display: flex;
  width: 500%;
  height: 100%;
  animation: bgSlide 25s infinite;
}

.bg-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5,10,18,0.9),
    rgba(5,10,18,0.75),
    rgba(5,10,18,0.6)
  );
  z-index: 1;
}

/* CONTENT */
.hero-content-wrap {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  width: 100%;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.2fr 0.6fr;
  align-items: center;
}

/* TEXT */
.hero-text h1 {
  font-size: 60px;
  line-height: 1.1;
  color: var(--white);
}

.hero-text h1 span {
  color: var(--primary-red);
}

.hero-text p {
  margin: 25px 0 40px;
  font-size: 18px;
  color: var(--text-light);
  max-width: 520px;
}

/* BUTTON */
.hero-btn {
  display: inline-block;
  padding: 15px 38px;
  background: var(--primary-red);
  color: var(--white);
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(196,0,0,0.4);
}

.hero-btn:hover {
  background: #a30000;
  transform: translateY(-3px);
}

.hero-logo {
  display: flex;
  justify-content: center;
}

.hero-logo img {
  width: 110%;
  max-width: 520px;
  animation: floatLogo 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

/* ANIMATIONS */
@keyframes bgSlide {
  0%   { transform: translateX(0); }
  20%  { transform: translateX(0); }
  25%  { transform: translateX(-20%); }
  45%  { transform: translateX(-20%); }
  50%  { transform: translateX(-40%); }
  70%  { transform: translateX(-40%); }
  75%  { transform: translateX(-60%); }
  95%  { transform: translateX(-60%); }
  100% { transform: translateX(-80%); }
}

@keyframes floatLogo {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-18px); }
  100% { transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-content-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-text p {
    margin: 20px auto 35px;
  }

  .hero-logo {
    margin-top: 40px;
  }
}
/* TRUST SECTION */
.trust-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  padding: 30px 0;
  overflow: hidden;
  position: relative;
}

/* FADE EDGES */
.trust-section::before,
.trust-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
}

.trust-section::before {
  left: 0;
  background: linear-gradient(to right, var(--navy-dark), transparent);
}

.trust-section::after {
  right: 0;
  background: linear-gradient(to left, var(--navy-dark), transparent);
}

/* MARQUEE */
.marquee-container {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: flex;
  gap: 40px;
  padding: 10px 0;
  animation: marquee 25s linear infinite;
}

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

/* BADGES */
.badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 50px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.badge-item i {
  color: var(--primary-red);
  font-size: 18px;
}

.badge-item:hover {
  background: rgba(196,0,0,0.15);
  border-color: var(--primary-red);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 40px rgba(196,0,0,0.4);
}

/* ANIMATION */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .badge-item {
    padding: 12px 20px;
    font-size: 14px;
  }

  .badge-item i {
    font-size: 16px;
  }

  .marquee-content {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .trust-section {
    padding: 20px 0;
  }

  .badge-item {
    padding: 10px 16px;
    font-size: 13px;
  }
}