:root{
  --bg:#f7f4ee;
  --card:#ffffff;
  --beige:#d3ccc2;
  --text:#1e1e1e;
  --muted:#777;
  --radius:26px;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

body{
  font-family:'Poppins',sans-serif;
  background:var(--bg);
  color:var(--text);
}

/* ================= HERO ================= */
.services-hero{
  padding:70px 0 40px;
  text-align:center;
}

.services-hero h1{
  font-family:'Playfair Display',serif;
  font-size:3rem;
}

.services-hero .light{ color:#c7bfb4; }
.services-hero .dark{ color:#000; }

/* ================= PAGE ================= */
.services-page{
  padding:40px 6% 80px;
}

/* ================= LAYOUT ================= */
.services-layout{
  display:grid;
  grid-template-columns:420px 1fr;
  gap:60px;
  align-items:center;
  margin-bottom:90px;
}

/* ================= IMAGE ================= */
.services-image{
  display:flex;
  justify-content:center;
}

.services-image img{
  width:320px;
  height:320px;
  object-fit:cover;
  border-radius:50%;
  background:#c94f2f;
}

/* ================= CONTENT ================= */
.services-content{ width:100%; }

.service-title{
  font-family:'Playfair Display',serif;
  font-size:2.1rem;
  margin-bottom:20px;
}

/* ================= SERVICE ITEM ================= */
.service-item{
  background:var(--card);
  border-radius:var(--radius);
  margin-bottom:18px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,.06);
}

/* HEADER */
.service-header{
  width:100%;
  background:var(--beige);
  border:none;
  padding:18px 26px;
  font-size:1.05rem;
  font-weight:500;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}

/* BODY (IMPORTANT FIX) */
.service-body{
  padding:26px;
  display:none;            /* 🔥 CLOSED BY DEFAULT */
}

.service-item.active .service-body{
  display:block;           /* 🔥 ONLY ACTIVE OPENS */
}

/* ================= PRICE ================= */
.price-line{
  margin-bottom:6px;
}

.old-price{
  text-decoration:line-through;   /* 🔥 STRIKE FIX */
  color:#999;
  margin-right:10px;
}

.new-price{
  font-size:1.15rem;
  font-weight:600;
  color:#000;
}

/* ================= TEXT ================= */
.service-body p{
  margin:6px 0;
  color:#333;
}

/* ================= INPUT ROW ================= */
.booking-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin:14px 0;
}

/* ================= INPUT STYLING ================= */
.service-body input,
.service-body textarea{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid #ccc;
  font-size:.95rem;
  font-family:'Poppins',sans-serif;
  background:#fff;
  outline:none;
}

.service-body textarea{
  resize:none;
  height:70px;
}

/* ================= BOOK BUTTON ================= */
.book-btn{
  margin-top:10px;
  padding:12px 34px;
  border:none;
  border-radius:30px;
  background:#000;
  color:#fff;
  font-size:.95rem;
  cursor:pointer;
  transition:.3s;
}

.book-btn:hover{
  background:#111;
}

/* ================= MOBILE ================= */
@media(max-width:900px){
  .services-layout{
    grid-template-columns:1fr;
    text-align:center;
  }

  .services-image img{
    width:260px;
    height:260px;
  }

  .booking-row{
    grid-template-columns:1fr;
  }

  .service-title{
    margin-top:20px;
  }
}
.back-home-wrap.center{
  text-align:center;
  margin-top:70px;
}
.back-home-btn{
  display:inline-block;
  padding:12px 24px;
  background:var(--beige);
  color:#080808;
  text-decoration:none;
  border-radius:8px;
  font-size:1rem;
  transition:.4s;
}