/* ============================
   PAGE HEADER (HERO)
============================= */
.page-header {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 72px;
}

.ph-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=1600&q=85&fit=crop');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.page-header:hover .ph-bg { transform: scale(1); }

.ph-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,18,6,0.92) 0%,
    rgba(26,18,6,0.6)  35%,
    rgba(26,18,6,0.15) 65%,
    transparent 100%
  );
  z-index: 1;
}

/* Decorative diagonal gold line */
.ph-deco {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.ph-deco::before {
  content: '';
  position: absolute;
  top: 60px; right: 80px;
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.ph-deco::after {
  content: '';
  position: absolute;
  bottom: 120px; left: 80px;
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.ph-content {
  position: relative;
  z-index: 3;
  padding: 0 80px 24px;
  width: 100%;
}
.ph-breadcrumb-bar {
  padding: 0 0 20px 0;
}
.ph-main-row {
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: flex-end;
  gap: 40px;
}

.ph-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-family: 'DM Sans', sans-serif;
  color: rgba(255,255,255,0.45);
  letter-spacing: 1px;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
  padding: 7px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
}
.ph-breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color .3s; }
.ph-breadcrumb a:hover { color: var(--gold-light); }
.ph-breadcrumb > span:not(.ph-sep) { color: var(--gold-light); font-weight: 500; }
.ph-sep { opacity: .4; }

.ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(184,150,46,0.2);
  border: 1px solid rgba(184,150,46,0.45);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 16px;
  backdrop-filter: blur(6px);
}

.ph-title {
  font-family: 'El Messiri', serif;
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 600;
  color: #FDF8EE;
  line-height: 1.05;
  margin-bottom: 16px;
}
.ph-title em {
  color: var(--gold-light);
  font-style: normal;
}

.ph-subtitle {
  color: rgba(253,248,238,0.65);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 28px;
}

.ph-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.ph-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
}
.ph-meta-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(184,150,46,0.2);
  border: 1px solid rgba(184,150,46,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.ph-meta-item b { color: var(--gold-light); font-weight: 500; }

/* Quick book card floating on header */
.ph-quick-book {
  background: rgba(248,243,235,0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 28px 28px;
  min-width: 260px;
  border: 1px solid rgba(184,150,46,0.25);
  box-shadow: 0 20px 60px rgba(26,18,6,0.25);
  text-align: center;
}
.qb-price {
  font-family: 'El Messiri', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.qb-price sub { font-size: 16px; font-family: 'DM Sans', sans-serif; color: var(--muted); vertical-align: baseline; }
.qb-from { font-size: 12px; color: var(--muted); font-family: 'DM Sans', sans-serif; margin-bottom: 16px; }
.qb-divider { height: 1px; background: var(--cream-dark); margin: 14px 0; }
.qb-detail { display: flex; justify-content: space-between; font-size: 13px; padding: 5px 0; }
.qb-detail span:first-child { color: var(--muted); font-family: 'DM Sans', sans-serif; }
.qb-detail span:last-child { color: var(--deep); font-weight: 500; }
.qb-btn {
  display: block;
  width: 100%;
  background: var(--gold);
  color: white;
  border: none;
  padding: 13px;
  border-radius: 50px;
  font-size: 15px;
  font-family: 'Tajawal', sans-serif;
  font-weight: 500;
  cursor: pointer;
  margin-top: 18px;
  transition: all .3s;
  text-align: center;
  text-decoration: none;
}
.qb-btn:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,150,46,0.4); }

/* ============================
   MAIN LAYOUT
============================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.page-body { padding: 80px 0; }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

/* ============================
   SERVICE CONTENT (LEFT)
============================= */
.sec-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 10.5px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
}
.sec-title {
  font-family: 'El Messiri', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--deep);
  line-height: 1.2;
  margin-bottom: 20px;
}
.sec-title em { color: var(--gold); font-style: normal; }

.service-desc {
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.95;
  margin-bottom: 32px;
}

/* Image gallery */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 200px;
  gap: 12px;
  margin-bottom: 48px;
  border-radius: 20px;
  overflow: hidden;
}
.gal-item {
  overflow: hidden;
  position: relative;
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gal-item:hover img { transform: scale(1.06); }
.gal-item.main {
  grid-row: 1 / 3;
  border-radius: 20px 0 0 20px;
}
.gal-item:nth-child(2) { border-radius: 0 20px 0 0; }
.gal-item:nth-child(3) { border-radius: 0 0 20px 0; }

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
.benefit-card {
  background: var(--white);
  border-radius: 16px;
  padding: 22px 20px;
  border: 1px solid var(--cream-dark);
  transition: border-color .3s, transform .3s;
}
.benefit-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.benefit-icon { font-size: 28px; margin-bottom: 10px; }
.benefit-title { font-family: 'El Messiri', serif; font-size: 16px; color: var(--deep); margin-bottom: 6px; font-weight: 500; }
.benefit-text { font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* Steps */
.steps { margin-bottom: 48px; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--cream-dark);
  position: relative;
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  flex-shrink: 0;
}
.step-body h4 {
  font-family: 'El Messiri', serif;
  font-size: 17px;
  color: var(--deep);
  margin-bottom: 6px;
  font-weight: 500;
}
.step-body p { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* ============================
   BOOKING SIDEBAR (RIGHT)
============================= */
.booking-sidebar {
  position: sticky;
  top: 100px;
}

.book-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  box-shadow: 0 8px 40px rgba(42,32,16,0.08);
}

.book-card-header {
  background: var(--deep);
  padding: 28px 30px 24px;
}
.book-card-header .price {
  font-family: 'El Messiri', serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.book-card-header .price sub {
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  color: rgba(255,255,255,0.45);
  vertical-align: baseline;
}
.book-card-header .price-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-family: 'DM Sans', sans-serif;
  margin-top: 4px;
  letter-spacing: 1px;
}

.book-card-body { padding: 26px 30px; }

.bfg { display:flex; flex-direction:column; gap:6px; margin-bottom:16px; }
.bfg label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
}
.bfg input,
.bfg select {
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--deep);
  font-family: 'Tajawal', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color .3s;
  direction: rtl;
  width: 100%;
  cursor: pointer;
}
.bfg input:focus,
.bfg select:focus {
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 3px rgba(184,150,46,0.1);
}

