/* ── SHARED PAGE STYLES ──────────────────────────────────────── */
:root {
  --gold: #e5a000;
  --gold-light: #fffbef;
  --dark: #1a1a1a;
  --mid: #444;
  --light-bg: #f8f8f8;
  --border: #e8e8e8;
  --radius: 12px;
}

/* ── WHATSAPP FLOAT BUTTON ───────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  z-index: 999;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,.5); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* ── BREADCRUMB ──────────────────────────────────────────────── */
.breadcrumb {
  background: var(--light-bg);
  padding: 12px 0;
  font-size: .85rem;
  color: #888;
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

/* ── DETAIL PAGE LAYOUT ──────────────────────────────────────── */
.page-section { padding: 60px 0; }
.page-section + .page-section { border-top: 1px solid var(--border); }

.page-section h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.page-section h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.page-section p { line-height: 1.85; color: var(--mid); margin-bottom: 16px; font-size: 1rem; }
.page-section ul { padding-left: 0; list-style: none; margin-bottom: 20px; }
.page-section ul li {
  padding: 7px 0 7px 24px;
  position: relative;
  color: var(--mid);
  line-height: 1.7;
  border-bottom: 1px solid #f0f0f0;
}
.page-section ul li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ── PRICE TAG ───────────────────────────────────────────────── */
.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .95rem;
  margin-bottom: 20px;
}

/* ── TWO COLUMN GRID ─────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 28px 0; }
@media(max-width:680px){ .two-col { grid-template-columns: 1fr; } }

/* ── INFO BOX ────────────────────────────────────────────────── */
.info-box {
  background: #fff;
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px 24px;
}

/* ── AT-A-GLANCE TABLE ───────────────────────────────────────── */
.glance-table { width: 100%; border-collapse: collapse; margin: 24px 0; border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.05); }
.glance-table th, .glance-table td { padding: 13px 18px; text-align: left; font-size: .92rem; }
.glance-table th { background: #f2f2f2; font-weight: 700; color: var(--dark); width: 38%; }
.glance-table td { background: #fff; color: var(--mid); }
.glance-table tr + tr th, .glance-table tr + tr td { border-top: 1px solid var(--border); }

/* ── DAY BLOCKS ──────────────────────────────────────────────── */
.day-block {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 16px;
  position: relative;
  padding-left: 56px;
}
.day-block::before {
  content: attr(data-day);
  position: absolute;
  left: 16px;
  top: 22px;
  background: var(--gold);
  color: #fff;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .5px;
  padding: 4px 8px;
  border-radius: 6px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  line-height: 1;
}
.day-block h4 { color: var(--gold); font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; }
.day-block p { margin-bottom: 0; }
.day-block .meta { font-size: .85rem; color: #999; margin-top: 8px; }

/* ── HERO TAGLINE ────────────────────────────────────────────── */
.hero-tagline {
  display: inline-block;
  font-style: italic;
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

/* ── CTA STRIP ───────────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 48px 0;
  text-align: center;
}
.cta-strip h2 { color: #fff; font-size: 1.7rem; margin-bottom: 10px; }
.cta-strip p { color: rgba(255,255,255,.7); margin-bottom: 28px; font-size: 1rem; }
.cta-strip .btn-primary { font-size: 1.05rem; padding: 14px 40px; }
.cta-strip .btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: #fff; font-weight: 700;
  padding: 14px 32px; border-radius: 8px; text-decoration: none;
  font-size: 1.05rem; margin-left: 12px; transition: opacity .2s;
}
.cta-strip .btn-wa:hover { opacity: .88; }

/* ── ABOUT PAGE SPECIFIC ─────────────────────────────────────── */
.team-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  text-align: center;
  padding-bottom: 24px;
}
.team-card img { width: 100%; height: 280px; object-fit: cover; }
.team-card h3 { font-size: 1.1rem; margin: 16px 16px 6px; color: var(--dark); }
.team-card .role { color: var(--gold); font-size: .9rem; font-weight: 600; margin: 0 16px 12px; }
.team-card p { font-size: .9rem; color: var(--mid); line-height: 1.7; margin: 0 20px; }

.stat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin: 32px 0; }
@media(max-width:600px){ .stat-grid { grid-template-columns: repeat(2,1fr); } }
.stat-box { background: var(--gold-light); border-radius: var(--radius); padding: 24px 16px; text-align: center; }
.stat-box .num { font-size: 2.2rem; font-weight: 800; color: var(--gold); display: block; }
.stat-box .label { font-size: .85rem; color: var(--mid); margin-top: 4px; }

/* ── PACKAGE PRICING TABLE ───────────────────────────────────── */
.pkg-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .9rem; overflow-x: auto; display: block; }
.pkg-table thead th { background: var(--dark); color: #fff; padding: 12px 16px; text-align: left; white-space: nowrap; }
.pkg-table tbody tr:nth-child(even) { background: var(--light-bg); }
.pkg-table tbody td { padding: 12px 16px; color: var(--mid); border-bottom: 1px solid var(--border); vertical-align: top; }
.pkg-table tbody td:first-child { font-weight: 700; color: var(--dark); }

/* ── PAGE HERO (shared) ──────────────────────────────────────── */
.hero { min-height: 380px; display: flex; align-items: flex-end; padding-bottom: 60px; }
