/* ================= ABOUT SECTION ================= */
.about-section {
  background: #0e0e0e;
  padding: 100px 60px;
}

/* CONTAINER */
.about-container {
  display: flex;
  gap: 60px;
  align-items: center;
}

/* TEXT SIDE */
.about-text {
  flex: 1;
}

/* TAG */
.about-tag {
  color: #c6a47e;
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 15px;
}

/* HEADING */
.about-text h2 {
  font-size: 44px;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.3;
}

/* DESCRIPTION */
.about-desc {
  color: #cfcfcf;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 14px;
}

/* SERVICES TAGS */
.about-services {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-services span {
  border: 1px solid #2a2a2a;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  color: #c6a47e;
  background: #161616;
}

/* ================= IMAGES (GEOMETRIC) ================= */
.about-images {
  flex: 1;
  position: relative;
  height: 500px;
}

/* BIG IMAGE */
.img1 {
  position: absolute;
  width: 60%;
  height: 70%;
  object-fit: cover;
  border-radius: 20px;
  top: 0;
  left: 0;
}

/* TOP RIGHT IMAGE */
.img2 {
  position: absolute;
  width: 40%;
  height: 40%;
  object-fit: cover;
  border-radius: 30px; /* 🔥 curved luxury */
  top: 0;
  right: 0;
}

/* BOTTOM IMAGE */
.img3 {
  position: absolute;
  width: 50%;
  height: 40%;
  object-fit: cover;
  border-radius: 20px;
  bottom: 0;
  right: 10%;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
  }

  .about-images {
    width: 100%;
    height: 400px;
  }

  .about-text h2 {
    font-size: 32px;
  }
}

/* MOBILE */
@media (max-width: 500px) {

  .about-section {
    padding: 60px 20px;
  }

  .about-images {
    height: 300px;
  }

  .about-text h2 {
    font-size: 26px;
  }

  .about-services {
    justify-content: center;
  }
}
/* ================= HERO ================= */
.about-hero {
  width: 100%;
  height: 400px; /* adjust if needed */
  background: url("../images/about-hero.jpeg") center/cover no-repeat;
  position: relative;
}

/* DARK OVERLAY */
.about-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55); /* dark fade */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TEXT */
.about-overlay h1 {
  color: #ffffff;
  font-size: 70px;
  letter-spacing: 4px;
  font-weight: 300;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .about-overlay h1 {
    font-size: 45px;
  }
}

@media (max-width: 500px) {
  .about-hero {
    height: 300px;
  }

  .about-overlay h1 {
    font-size: 32px;
  }
}

/* ================= TESTIMONIALS ================= */
.testimonials {
  background: #0e0e0e;
  padding: 100px 60px;
  text-align: center;
}

/* HEADING */
.test-tag {
  color: #c6a47e;
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 10px;
}

.testimonials h2 {
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 50px;
}

/* GRID */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.testimonial-card {
  background: #161616;
  padding: 30px;
  border-radius: 15px;
  text-align: left;
  transition: 0.3s;
  border: 1px solid #2a2a2a;
}

/* HOVER */
.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: #c6a47e;
}

/* REVIEW TEXT */
.review {
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* STARS */
.stars {
  color: #c6a47e;
  margin-bottom: 15px;
  font-size: 14px;
}

/* NAME */
.testimonial-card h4 {
  color: #ffffff;
  margin-bottom: 5px;
}

/* LOCATION */
.testimonial-card span {
  color: #888;
  font-size: 13px;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials h2 {
    font-size: 32px;
  }
}

/* MOBILE */
@media (max-width: 500px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonials {
    padding: 60px 20px;
  }
}