/* ===== LAYANAN DETAIL PAGE STYLES ===== */

/* PAGE HERO */
.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, #1a2a4a 0%, #0d1b35 60%, #c8a44a 100%);
  padding: 0 0 3rem;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,20,50,0.7) 0%, rgba(10,20,50,0.5) 100%);
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 6rem 2rem 0;
  color: #fff;
}
.breadcrumb {
  font-size: 0.85rem; color: rgba(255,255,255,0.7);
  margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem;
}
.breadcrumb a { color: #c8a44a; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb i { font-size: 0.7rem; }
.page-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700; margin-bottom: 0.75rem; line-height: 1.2;
}
.page-hero-content p {
  font-size: 1.05rem; color: rgba(255,255,255,0.85); max-width: 600px;
}

/* INTRO */
.dl-intro { padding: 5rem 0; }
.dl-intro-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.dl-intro-text .section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.dl-intro-text p { color: #555; line-height: 1.8; margin-bottom: 1rem; }
.dl-intro-stats {
  display: flex; gap: 2rem; margin-top: 2rem;
  padding-top: 2rem; border-top: 1px solid #e8e0d5;
}
.dl-stat { display: flex; flex-direction: column; align-items: center; }
.dl-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; color: #c8a44a; line-height: 1; }
.dl-stat span:last-child { font-size: 0.8rem; color: #888; margin-top: 0.3rem; text-align: center; }
.dl-intro-img { position: relative; }
.dl-intro-img img { width: 100%; height: 450px; object-fit: cover; border-radius: 12px; }
.dl-intro-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: #c8a44a; color: #fff; padding: 0.6rem 1.2rem;
  border-radius: 30px; font-size: 0.9rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.5rem;
}

/* SECTIONS */
.dl-section { padding: 5rem 0; }
.dl-section.bg-light { background: #f9f6f0; }
.dl-section.bg-gold { background: linear-gradient(135deg, #1a2a4a 0%, #0d1b35 100%); color: #fff; }
.dl-section-header {
  display: flex; align-items: flex-start; gap: 1.5rem;
  margin-bottom: 3rem; padding-bottom: 2rem;
  border-bottom: 2px solid #e8e0d5;
}
.dl-section.bg-gold .dl-section-header { border-bottom-color: rgba(200,164,74,0.3); }
.dl-icon-wrap {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #c8a44a, #a07830);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.5rem; flex-shrink: 0;
}
.dl-icon-wrap.gold { background: linear-gradient(135deg, #f0d060, #c8a44a); }
.dl-section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem); color: #1a2a4a; margin-bottom: 0.5rem;
}
.dl-section.bg-gold .dl-section-header h2 { color: #c8a44a; }
.dl-section-header p { color: #666; line-height: 1.7; }
.dl-section.bg-gold .dl-section-header p { color: rgba(255,255,255,0.75); }
.dl-section-header.light h2 { color: #c8a44a; }

/* CONTENT GRID */
.dl-content-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start;
}
.dl-content-grid.reverse .dl-img-col { order: 2; }
.dl-content-grid.reverse .dl-text-col { order: 1; }
.dl-img { width: 100%; height: 380px; object-fit: cover; border-radius: 12px; }
.dl-text-col h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem;
  color: #1a2a4a; margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.6rem;
}

/* PRICE TABLE */
.price-table-wrap { overflow-x: auto; border-radius: 10px; box-shadow: 0 2px 15px rgba(0,0,0,0.08); }
.price-table { width: 100%; border-collapse: collapse; background: #fff; }
.price-table thead { background: #1a2a4a; color: #fff; }
.price-table th { padding: 1rem; text-align: left; font-size: 0.85rem; font-weight: 600; }
.price-table td { padding: 0.85rem 1rem; border-bottom: 1px solid #f0eae0; font-size: 0.9rem; color: #444; }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: #fdf8f0; }
.price-cell { color: #c8a44a; font-weight: 700; font-size: 1rem; white-space: nowrap; }
.btn-wa-sm {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: #25d366; color: #fff; padding: 0.4rem 0.8rem;
  border-radius: 20px; text-decoration: none; font-size: 0.8rem; font-weight: 600;
  transition: background 0.2s;
}
.btn-wa-sm:hover { background: #1db954; }

/* ARMADA PRICE LIST */
.armada-price-list { display: flex; flex-direction: column; gap: 0.75rem; }
.ap-item {
  display: flex; align-items: center; gap: 1rem;
  background: #fff; padding: 1rem 1.2rem;
  border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  border-left: 4px solid #e8e0d5; transition: border-color 0.2s;
}
.ap-item.highlight { border-left-color: #c8a44a; }
.ap-item:hover { border-left-color: #c8a44a; }
.ap-icon { width: 40px; height: 40px; background: #f9f6f0; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #c8a44a; font-size: 1.1rem; flex-shrink: 0; }
.ap-info { flex: 1; }
.ap-info strong { display: block; color: #1a2a4a; font-size: 0.95rem; }
.ap-info span { font-size: 0.78rem; color: #888; }
.ap-price { font-weight: 700; color: #c8a44a; font-size: 1rem; white-space: nowrap; }

/* INFO BOX */
.dl-info-box {
  display: flex; align-items: flex-start; gap: 0.8rem;
  background: #fff8e8; border: 1px solid #e8d5a0; border-radius: 10px;
  padding: 1rem 1.2rem; margin-top: 1.2rem; font-size: 0.88rem; color: #665520;
}
.dl-info-box i { color: #c8a44a; margin-top: 0.1rem; flex-shrink: 0; }
.dl-info-box p { margin: 0; line-height: 1.6; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* SEWA GRID */
.sewa-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem;
  margin-bottom: 2rem;
}
.sewa-card {
  background: #fff; border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
}
.sewa-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.12); }
.sewa-img-wrap { position: relative; height: 200px; overflow: hidden; }
.sewa-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.sewa-card:hover .sewa-img { transform: scale(1.05); }
.sewa-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: #c8a44a; color: #fff; font-size: 0.75rem; font-weight: 700;
  padding: 0.3rem 0.8rem; border-radius: 20px;
}
.sewa-badge.new { background: #1a7a4a; }
.sewa-body { padding: 1.5rem; }
.sewa-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: #1a2a4a; margin-bottom: 0.6rem; }
.sewa-body p { font-size: 0.88rem; color: #666; line-height: 1.65; margin-bottom: 1rem; }
.sewa-features { list-style: none; padding: 0; margin: 0 0 1.2rem; display: flex; flex-direction: column; gap: 0.4rem; }
.sewa-features li { font-size: 0.85rem; color: #555; display: flex; align-items: center; gap: 0.5rem; }
.sewa-features i { color: #c8a44a; font-size: 0.75rem; }
.sewa-footer { border-top: 1px solid #f0eae0; padding-top: 1rem; }
.sewa-price { margin-bottom: 0.8rem; }
.price-label { display: block; font-size: 0.75rem; color: #888; margin-bottom: 0.2rem; }
.price-main { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: #c8a44a; }
.price-note { display: block; font-size: 0.75rem; color: #888; }
.btn-pesan {
  display: block; text-align: center; background: linear-gradient(135deg, #c8a44a, #a07830);
  color: #fff; padding: 0.7rem; border-radius: 8px;
  text-decoration: none; font-weight: 600; font-size: 0.9rem;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-pesan:hover { opacity: 0.9; transform: translateY(-1px); }

/* NOTE BOX */
.dl-note-box {
  display: flex; align-items: flex-start; gap: 1rem;
  background: #fff3cd; border: 1px solid #ffc107; border-radius: 12px;
  padding: 1.2rem 1.5rem; font-size: 0.9rem; color: #664d03;
}
.dl-note-box i { color: #ffc107; font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.dl-note-box strong { display: block; margin-bottom: 0.3rem; }

/* WISATA GRID */
.wisata-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem;
}
.wisata-card {
  position: relative; height: 320px; border-radius: 14px;
  overflow: hidden; cursor: pointer;
}
.wisata-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.wisata-card:hover .wisata-img { transform: scale(1.08); }
.wisata-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,20,50,0.92) 0%, rgba(10,20,50,0.2) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem; opacity: 0; transition: opacity 0.3s;
}
.wisata-card:hover .wisata-overlay { opacity: 1; }
.wisata-overlay h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: #fff; margin-bottom: 0.5rem;
}
.wisata-overlay p { font-size: 0.85rem; color: rgba(255,255,255,0.85); margin-bottom: 1rem; line-height: 1.5; }
.btn-wisata {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #25d366; color: #fff; padding: 0.5rem 1rem;
  border-radius: 20px; text-decoration: none; font-size: 0.85rem; font-weight: 600;
  width: fit-content;
}

/* VIP */
.vip-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem;
}
.vip-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(200,164,74,0.3);
  border-radius: 14px; padding: 2rem; transition: border-color 0.3s;
}
.vip-card:hover { border-color: #c8a44a; }
.vip-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #c8a44a, #a07830);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.5rem; margin-bottom: 1.2rem;
}
.vip-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: #c8a44a; margin-bottom: 0.8rem; }
.vip-card p { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 1.2rem; }
.vip-list { list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.vip-list li { font-size: 0.9rem; color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 0.6rem; }
.vip-list i { color: #c8a44a; font-size: 0.7rem; }
.btn-vip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #25d366; color: #fff; padding: 0.7rem 1.2rem;
  border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 0.9rem;
  transition: background 0.2s;
}
.btn-vip:hover { background: #1db954; }
.vip-img img { width: 100%; height: 240px; object-fit: cover; border-radius: 10px; }
.vip-img-caption { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 0.7rem; text-align: center; font-style: italic; }

/* CTA */
.dl-cta { background: #f9f6f0; }
.cta-box {
  background: linear-gradient(135deg, #1a2a4a 0%, #0d1b35 100%);
  border-radius: 20px; padding: 3.5rem; display: flex;
  align-items: center; justify-content: space-between; gap: 2rem;
}
.cta-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: #fff; margin-bottom: 0.5rem; }
.cta-text p { color: rgba(255,255,255,0.75); font-size: 1rem; }
.cta-btns { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }
.cta-btns .btn-primary {
  background: linear-gradient(135deg, #c8a44a, #a07830);
  color: #fff; padding: 0.9rem 1.8rem; border-radius: 10px;
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
  display: flex; align-items: center; gap: 0.5rem; white-space: nowrap;
}
.cta-btns .btn-secondary {
  background: rgba(255,255,255,0.1); color: #fff; padding: 0.9rem 1.8rem;
  border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.2); white-space: nowrap;
  transition: background 0.2s;
}
.cta-btns .btn-secondary:hover { background: rgba(255,255,255,0.15); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .dl-intro-inner, .dl-content-grid { grid-template-columns: 1fr; }
  .dl-content-grid.reverse .dl-img-col, .dl-content-grid.reverse .dl-text-col { order: unset; }
  .cta-box { flex-direction: column; text-align: center; padding: 2.5rem 1.5rem; }
  .dl-intro-stats { justify-content: center; }
}
@media (max-width: 600px) {
  .page-hero { min-height: 260px; }
  .page-hero-content { padding: 5rem 1.2rem 0; }
  .dl-section { padding: 3.5rem 0; }
  .sewa-grid, .wisata-grid, .vip-grid { grid-template-columns: 1fr; }
  .dl-section-header { flex-direction: column; }
  .cta-btns { flex-direction: column; width: 100%; }
  .cta-btns a { text-align: center; justify-content: center; }
}
