/* ═══════════════════════════════════════════════
   SERVICES PAGE
   ═══════════════════════════════════════════════ */

/* ── INTRO STRIP ── */
.svc-intro-strip {
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); border-bottom: 1px solid rgba(201,168,76,0.15);
}
.svc-intro-item {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 10px; padding: 18px 10px;
  border-right: 1px solid rgba(201,168,76,0.1);
  font-family: var(--font-display); font-size: 0.62rem; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.7); text-transform: uppercase;
}
.svc-intro-item:last-child { border-right: none; }
.sii-icon { font-size: 1rem; }

/* ── DETAIL SECTION ── */
.svc-detail-section { padding: 100px 5%; }
.svc-detail-dark { background: linear-gradient(155deg, #0E1D3F 0%, #1A3260 100%); }

.svc-detail-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr;
  gap: 80px; align-items: start;
}
.svc-detail-inner.reverse { grid-template-columns: 1fr 280px; }
.svc-detail-inner.reverse .svc-detail-visual { order: 2; }
.svc-detail-inner.reverse .svc-detail-content { order: 1; }

/* Visual col */
.svc-detail-visual {
  display: flex; flex-direction: column; align-items: center;
  gap: 20px; position: sticky; top: 100px;
}
.svc-detail-num {
  font-family: var(--font-display); font-size: 4rem; font-weight: 700;
  color: rgba(201,168,76,0.1); line-height: 1; align-self: flex-start;
}
.svc-detail-num.light { color: rgba(201,168,76,0.12); }

/* ── REAL PHOTO IN SERVICE VISUAL ── */
.svc-photo-wrap {
  width: 240px; height: 240px;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  border: 2px solid rgba(201,168,76,0.2);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.svc-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.svc-photo-wrap:hover .svc-photo { transform: scale(1.05); }
.svc-photo-fallback {
  display: none;
  width: 100%; height: 100%;
  align-items: center; justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
}

.svc-detail-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  padding: 12px 24px; border-radius: 2px; text-align: center;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: var(--navy); box-shadow: 0 6px 24px rgba(201,168,76,0.3);
  width: 100%;
}
.svc-detail-badge span { display: block; font-size: 0.55rem; letter-spacing: 0.2em; color: rgba(26,50,96,0.6); margin-top: 2px; font-weight: 400; }

/* Content col */
.svc-title-sub {
  font-family: var(--font-serif); color: var(--gold); font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 2rem); font-weight: 400;
}
.svc-detail-para { color: var(--text-muted); line-height: 1.9; font-size: 1rem; margin-top: 1rem; }
.svc-detail-para.light { color: rgba(255,255,255,0.65); }
.svc-detail-para strong { color: var(--navy); }

.svc-includes {
  margin-top: 1.6rem; background: var(--white);
  border: 1px solid rgba(201,168,76,0.15); border-left: 3px solid var(--gold);
  border-radius: 2px; padding: 22px 24px;
}
.svc-includes.dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(201,168,76,0.15); border-left-color: var(--gold-dim);
}
.svc-includes-title {
  font-family: var(--font-display); font-size: 0.6rem; letter-spacing: 0.3em;
  color: var(--gold-dim); text-transform: uppercase; margin-bottom: 14px; font-weight: 700;
}
.svc-includes-list { list-style: none; }
.svc-includes-list li {
  font-size: 0.92rem; color: var(--text-dark); padding: 7px 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  display: flex; align-items: center; gap: 10px;
}
.svc-includes-list li::before { content: '✦'; color: var(--gold-dim); font-size: 0.5rem; flex-shrink: 0; }
.svc-includes.dark .svc-includes-list li { color: rgba(255,255,255,0.7); border-bottom-color: rgba(255,255,255,0.06); }
.svc-includes-list li:last-child { border-bottom: none; }

