/* =========================
   HERPO SECTION
   ========================= */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 0.5;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 760px;
}

.hero-tag {
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05;
  margin-bottom: 0rem;
}

.hero-text {
  font-size: 1.15rem;
  max-width: 620px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  border: 1px solid white;
}

.btn-outline:hover {
  background: white;
  color: var(--color-text-dark);
}


/* =========================
   Info SECTION
   ========================= */

.about-move {
  padding: 6rem 2rem;
  background: #fff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* TEXT */
.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #333;
}

/* IMAGES GRID */
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-images img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* make one image larger for hierarchy */
.about-images img:first-child {
  grid-column: span 2;
  height: 240px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-images {
    grid-template-columns: 1fr;
  }

  .about-images img:first-child {
    grid-column: auto;
  }
}


/* =========================
   Testimonials SECTION
   ========================= */
.testimonials {
  padding: 6rem 2rem;
  background: #f7f7f7;
}

.testimonials-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.testimonials-sub {
  margin-bottom: 3rem;
  color: #666;
}

/* GRID */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* CARD */
.testimonial-card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: left;
  transition: 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card p {
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #333;
}

.testimonial-card span {
  font-size: 0.9rem;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}