body {
  background-color: #f9f9f9;
}
.nav-links li a:hover {
  color: #f60404;
}
.staging-detail {
  padding-top: 3rem;
  background: linear-gradient(to bottom, #ffffff, #f9f9f9);
}
span {
  color: #f60404;
  font-weight: bold;
}
.staging-detail section {
  max-width: 1200px;
  margin: 5rem auto;
  padding: 2rem;
  position: relative;
}

.staging-detail section::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #f60404;
  margin: 2rem auto 0;
  border-radius: 2px;
}

.staging-detail h1,
.staging-detail h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #111;
  position: relative;
}
a.staging-email {
  color: #f60404;
  font-weight: bold;
}

.staging-detail h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #f60404;
}

.intro p,
.why-staging p {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: #555;
  line-height: 1.8;
}

.process ol {
  counter-reset: step;
  max-width: 850px;
  margin: 3rem auto;
  padding-left: 0;
  list-style: none;
}

.process li {
  counter-increment: step;
  position: relative;
  margin: 2rem 0;
  padding-left: 3.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

.process li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #f60404;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(246, 4, 4, 0.4);
  transition: transform 0.3s ease;
}

.process li:hover::before {
  transform: scale(1.1);
}

/* Why Choose Us*/
.why-choose-us {
  background: #fff;
  padding: 6rem 2rem;
}

.why-choose-us h2 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 4rem;
  color: #111;
  position: relative;
}

.why-choose-us h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #f60404;
  margin: 1rem auto 0;
  border-radius: 2px;
}

.feature-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin: 4rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s ease-out;
}

.feature-row.show {
  opacity: 1;
  transform: translateY(0);
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-image {
  flex: 1;
}

.feature-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.feature-image img:hover {
  transform: scale(1.03);
}

/* Text styling */
.feature-text {
  flex: 1;
}

.feature-text h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #f60404;
  margin-bottom: 1rem;
}

.feature-text p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  max-width: 550px;
}
.cta {
  text-align: center;
  background: linear-gradient(135deg, #f60404, #a90202);
  color: #fff;
  border-radius: 12px;
  margin: 5rem auto;
  max-width: 1100px;
  padding: 5rem 2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.15rem;
}

.cta .btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #fff;
  color: #f60404;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta .btn:hover {
  background: #f2f2f2;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.cta .btn {
  display: inline-block;
  background: #f60404;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  animation: fadeInUp 2s ease forwards;
}

.cta .btn:hover {
  background: #fff;
  color: #f60404;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(246, 4, 4, 0.5);
}
#year {
  color: #222;
  font-weight: normal;
}

@media (max-width: 900px) {
  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .feature-text p {
    max-width: 100%;
  }
}
