/* =====================================================
   SERVICE DETAIL PAGE STYLES
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:  #1b3a2d;
  --green-mid:   #2d6a4f;
  --green-light: #40916c;
  --gold:        #c9a55a;
  --gold-light:  #e2c07e;
  --black:       #0d0d0d;
  --charcoal:    #1a1a1a;
  --cream:       #f8f4ee;
  --cream-dark:  #ede8df;
  --white:       #ffffff;
  --text-muted:  #6b6b6b;
  --ff-heading:  'Cormorant Garamond', Georgia, serif;
  --ff-body:     'Jost', sans-serif;
  --shadow-sm:   0 2px 12px rgba(0,0,0,.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.18);
  --transition:  .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(27,58,45,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}
#header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
}
#header .logo img { height: 58px; width: auto; }
#header nav ul { display: flex; align-items: center; gap: 32px; }
#header nav a {
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: rgba(255,255,255,.85);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}
#header nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
#header nav a:hover { color: var(--gold); }
#header nav a:hover::after { width: 100%; }

.header-cta {
  padding: 10px 24px !important;
  background: var(--gold) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
}
.header-cta:hover { background: #b8923e !important; }
.header-cta::after { display: none !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: var(--green-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 32px;
  opacity: 0; visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.mobile-nav.open { display: flex; opacity: 1; visibility: visible; }
.mobile-nav a { font-family: var(--ff-heading); font-size: 2rem; color: var(--cream); transition: color var(--transition); }
.mobile-nav a:hover { color: var(--gold); }

/* ── Service Hero ── */
.svc-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 86px;
}
.svc-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.svc-hero.loaded .svc-hero-bg { transform: scale(1); }
.svc-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,.92) 0%, rgba(27,58,45,.5) 60%, rgba(0,0,0,.2) 100%);
}
.svc-hero-content {
  position: relative; z-index: 2;
  padding: 0 0 56px;
  width: 100%;
}
.svc-hero-content .container { display: flex; flex-direction: column; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--gold); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,.35); }
.svc-hero-tag {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(201,165,90,.2);
  border: 1px solid rgba(201,165,90,.4);
  color: var(--gold-light);
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
  width: fit-content;
}
.svc-hero-title {
  font-family: var(--ff-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
}
.svc-hero-title em { color: var(--gold); font-style: italic; }
.svc-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.72);
  max-width: 540px;
}

/* ── Quick Info Bar ── */
.quick-info {
  background: var(--green-dark);
  padding: 0;
}
.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.qi-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.qi-item:last-child { border-right: none; }
.qi-icon { font-size: 1.5rem; }
.qi-text label {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}
.qi-text span { font-size: .92rem; color: rgba(255,255,255,.82); font-weight: 500; }

/* ── Main Content ── */
.svc-main { padding: 80px 0; }
.svc-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}

/* Left column */
.svc-section-title {
  font-family: var(--ff-heading);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.svc-section-title span { color: var(--gold); font-style: italic; }
.svc-divider {
  width: 50px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 20px;
}
.svc-desc {
  font-size: .97rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0 40px;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  background: var(--cream);
  border-radius: 12px;
  border-left: 3px solid var(--gold);
}
.benefit-icon { font-size: 1.2rem; margin-top: 1px; }
.benefit-item h4 {
  font-weight: 600;
  font-size: .9rem;
  color: var(--green-dark);
  margin-bottom: 3px;
}
.benefit-item p { font-size: .82rem; color: var(--text-muted); line-height: 1.6; }

/* What to expect */
.expect-steps { display: flex; flex-direction: column; gap: 20px; margin: 20px 0 40px; }
.expect-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.step-num {
  width: 42px; height: 42px; min-width: 42px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--gold);
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step-content h4 {
  font-weight: 600;
  font-size: .95rem;
  color: var(--green-dark);
  margin-bottom: 4px;
}
.step-content p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }

/* Gallery strip */
.svc-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 36px 0;
}
.svc-gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.svc-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc-gallery-item:hover img { transform: scale(1.06); }

/* Right column – Sticky Sidebar */
.svc-sidebar { position: sticky; top: 106px; }

