
.hero {
  height: 100vh;
  position: relative;
  color: var(--first-color);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/BG.png') no-repeat center center / cover;
  transform: scale(1.1) translateY(40px);
  opacity: 0;
  transition: transform 1.5s ease, opacity 1.5s ease;
  z-index: 1;
}

.hero.animate::before {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.hero-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  z-index: 5;
  position: relative;
}

.hero-content h1 {
  font-family: var(--font-header);
  margin-top: 4rem;
  font-size: var(--hero-header-size);
  line-height: 1.2;
}

.hero-content span {
  font-weight: bold;
}

.hero-content p {
  font-family: var(--font-body);
  margin: 1rem 0;
  font-size: var(--hero-body-size);
}

.hero-buttons {
  font-size: var(--hero-body-size);
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}



.hero-content h1,
.hero-content p,
.hero-buttons {
  opacity: 0;
  transform: translateY(40px);
}


.hero.animate .hero-content h1 {
  animation: heroTextFade 1s ease forwards;
  animation-delay: 0.6s;
}

.hero.animate .hero-content p {
  animation: heroTextFade 1s ease forwards;
  animation-delay: 0.9s;
}

.hero.animate .hero-buttons {
  animation: heroTextFade 1s ease forwards;
  animation-delay: 1.2s;
}


@keyframes heroTextFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.btn-outline {
  font-family: var(--font-body);
  border-radius: 30px;
  padding: 0.8rem 1.5rem;
  background: transparent;
  border: 2px solid var(--first-color);
  color: var(--first-color);
  transition: 0.5s ease;
}

.btn-outline:hover {
  background-color: var(--first-color);
  color: var(--third-color);
}




.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}



/* ===== WHY US / FEATURES ===== */
/* ===== SECTION COMMON ===== */
.section-eyebrow {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.section-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--brown);
}
.features {
  background: var(--cream);
  padding: 5rem 4rem 6rem;
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.features-text .section-title {
  margin-bottom: 1.5rem;
}

.features-text p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--brown-mid);
  margin-bottom: 2.2rem;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--brown-mid);
  letter-spacing: 0.3px;
  line-height: 1.5;
}

.feature-list li i {
  color: var(--gold);
  font-size: 0.75rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.features-visual {
  position: relative;
}

.features-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 3px;
  filter: saturate(0.85);
}

.features-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #5a8a72, #2d4a3e);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-img-placeholder i {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.2);
}

.features-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.8rem;
  background: var(--gold);
  padding: 1.4rem 1.6rem;
  border-radius: 3px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(60, 42, 33, 0.25);
}

.features-badge .badge-num {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
}

.features-badge .badge-label {
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.75;
  margin-top: 0.2rem;
}



.reviews {
  position: relative;
  color: var(--third-color);
  padding: 5rem 1rem;
  text-align: center;
  overflow: hidden;
  background-color: var(--fourth-color);
  min-height: 100vh;
}


.reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--fourth-color);
  z-index: 0;
}


.reviews > * {
  position: relative;
  z-index: 1;
}

.reviews-header h2 {
  font-family: var(--font-header);
  font-size: var(--header-section-size);
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--third-color);
  margin-bottom: 3.50rem;
}

.reviews-header p {
  font-family: var(--font-body);
  font-size: var(--body-section-size);
  letter-spacing: 2px;
  color: var(--third-color);
  margin-bottom: 0.5rem;
}


.review-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  top: 1rem;
  margin: auto;
}


.review-card {
  font-family: var(--font-body);
  color: var(--third-color);
  max-width: 750px;
  width: 100%;
  padding: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.stars {
  color: var(--text-hover);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.review-text {
  font-family: var(--font-header);
  font-size: 3rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  font-weight: bold;
}

.reviewer {
  margin-top: auto;
  text-align: center;
}


.reviewer span {
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.nav-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG DEFAULT STATE */
.arrow-icon {
  width: 40px;
  height: 40px;
  color: var(--third-color);
  opacity: 0.85;
  transition: 
      color 0.3s ease,
      transform 0.3s ease,
      opacity 0.3s ease;
}

/* HOVER EFFECT — SVG ONLY */
.nav-btn:hover .arrow-icon {
  color: var(--second-color);
  opacity: 1;
}

/* DIRECTIONAL MICRO-MOVEMENT (LUXURY FEEL) */
.nav-btn.next:hover .arrow-icon {
  transform: translateX(6px);
}

.nav-btn.prev:hover .arrow-icon {
  transform: translateX(-6px);
}












