/* ============================================
   SERVICE DETAIL — REDESIGNED
   ============================================ */

/* ── Hero ──────────────────────────────────── */
.sd-hero {
  position: relative;
  width: 100%;
  height: clamp(320px, 58vh, 660px);
  overflow: hidden;
  background: #111;
}

/* Crossfade track — slides stack via position:absolute */
.sd-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.sd-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 1.1s ease;
  overflow: hidden;
}

.sd-slide.active {
  opacity: 1;
  z-index: 1;
}

.sd-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center center;
  will-change: transform;
}

/* Ken Burns: active slide zooms out slowly — cinematic food/hospitality look */
.sd-slide.active img {
  animation: sdKenBurns 8s ease-out forwards;
}

@keyframes sdKenBurns {
  from { transform: scale(1.1); }
  to   { transform: scale(1.0); }
}

.sd-no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  opacity: 0.12;
}

.sd-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0) 25%,
    rgba(0,0,0,0.30) 60%,
    rgba(0,0,0,0.82) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* Hero caption */
.sd-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 28px 52px;
  z-index: 3;
}

.sd-badge {
  display: inline-flex;
  background: var(--gold);
  color: #000;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sd-title {
  font-size: clamp(26px, 5vw, 54px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 32px rgba(0,0,0,0.65);
  margin: 0;
}

/* Carousel arrows */
.sd-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1.5px solid rgba(255,255,255,0.22);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  padding: 0;
}
.sd-arrow:hover {
  background: rgba(201,162,39,0.28);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
}
.sd-prev { left: 18px; }
.sd-next { right: 18px; }

/* Pill dots — centered, active dot stretches into pill */
.sd-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 6px;
  align-items: center;
}

.sd-dot {
  height: 5px;
  width: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width 0.35s ease, background 0.35s ease;
  flex-shrink: 0;
}
.sd-dot.active {
  width: 26px;
  background: var(--gold);
}

/* ── Breadcrumbs ───────────────────────────── */
.sd-bc-wrap {
  background: var(--bg-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ── Container ─────────────────────────────── */
.sd-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Content ───────────────────────────────── */
.sd-content {
  padding: 52px 0 72px;
  background: var(--bg-primary);
}

.sd-short {
  font-size: 18px;
  color: var(--gold);
  font-weight: 500;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 36px;
}

/* Formatted body */
.sd-body {
  margin-bottom: 52px;
}

.sd-body .desc-heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201,162,39,0.2);
}

.sd-body .desc-para {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.88);
  margin-bottom: 4px;
}

.sd-body .desc-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 24px;
}

.sd-body .desc-list li {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  padding: 7px 0 7px 22px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.sd-body .desc-list li:last-child { border-bottom: none; }

.sd-body .desc-list li::before {
  content: '›';
  position: absolute;
  left: 2px;
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

/* Pricing rows */
.sd-body .desc-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 18px;
  background: var(--bg-card);
  border-radius: 10px;
  margin-bottom: 6px;
  border: 1px solid rgba(255,255,255,0.05);
}

.sd-body .desc-price-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.sd-body .desc-price-val {
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
}

.sd-body .desc-link {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(201,162,39,0.4);
  transition: text-decoration-color 0.2s;
}
.sd-body .desc-link:hover { text-decoration-color: var(--gold); }

/* Structured content blocks */
.sd-menu-block,
.sd-pricing-block {
  margin-bottom: 32px;
}

.sd-menu-block .desc-heading,
.sd-pricing-block .desc-heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201,162,39,0.2);
}

.sd-menu-block .desc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sd-menu-block .desc-list li {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  padding: 7px 0 7px 22px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.sd-menu-block .desc-list li:last-child { border-bottom: none; }

.sd-menu-block .desc-list li::before {
  content: '›';
  position: absolute;
  left: 2px;
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.sd-pricing-block .desc-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 18px;
  background: var(--bg-card);
  border-radius: 10px;
  margin-bottom: 6px;
  border: 1px solid rgba(255,255,255,0.05);
}

.sd-pricing-block .desc-price-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.sd-pricing-block .desc-price-val {
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
}

.sd-closing {
  margin-top: 28px;
  padding: 16px 20px;
  border-radius: 10px;
  background: rgba(201,162,39,0.06);
  border: 1px solid rgba(201,162,39,0.15);
  margin-bottom: 32px;
}

.sd-closing .desc-para {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  margin-bottom: 0;
}

.sd-closing .desc-link {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(201,162,39,0.4);
}

/* CTAs */
.sd-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 480px) {
  .sd-ctas { flex-direction: row; flex-wrap: wrap; }
}

/* ── Other services ────────────────────────── */
.sd-others {
  padding: 56px 0 80px;
  background: var(--bg-secondary);
}

.sd-section-title {
  font-size: clamp(18px, 3.5vw, 24px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.sd-others-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.sd-other-card {
  display: flex;
  gap: 0;
  background: var(--bg-card);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  align-items: center;
  transition: transform 0.25s;
}
.sd-other-card:hover { transform: translateX(4px); }

.sd-other-img {
  flex: 0 0 96px;
  height: 76px;
  overflow: hidden;
}
.sd-other-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sd-other-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.sd-other-body {
  padding: 12px 16px;
  flex: 1;
}
.sd-other-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}
.sd-other-short {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Responsive ────────────────────────────── */
@media (min-width: 600px) {
  .sd-caption { padding: 80px 48px 56px; }
  .sd-arrow { width: 58px; height: 58px; font-size: 32px; }
  .sd-prev { left: 24px; }
  .sd-next { right: 24px; }
  .sd-others-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .sd-hero { height: clamp(440px, 65vh, 700px); }
  .sd-others-grid { grid-template-columns: repeat(3, 1fr); }
}
