.hero {
  position: relative;
  height: 90vh;
  width: 100%;
  overflow: hidden;
}

.hero-reveal, .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-reveal {
  z-index: 1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center bottom;
  mask-position: center bottom;
  -webkit-mask-size: 40% auto;
  mask-size: 40% auto;
}


.next {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s ease-in-out;
  background: #F5F0E6;
  color: #1A1918;
  padding: 90px;
}

.next.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.next p {
  line-height: 150%;
  font-size: 26px;
  margin: 0;
  margin-bottom: 20px;
}

.hero-content {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10; /* Make sure it's above everything */
  text-align: center;
  color: #fff; /* or your preferred color */
  pointer-events: none;
  width: 100%;
}

.hero-content h1{
  font-size: 92px;
  color: #000;
  margin: 0;
}

.hero-content p {
  font-size: 24px;
  color: #000;
  margin: 0;
}

.why-choose{
  background: #F6EBCF;
  padding: 64px 0;
  color: #2b2b2b;
}

.why-choose h2{
  margin: 0;
  text-align: center;
  font-size: clamp(44px, 3vw, 44px);
  letter-spacing: 0.01em;
  font-weight: 800;
  color: #1d1d1d;
}

.why-choose__subtitle{
  margin: 10px auto 0;
  text-align: center;
  color: rgba(0,0,0,0.55);
  font-size: 24px;
  line-height: 1.6;
}

.why-choose__grid{
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.why-choose__item{
  text-align: center;
  padding: 8px 6px;
}

.why-choose__icon{
  display: grid;
  place-items: center;
  position: relative;
}

.why-choose__icon img{
  width: 100px;
  height: 100%;
  display: block;
  position: relative;
  z-index: 1;
  object-fit: contain;
}

.why-choose__item .why-choose__item-title{
  margin: 8px 0 6px;
  font-size: 22px;
  font-weight: 800;
  color: #6a0017;
}

.why-choose__item p{
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(0,0,0,0.55);
}


.testimonials{
  background-color: #F5F0E6;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 70px 0;
}

.testimonials__inner{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 28px;
  min-height: 320px;
}

.testimonials__left h2{
  margin: 0;
  font-size: clamp(44px, 3vw, 44px);
  font-weight: 800;
  color: #6a0017;
}

.testimonials__subtitle{
  margin: 10px 0 0;
  color: rgba(0,0,0,0.55);
  font-size: 24px;
}

.testimonial-card{
  background: rgba(255,255,255,0.92);
  border-radius:0px 46px;
  padding: 22px 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  max-width: 520px;
  margin-left: auto;
  text-align: left;
}

.cta{
  background: #F6EBCF;
  padding: 70px 0;
  text-align: center;
}

.cta h2{
  margin: 0;
  font-size: clamp(44px, 3vw, 44px);
  font-weight: 800;
  color: #1d1d1d;
}

.cta__subtitle{
  margin: 10px auto 0;
  max-width: 720px;
  color: rgba(0,0,0,0.55);
  font-size: 24px;
  line-height: 1.6;
}

.cta__actions{
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  border: 1px solid transparent;
  transition: transform 120ms ease, background-color 120ms ease, color 120ms ease, border-color 120ms ease;
}

.btn:hover,
.btn:focus{
  transform: translateY(-1px);
}

.btn--primary{
  background: #6a0017;
  border-radius: 0 24px;
  color: #fff;
  border-color: #6a0017;
}

.btn--primary:hover,
.btn--primary:focus{
  background: #5a0013;
  border-color: #5a0013;
}

.btn--outline{
  background: transparent;
  border-radius: 24px 0 ;
  color: #6a0017;
  border-color: rgba(106, 0, 23, 0.65);
}

.btn--outline:hover,
.btn--outline:focus{
  background: rgba(106, 0, 23, 0.08);
  border-color: rgba(106, 0, 23, 0.85);
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

@media (max-width: 1000px){
  .why-choose__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 900px){

  .hero{
    height: 85vh;
  }


.hero p{
  font-size: 14px;
}

.next {
  padding: 80px 20px;
}

.next p {
  font-size: 22px;
}

.hero-content h1{
  font-size: 54px;
}

  .why-choose__item p{
    padding: 0 12px;
  }

  .why-choose__subtitle{
    font-size: 14px;
    padding: 0 12px;
  }

  .why-choose__item .why-choose__item-title{
    font-size: 20px;
  }

  .testimonial-card__text{
    font-size: 14px;
  }

  .testimonials__subtitle{
    font-size: 14px;
  }

  .cta__subtitle{
    font-size: 14px;
  }
  .testimonials__inner{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .testimonial-card{
    margin: 12px auto 0;
  }
}

@media (max-width: 520px){
    .why-choose{
      padding: 52px 0;
    }
  
    .why-choose__grid{
      grid-template-columns: 1fr;
    }
  }
  

