/* ===== HERO ===== */
.services-hero {
  position: relative;
  height: 115vh;
  background: url("images/riders.jpg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}
.services-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.services-hero .hero-content {
  z-index: 2;
  animation: fadeUp 1.3s ease forwards;
}
.services-hero h1 {
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.services-hero p {
  margin: 1rem auto 2rem;
  max-width: 650px;
  opacity: 0.9;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}
.btn-primary:hover {
  background: red;
  filter: drop-shadow(5px 7px 9px red);
}

/* ===== QUICK STRIP ===== */
.service-strip {
  background: #fff;
  padding: 3rem 0;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 2rem;
}
.strip-card {
  text-align: center;
  padding: 1.5rem;
}
.strip-card i {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 0.8rem;
}
.strip-card h4 {
  margin-bottom: 0.4rem;
}
.strip-card p {
  color: #555;
  font-size: 0.9rem;
}

/* ===== MAIN GRID ===== */
.services-grid {
  padding: 5rem 0;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 2rem;
}
.service-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  height: 90vh;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.service-card .content {
  padding: 1.5rem;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.service-card h3 {
  color: var(--primary);
  margin-bottom: .5rem;
}
.service-card p {
  color: #444;
  line-height: 1.6;
}
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .services-hero h1 {
    font-size: 2.3rem;
  }
  .service-card{
    height: auto;
  }
  .service-card img{
    height: 450px;
  }
}

/* ===== WHY US ===== */
.why-us {
  background: var(--accent);
  padding: 5rem 0;
  text-align: center;
}
.why-us h2 {
  color: var(--primary);
  margin-bottom: 2rem;
}
.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
  gap: 1.5rem;
}
.reasons div {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: #fff;
  padding: 6rem 0;
  text-align: center;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.testimonial-card {
  background: var(--accent);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.testimonial-card p {
  font-style: italic;
  color: #333;
  margin-bottom: 1rem;
}
.testimonial-card .stars {
  color: gold;
  letter-spacing: 2px;
}

/* ===== CTA ===== */
.cta {
  position: relative;
  background: url("images/cta.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 5rem 2rem;
}
.cta .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-content h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
.cta-content p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {opacity: 0; transform: translateY(40px);}
  to {opacity: 1; transform: translateY(0);}
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  .services-hero h1{font-size:2.3rem;}
}

/*=====================================================
 Dark Mode
 =====================================================*/
 .hero-content h1{
  filter: drop-shadow(5px 9px 14px red);
 }

 .hero-content P{
  filter: drop-shadow(2px 5px 8px red);
 }
 html.dark-mode .strip-card h4{
  color: #000000;
 }
 html.dark-mode .strip-card p{
  color: #333;
 }

 html.dark-mode .reasons div{
  background: #fff;
  color: #222;
  filter: drop-shadow(2px 4px 6px red);
  }
 html.dark-mode .testimonials{
  background: #7a7171;
 }
 html.dark-mode .testimonials h2{
  color: #fff;
  filter: drop-shadow(3px 5px 10px red) opacity(80%);
 }
 html.dark-mode .testimonial-card{
  background: #f0f0f0;
  filter: drop-shadow(5px 8px 16px red);
 }
 html.dark-mode .testimonial-card p{
  color: #222;
 }
  html.dark-mode .cta{
    background: url("images/cta.jpg") center/cover no-repeat;
    filter: brightness(80%);
  }