body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9f6f4;
  color: #2a2a2a;
}

section {
  padding: 100px 20px;
  max-width: 1100px;
  margin: auto;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 600;
  letter-spacing: 1px;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 25px;
  position: relative;
}

h2::after {
  content: "";
  width: 60px;
  height: 2px;
  background: #b76e79;
  display: block;
  margin-top: 12px;
}

.hero {
  text-align: center;
  padding: 160px 20px;
  background: linear-gradient(135deg, #f3e8ea, #fdfbfa);
}

.hero p {
  font-size: 20px;
  color: #6b5f61;
}

.btn {
  display: inline-block;
  margin-top: 35px;
  padding: 15px 48px;
  background: #b76e79;
  color: white;
  text-decoration: none;
  font-weight: 500;
  border-radius: 30px;
  transition: 0.3s ease;
  box-shadow: 0 6px 20px rgba(183,110,121,0.25);
}

.btn:hover {
  background: #a85f6a;
  transform: translateY(-3px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

.service-card {
  background: white;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(183,110,121,0.15);
}

.service-card h3 {
  margin-bottom: 15px;
  color: #b76e79;
}

.cta-section {
  text-align: center;
  background: linear-gradient(135deg, #b76e79, #d89ca6);
  color: white;
  border-radius: 25px;
  padding: 80px 30px;
}

.cta-section h2::after {
  display: none;
}

/* ===== ABOUT SECTION ===== */

.about-section {
  background: #fff;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #5f5456;
}

.about-image img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(183,110,121,0.2);
}

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

/* ===== HERO LUXURY LINE ===== */

.hero-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #b76e79, #d8a1aa);
  margin: 25px auto;
}

/* ===== BEAUTY FOOTER ===== */

.footer {
  text-align: center;
  padding: 70px 20px 50px;
  background: #fdf8f6;
  border-top: 1px solid rgba(183,110,121,0.15);
  font-size: 13px;
  letter-spacing: 1px;
  color: #9a878a;
}

.footer-made {
  margin-top: 12px;
}

.heart {
  color: #b76e79;
  margin: 0 4px;
  font-size: 14px;
}

/* ===== BEAUTY FOOTER PREMIUM LINK ===== */

.footer a {
  position: relative;
  color: #b76e79;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background: #b76e79;
  transition: 0.3s ease;
}

.footer a:hover::after {
  width: 100%;
}


/* ===== PREMIUM TESTIMONIAL SLIDER ===== */

.testimonial-section {
  padding: 120px 20px;
  background: #fdf9f8;
}

.testimonial-section h2 {
  text-align: center;
  margin-bottom: 70px;
}

.testimonial-slider {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
}

.testimonial-slider::-webkit-scrollbar {
  height: 6px;
}

.testimonial-slider::-webkit-scrollbar-thumb {
  background: rgba(183,110,121,0.4);
  border-radius: 10px;
}

.testimonial-card {
  min-width: 320px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: white;
  padding: 40px 30px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: 0.4s ease;
  text-align: center;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(183,110,121,0.2);
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(183,110,121,0.25);
}

.testimonial-card p {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  line-height: 1.7;
  color: #3e3234;
  margin-bottom: 20px;
}

.testimonial-card span {
  font-size: 13px;
  letter-spacing: 1px;
  color: #9a878a;
}

/* ===== BEAUTY LOGO ===== */

.hero-logo {
  width: 120px;
  margin-bottom: 25px;
  opacity: 0.9;
  transition: 0.3s ease;
}

.hero-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}