/* Book Card */
.book-card {
  background: var(--green-dark);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.book-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,165,90,.15), transparent 70%);
}
.book-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.book-card p { font-size: .88rem; color: rgba(255,255,255,.6); margin-bottom: 24px; }

.wa-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 24px;
  background: #25d366;
  color: var(--white);
  border-radius: 12px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .04em;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  margin-bottom: 12px;
  cursor: pointer;
  border: none;
  font-family: var(--ff-body);
}
.wa-book-btn:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
}
.wa-book-btn svg { width: 20px; height: 20px; fill: var(--white); }

.call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 24px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
  border-radius: 12px;
  font-weight: 500;
  font-size: .9rem;
  transition: var(--transition);
  cursor: pointer;
  font-family: var(--ff-body);
}
.call-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.book-meta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.book-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  color: rgba(255,255,255,.55);
}
.book-meta-item .bmi-icon { font-size: 1rem; }

/* Contact Form Card */
.contact-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--cream-dark);
}
.contact-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.contact-card p { font-size: .85rem; color: var(--text-muted); margin-bottom: 20px; }

.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: 10px;
  color: var(--charcoal);
  font-family: var(--ff-body);
  font-size: .9rem;
  transition: border-color var(--transition);
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45,106,79,.08);
}
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: var(--ff-body);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .06em;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(201,165,90,.35);
}
.form-submit:hover {
  background: #b8923e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,165,90,.45);
}

/* Related Services */
.related-services { padding: 80px 0; background: var(--cream); }
.related-header { text-align: center; margin-bottom: 48px; }
.related-header h2 {
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.related-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.related-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.related-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.related-card-img { aspect-ratio: 3/2; overflow: hidden; }
.related-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.related-card:hover .related-card-img img { transform: scale(1.06); }
.related-card-body { padding: 20px; }
.related-card-body h4 {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.related-card-body p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.related-card-actions { display: flex; gap: 8px; }
.rc-btn-detail, .rc-btn-book {
  flex: 1;
  text-align: center;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: var(--transition);
}
.rc-btn-detail { border: 1.5px solid var(--green-mid); color: var(--green-mid); }
.rc-btn-detail:hover { background: var(--green-mid); color: var(--white); }
.rc-btn-book { background: var(--gold); color: var(--white); }
.rc-btn-book:hover { background: #b8923e; }

/* Footer */
#footer { background: var(--black); padding: 60px 0 0; }
.footer-bottom-bar {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-bar p { font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-bottom-bar a { color: var(--gold); }

.footer-mini {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.fm-brand img { height: 50px; margin-bottom: 14px; }
.fm-brand p { font-size: .86rem; color: rgba(255,255,255,.45); line-height: 1.8; max-width: 260px; }
.fm-col h4 {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.fm-col ul { display: flex; flex-direction: column; gap: 9px; }
.fm-col ul li a { font-size: .86rem; color: rgba(255,255,255,.45); transition: color var(--transition); }
.fm-col ul li a:hover { color: var(--gold-light); }
.fm-contact-item { display: flex; gap: 10px; margin-bottom: 10px; }
.fm-contact-item .fci { font-size: .85rem; color: var(--gold); margin-top: 2px; }
.fm-contact-item p, .fm-contact-item a { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.6; transition: color var(--transition); }
.fm-contact-item a:hover { color: var(--gold-light); }

/* WA Float */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px; z-index: 900;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  cursor: pointer;
  transition: transform var(--transition);
  animation: wa-pulse 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); animation: none; }
.wa-float svg { width: 26px; height: 26px; fill: var(--white); }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.4); }
  50%      { box-shadow: 0 6px 40px rgba(37,211,102,.7); }
}

/* Responsive */
@media (max-width: 1024px) {
  .svc-layout { grid-template-columns: 1fr; }
  .svc-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-mini { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  #header nav { display: none; }
  .hamburger { display: flex; }
  .svc-hero { height: 380px; }
  .quick-info-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .svc-gallery { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .svc-sidebar { grid-template-columns: 1fr; }
  .footer-mini { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .quick-info-grid { grid-template-columns: 1fr; }
  .svc-gallery { grid-template-columns: 1fr; }
}