.bfg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.book-divider { height: 1px; background: var(--cream-dark); margin: 18px 0; }

.book-summary {
  background: var(--cream);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
}
.bs-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
}
.bs-row:not(:last-child) { border-bottom: 1px solid var(--cream-dark); }
.bs-label { color: var(--muted); }
.bs-val { color: var(--deep); font-weight: 500; }
.bs-val.gold { color: var(--gold); font-weight: 600; font-size: 15px; }

.book-btn {
  display: block;
  width: 100%;
  background: var(--gold);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 50px;
  font-size: 16px;
  font-family: 'Tajawal', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all .3s;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.book-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(255,255,255,0.1));
}
.book-btn:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,150,46,0.4); }

.book-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  margin-top: 12px;
  line-height: 1.6;
}

/* Time slots */
.slots-wrap { margin-bottom: 16px; }
.slots-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 10px;
}
.slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.slot {
  padding: 9px 4px;
  border-radius: 10px;
  border: 1.5px solid var(--cream-dark);
  background: var(--cream);
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  color: var(--deep);
  text-align: center;
  cursor: pointer;
  transition: all .25s;
}
.slot:hover { border-color: var(--gold-light); color: var(--gold); }
.slot.selected { border-color: var(--gold); background: var(--gold); color: white; }
.slot.unavailable { opacity: .35; cursor: not-allowed; text-decoration: line-through; }
.slots-msg {
  grid-column: 1 / -1;
  text-align: center;
  padding: 14px 8px;
  font-family: 'Tajawal', sans-serif;
  font-size: 13px;
  color: var(--muted);
}

/* Staff picker */
.staff-list { display: flex; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.staff-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.staff-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--cream-dark);
  transition: border-color .3s;
}
.staff-item.selected .staff-avatar { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,150,46,0.2); }
.staff-avatar img { width: 100%; height: 100%; object-fit: cover; }
.staff-name { font-size: 11px; color: var(--muted); font-family: 'DM Sans', sans-serif; text-align: center; }
.staff-item.selected .staff-name { color: var(--gold); }

/* ============================
   RELATED SERVICES
============================= */
.related-sec {
  background: var(--white);
  padding: 80px 0;
}
.related-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.link-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  border: 1.5px solid var(--cream-dark);
  padding: 9px 20px;
  border-radius: 50px;
  transition: all .3s;
}
.link-all:hover { border-color: var(--gold); color: var(--gold); }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.related-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  transition: transform .35s, box-shadow .35s;
  text-decoration: none;
  display: block;
}
.related-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(42,32,16,0.12);
  border-color: rgba(184,150,46,0.3);
}
.rc-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.rc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.related-card:hover .rc-img img { transform: scale(1.06); }
.rc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,6,0.4), transparent 60%);
}
.rc-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(184,150,46,0.9);
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 1px;
}
.rc-body { padding: 20px 22px; }
.rc-name {
  font-family: 'El Messiri', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--deep);
  margin-bottom: 8px;
}
.rc-desc { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; font-weight: 300; }
.rc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--cream-dark);
}
.rc-price { font-size: 16px; color: var(--gold); font-weight: 500; font-family: 'DM Sans', sans-serif; }
.rc-meta { font-size: 12px; color: var(--muted); font-family: 'DM Sans', sans-serif; }
.rc-arrow {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 14px;
  transition: background .3s;
  flex-shrink: 0;
}
.related-card:hover .rc-arrow { background: var(--gold-dark); }

/* ============================
   SUCCESS STATE
============================= */
.book-success {
  text-align: center;
  padding: 30px 20px;
  display: none;
}
.success-icon { font-size: 52px; margin-bottom: 14px; }
.success-title {
  font-family: 'El Messiri', serif;
  font-size: 22px;
  color: var(--deep);
  margin-bottom: 8px;
}
.success-msg { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ============================
   ANIMATIONS
============================= */
.reveal { opacity:0; transform:translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity:1; transform:none; }

@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:none; } }
.ph-content { animation: fadeUp 1s ease both; }

/* ============================
   RESPONSIVE
============================= */
@media (max-width: 1100px) {
  .container { padding: 0 28px; }
  nav { padding: 14px 28px; }
  .ph-content { padding: 0 28px 24px; }
  .ph-main-row { grid-template-columns: 1fr; }
  .ph-quick-book { display: none; }
  .content-grid { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .ph-title { font-size: 38px; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: 220px 160px 140px; }
  .gal-item.main { grid-row: auto; border-radius: 20px 20px 0 0; }
  .gal-item:nth-child(2) { border-radius: 0; }
  .gal-item:nth-child(3) { border-radius: 0 0 20px 20px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}