/* ── PRICING TABLE WITH IMAGES ── */
.pricing-table {
  max-width: 1000px; margin: 0 auto;
  border: 1px solid rgba(201,168,76,0.15); border-radius: 2px; overflow: hidden;
}
.pt-row {
  display: grid; grid-template-columns: 2.2fr 1fr 1.2fr 1fr 100px;
  align-items: center; padding: 14px 24px;
  border-bottom: 1px solid rgba(201,168,76,0.1); gap: 10px;
}
.pt-row:last-child { border-bottom: none; }
.pt-head {
  background: var(--navy);
  font-family: var(--font-display); font-size: 0.58rem; letter-spacing: 0.25em;
  color: var(--gold-dim); text-transform: uppercase; font-weight: 700;
}
.pt-row:not(.pt-head) {
  background: var(--white); font-size: 0.92rem; color: var(--text-dark);
  transition: background var(--transition);
}
.pt-row:not(.pt-head):hover { background: var(--cream); }
.pt-row:not(.pt-head) span:not(.pt-price):not(.pt-svc-cell) { color: var(--text-muted); }

/* Service cell with thumbnail */
.pt-svc-cell {
  display: flex; align-items: center; gap: 12px;
}
.pt-svc-img {
  width: 40px; height: 40px;
  border-radius: 2px; object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.15);
}

.pt-price {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--navy);
}
.pt-book-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.58rem; letter-spacing: 0.18em;
  color: var(--navy); background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  padding: 9px 18px; border-radius: 1px; font-weight: 700;
  transition: all var(--transition); text-transform: uppercase;
}
.pt-book-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,168,76,0.3); }
.pt-note { text-align: center; font-size: 0.85rem; color: var(--text-muted); margin-top: 20px; font-style: italic; }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(201,168,76,0.15); border-radius: 2px;
  margin-bottom: 10px; overflow: hidden; transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--gold-dim); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: var(--white);
  font-family: var(--font-display); font-size: 0.82rem; letter-spacing: 0.06em;
  color: var(--navy); text-align: left; cursor: pointer; transition: background var(--transition);
}
.faq-q:hover { background: var(--cream); }
.faq-arrow { font-size: 1.4rem; color: var(--gold-dim); flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-arrow { transform: rotate(45deg); color: var(--gold); }
.faq-a {
  max-height: 0; overflow: hidden; padding: 0 24px;
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.85;
  background: var(--cream); transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding: 18px 24px; }

/* ── CTA ── */
.cta-band { background: linear-gradient(135deg, var(--gold-dim) 0%, var(--gold) 50%, var(--gold-bright) 100%); padding: 60px 5%; }
.cta-band-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band-h2 { font-family: var(--font-display); font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.cta-band-sub { font-size: 1rem; color: rgba(26,50,96,0.65); font-family: var(--font-serif); font-style: italic; }
.cta-band-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-cta-dark { display: inline-flex; align-items: center; font-family: var(--font-display); font-size: 0.62rem; letter-spacing: 0.22em; font-weight: 700; color: var(--gold); background: var(--navy); padding: 15px 32px; border-radius: 1px; transition: all var(--transition); text-transform: uppercase; }
.btn-cta-dark:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn-cta-outline { display: inline-flex; align-items: center; font-family: var(--font-display); font-size: 0.62rem; letter-spacing: 0.22em; font-weight: 600; color: var(--navy); border: 1.5px solid rgba(26,50,96,0.3); padding: 14px 30px; border-radius: 1px; transition: all var(--transition); text-transform: uppercase; }
.btn-cta-outline:hover { background: rgba(26,50,96,0.08); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .svc-detail-inner,
  .svc-detail-inner.reverse { grid-template-columns: 1fr; }
  .svc-detail-inner.reverse .svc-detail-visual { order: 0; }
  .svc-detail-inner.reverse .svc-detail-content { order: 0; }
  .svc-detail-visual { position: static; flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .svc-detail-num { display: none; }
  .svc-photo-wrap { width: 200px; height: 200px; }
  .pt-row { grid-template-columns: 2fr 1fr 1fr 80px; }
  .pt-row > span:nth-child(3) { display: none; }
  .pt-head > span:nth-child(3) { display: none; }
}
@media (max-width: 768px) {
  .svc-intro-strip { flex-wrap: wrap; }
  .svc-intro-item { flex: 1 1 50%; border-bottom: 1px solid rgba(201,168,76,0.1); }
  .pt-row { grid-template-columns: 1fr 80px; }
  .pt-row > span:nth-child(2),
  .pt-row > span:nth-child(3),
  .pt-row > .pt-price { display: none; }
  .pt-head > span:nth-child(2),
  .pt-head > span:nth-child(3),
  .pt-head > span:nth-child(4) { display: none; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-btns { justify-content: center; }
}
