/*!
 * SeaWave — Single Package Detail Page (Editorial v3)
 * Scoped under .pd wrapper so generic classes (.btn, .card, .container)
 * cannot collide with Tailwind utilities or other theme components.
 * All CSS vars renamed --pd-* to avoid clashing with theme --sw-*.
 */

.pd {
  --pd-bg:#ffffff;
  --pd-text:#111827;
  --pd-muted:#6b7280;
  --pd-amber:#f59e0b;
  --pd-amber-dark:#d97706;
  --pd-orange:#ea580c;
  --pd-green:#16a34a;
  --pd-blue:#3b82f6;
  --pd-purple:#8b5cf6;
  --pd-red:#dc2626;
  --pd-card:#ffffff;
  --pd-line:#e5e7eb;
  --pd-soft-amber:#fff7ed;
  --pd-soft-orange:#fff1e6;
  --pd-soft-blue:#eff6ff;
  --pd-soft-green:#ecfdf5;
  --pd-soft-gray:#f9fafb;
  --pd-shadow-sm:0 1px 2px rgba(15,23,42,.06), 0 1px 1px rgba(15,23,42,.04);
  --pd-shadow-md:0 10px 25px rgba(15,23,42,.08), 0 3px 8px rgba(15,23,42,.05);
  --pd-shadow-lg:0 18px 40px rgba(15,23,42,.12), 0 8px 18px rgba(15,23,42,.08);
  --pd-shadow-xl:0 25px 60px rgba(15,23,42,.18), 0 12px 24px rgba(15,23,42,.12);
  --pd-radius-xl:18px;
  --pd-radius-2xl:24px;
  --pd-radius-3xl:32px;
  --pd-container:1200px;
  --pd-section-pad:64px;
  --pd-transition:260ms cubic-bezier(.2,.8,.2,1);
  --pd-hero-h-desktop:650px;
  --pd-hero-h-mobile:500px;

  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--pd-text);
  background:var(--pd-bg);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

/* animate.css timing tokens (tuned for content-heavy pages) */
.pd {
  --animate-duration: 1.1s;
  --animate-delay: 0.08s;
}

.pd *, .pd *::before, .pd *::after { box-sizing:border-box; }
.pd img { display:block; width:100%; }
.pd button, .pd input, .pd textarea, .pd select { font:inherit; }
.pd button { cursor:pointer; }
.pd a { color:inherit; text-decoration:none; }
.pd svg { display:block; flex-shrink:0; }

.pd .container {
  width:min(100% - 32px, var(--pd-container));
  margin:0 auto;
}
.pd .container.narrow-2 { width:min(100% - 32px, 960px); }
.pd .container.narrow-3 { width:min(100% - 32px, 1100px); }
.pd .container.narrow-4 { width:min(100% - 32px, 900px); }
.pd .section { padding:var(--pd-section-pad) 0; }
.pd .section-sm { padding:48px 0; }
.pd .section-white { background:#fff; }
.pd .section-soft { background:#f9fafb; }
.pd .section-amber { background:linear-gradient(135deg, #fffbeb 0%, #fff7ed 100%); }
.pd .section-gradient-amber { background:linear-gradient(135deg, #f59e0b 0%, #ea580c 100%); }
.pd .section-dark { background:linear-gradient(135deg, #111827 0%, #1f2937 100%); color:#fff; }

.pd .section-title {
  margin:0 0 8px;
  font-size:clamp(1.85rem, 2.7vw, 2.6rem);
  line-height:1.1;
  font-weight:800;
  letter-spacing:-.03em;
  color:#111827;
}
.pd .section-subtitle {
  margin:0;
  color:var(--pd-muted);
  font-size:1rem;
  line-height:1.6;
}
.pd .section-head { margin-bottom:32px; text-align:center; }
.pd .section-head .section-subtitle { max-width:720px; margin:0 auto; }
.pd .section-head.center { text-align:center; }
.pd .section-head.center .section-subtitle { max-width:720px; margin:0 auto; }

.pd .card {
  background:#fff;
  border-radius:var(--pd-radius-2xl);
  box-shadow:var(--pd-shadow-md);
}
.pd .card-hover {
  transition:transform var(--pd-transition), box-shadow var(--pd-transition), background-color var(--pd-transition), border-color var(--pd-transition), opacity var(--pd-transition);
}
.pd .card-hover:hover {
  transform:translateY(-5px);
  box-shadow:var(--pd-shadow-xl);
}

.pd .badge {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  padding:6px 12px;
  border-radius:999px;
  font-weight:700;
  font-size:12px;
  line-height:1;
  white-space:nowrap;
}
.pd .badge-amber { background:#f59e0b; color:#fff; box-shadow:0 10px 18px rgba(245,158,11,.25); }
.pd .badge-soft-amber { background:#fef3c7; color:#b45309; }
.pd .badge-soft-blue { background:#dbeafe; color:#1d4ed8; }
.pd .badge-soft-green { background:#dcfce7; color:#15803d; }
.pd .badge-soft-gray { background:#f3f4f6; color:#374151; }
.pd .badge-soft-red { background:#fee2e2; color:#b91c1c; }
.pd .badge-white { background:rgba(255,255,255,.18); color:#fff; backdrop-filter:blur(10px); }

.pd .btn {
  border:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:14px;
  padding:12px 18px;
  font-weight:800;
  transition:transform var(--pd-transition), background-color var(--pd-transition), box-shadow var(--pd-transition), color var(--pd-transition), opacity var(--pd-transition);
  box-shadow:var(--pd-shadow-md);
  text-align:center;
  white-space:nowrap;
  text-decoration:none;
}
.pd .btn:hover { transform:translateY(-1px); }
.pd .btn:active { transform:translateY(0) scale(.98); }
.pd .btn-lg { padding:14px 22px; border-radius:16px; }
.pd .btn-sm { padding:10px 14px; border-radius:12px; font-size:.92rem; }
.pd .btn-amber { background:var(--pd-amber); color:#fff; }
.pd .btn-amber:hover { background:var(--pd-amber-dark); }
.pd .btn-green { background:var(--pd-green); color:#fff; }
.pd .btn-green:hover { background:#15803d; }
.pd .btn-wa { background:#25D366; color:#fff; }
.pd .btn-wa:hover { background:#20BA59; }
.pd .btn-dark { background:#111827; color:#fff; }
.pd .btn-dark:hover { background:#1f2937; }
.pd .btn-white { background:#fff; color:#111827; }
.pd .btn-white:hover { background:#f9fafb; }
.pd .btn-outline { background:transparent; color:#111827; border:1px solid rgba(0,0,0,.08); }
.pd .btn-outline:hover { background:#fff; }

.pd .icon-btn { width:44px; height:44px; border-radius:12px; display:inline-flex; align-items:center; justify-content:center; }
.pd .icon { width:1em; height:1em; }
.pd .icon-lg { font-size:1.25rem; }
.pd .icon-xl { font-size:1.5rem; }

/* Hero */
.pd .hero { position:relative; overflow:hidden; }
.pd .hero-stage { position:relative; height:var(--pd-hero-h-mobile); }
.pd .hero-slide { position:absolute; inset:0; opacity:0; transition:opacity 900ms ease; }
.pd .hero-slide.active { opacity:1; }
.pd .hero-slide img { width:100%; height:100%; object-fit:cover; }
.pd .hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.72) 45%, rgba(0,0,0,.28) 100%);
}
.pd .hero-content { position:absolute; inset:0; display:flex; align-items:flex-end; }
.pd .hero-content .container { padding-bottom:32px; }
.pd .hero-inner { max-width:920px; color:#fff; }
.pd .hero-badges { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:12px; }
.pd .hero-title {
  margin:0 0 12px;
  font-size:clamp(2rem, 5vw, 3.8rem);
  line-height:1.05;
  font-weight:900;
  letter-spacing:-.04em;
  color:#fff;
}
.pd .hero-meta {
  display:flex; flex-wrap:wrap; gap:14px 20px;
  margin:0 0 14px;
  color:rgba(255,255,255,.9);
  font-size:.98rem;
}
.pd .hero-meta-item { display:inline-flex; align-items:center; gap:7px; }
.pd .hero-summary {
  margin:0; max-width:900px;
  color:rgba(255,255,255,.9);
  font-size:1rem; line-height:1.7;
}
.pd .hero-dots {
  position:absolute; left:50%; transform:translateX(-50%);
  bottom:16px; display:flex; gap:8px; z-index:4;
}
.pd .hero-dots button {
  width:9px; height:9px;
  border:0; border-radius:999px; padding:0;
  background:rgba(255,255,255,.45);
  transition:transform var(--pd-transition), background-color var(--pd-transition), width var(--pd-transition);
}
.pd .hero-dots button.active { background:#fff; width:28px; }
.pd .hero-dots button:hover { transform:scale(1.12); }
.pd .hero-dots button.active:hover { transform:none; }

/* CTA bar */
.pd .cta-bar {
  background:linear-gradient(90deg, #f59e0b 0%, #ea580c 100%);
  box-shadow:0 20px 50px rgba(234,88,12,.18);
}
.pd .cta-bar-inner { padding:14px 0; }
.pd .cta-grid { display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:8px; }
.pd .cta-grid .btn { width:100%; box-shadow:0 10px 25px rgba(0,0,0,.12); }
.pd .cta-grid .btn .mobile-label { display:none; }

/* Summary strip */
.pd .summary-strip {
  background:linear-gradient(90deg, #fffbeb 0%, #fff7ed 100%);
  border-top:1px solid #fde68a;
  border-bottom:1px solid #fde68a;
  padding:22px 0;
}
.pd .summary-scroll { overflow:hidden; }
/* Track holds two identical copies; translating one copy width (-50% minus half the 12px gap) loops seamlessly. */
.pd .summary-track {
  display:flex;
  gap:12px;
  width:max-content;
  padding-bottom:6px;
  animation:pd-summary-scroll 38s linear infinite;
}
.pd .summary-scroll:hover .summary-track { animation-play-state:paused; }
@keyframes pd-summary-scroll {
  from { transform:translateX(0); }
  to   { transform:translateX(calc(-50% - 6px)); }
}
.pd .summary-item {
  flex:0 0 auto; min-width:110px;
  display:flex; flex-direction:column; align-items:center;
  background:#fff; border-radius:16px;
  box-shadow:var(--pd-shadow-sm);
  padding:16px 14px 15px; text-align:center;
  transition:transform var(--pd-transition), box-shadow var(--pd-transition);
}
.pd .summary-item:hover { transform:translateY(-5px) scale(1.03); box-shadow:var(--pd-shadow-md); }
@media (prefers-reduced-motion: reduce) {
  .pd .summary-track { animation:none; width:auto; }
  .pd .summary-scroll { overflow-x:auto; scrollbar-width:none; }
  .pd .summary-scroll::-webkit-scrollbar { display:none; }
}
.pd .summary-item .icon { color:var(--pd-amber); font-size:1.85rem; margin-bottom:8px; }
.pd .summary-label { display:block; color:#6b7280; font-size:.76rem; margin-bottom:4px; }
.pd .summary-value { display:block; font-size:.93rem; font-weight:700; line-height:1.3; color:#111827; }

.pd .grid-2 { display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:24px; }
.pd .grid-3 { display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:24px; }
.pd .grid-4 { display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:24px; }
.pd .grid-5 { display:grid; grid-template-columns:repeat(5, minmax(0,1fr)); gap:24px; }
.pd .grid-auto-2 { display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:24px; }
.pd .grid-auto-1 { display:grid; grid-template-columns:1fr; gap:24px; }

/* Itinerary */
.pd .itinerary-card {
  border-radius:22px; overflow:hidden;
  background:linear-gradient(135deg, #fffbeb 0%, #fff7ed 100%);
  box-shadow:var(--pd-shadow-md);
}
.pd .itinerary-card .body { padding:22px 24px; }
.pd .day-label {
  display:inline-flex; align-items:center; justify-content:center;
  padding:8px 16px; border-radius:10px;
  background:var(--pd-amber); color:#fff;
  font-weight:800; box-shadow:var(--pd-shadow-sm);
  white-space:nowrap;
}
.pd .itinerary-top { display:flex; gap:16px; align-items:flex-start; margin-bottom:20px; }
.pd .itinerary-title {
  margin:0 0 6px;
  font-size:clamp(1.25rem, 2vw, 1.6rem);
  line-height:1.15; font-weight:800; color:#111827;
}
.pd .itinerary-places {
  display:flex; gap:8px; align-items:flex-start;
  color:#6b7280; font-size:.92rem; line-height:1.5;
}
.pd .itinerary-details { margin-left:80px; display:grid; gap:16px; }
.pd .itinerary-point { display:flex; gap:12px; }
.pd .itinerary-point .icon { color:var(--pd-amber); font-size:1.1rem; margin-top:2px; }
.pd .itinerary-point-title { font-weight:700; margin:0 0 6px; color:#111827; }
.pd .itinerary-point-text { margin:0; color:#374151; font-size:.95rem; line-height:1.65; }
.pd .itinerary-meta {
  margin-top:18px; padding-top:16px;
  border-top:1px solid #fed7aa;
  display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:12px;
}
.pd .meta-line { display:flex; gap:8px; align-items:center; font-size:.9rem; color:#374151; }
.pd .meta-line strong { color:#111827; }

/* Inclusions / Exclusions */
.pd .inclusion-card, .pd .exclusion-card {
  background:#fff; border-radius:22px;
  padding:24px 24px 26px;
  box-shadow:var(--pd-shadow-md);
}
.pd .panel-header { display:flex; gap:12px; align-items:center; margin-bottom:20px; }
.pd .panel-icon {
  width:48px; height:48px; border-radius:999px;
  display:flex; align-items:center; justify-content:center;
}
.pd .panel-icon.green { background:#dcfce7; color:#16a34a; }
.pd .panel-icon.red { background:#fee2e2; color:#dc2626; }
.pd .panel-title { margin:0; font-size:1.5rem; font-weight:800; color:#111827; }
.pd .checklist, .pd .crosslist { list-style:none; padding:0; margin:0; display:grid; gap:12px; }
.pd .checklist li, .pd .crosslist li { display:flex; gap:10px; align-items:flex-start; color:#374151; }
.pd .checklist .icon { color:#16a34a; margin-top:3px; }
.pd .crosslist .icon { color:#dc2626; margin-top:3px; }
.pd .checklist .text, .pd .crosslist .text { line-height:1.5; }

/* Info card (transport, hotel grids) */
.pd .info-card {
  background:linear-gradient(135deg, #eff6ff 0%, #eef2ff 100%);
  border-radius:22px;
  padding:24px 24px 26px;
  box-shadow:var(--pd-shadow-md);
}
.pd .info-card .note {
  background:#fff; border-radius:16px;
  padding:16px; box-shadow:var(--pd-shadow-sm);
  margin-top:22px;
}
.pd .info-grid { display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:20px 24px; }
.pd .info-item { display:flex; gap:14px; align-items:flex-start; }
.pd .info-item .icon-wrap {
  width:48px; height:48px; flex:0 0 48px; border-radius:14px;
  background:#3b82f6; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--pd-shadow-sm);
}
.pd .info-item .icon-wrap.purple { background:var(--pd-purple); }
.pd .info-item .icon-wrap.blue { background:var(--pd-blue); }
.pd .info-item .icon-wrap.green { background:var(--pd-green); }
.pd .info-item .label { font-weight:700; margin:0 0 5px; color:#111827; }
.pd .info-item .value { margin:0; color:#374151; font-size:.96rem; line-height:1.6; }

/* Hotel grid */
.pd .hotel-grid { display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:20px 24px; }
.pd .hotels-note { margin-top:22px; background:#fffbeb; border-radius:16px; padding:16px; }

/* Meals */
.pd .meal-wrap {
  background:linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border-radius:22px; padding:24px;
  box-shadow:var(--pd-shadow-md);
}
.pd .meal-grid { display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:18px; margin-bottom:18px; }
.pd .meal-card {
  background:#fff; border-radius:18px;
  padding:22px 18px; text-align:center;
  box-shadow:var(--pd-shadow-sm);
  transition:transform var(--pd-transition), box-shadow var(--pd-transition);
}
.pd .meal-card:hover { transform:translateY(-5px) scale(1.01); box-shadow:var(--pd-shadow-lg); }
.pd .meal-circle {
  width:64px; height:64px; border-radius:999px;
  margin:0 auto 14px;
  display:flex; align-items:center; justify-content:center;
  color:#fff; box-shadow:var(--pd-shadow-sm);
}
.pd .meal-circle.green { background:var(--pd-green); }
.pd .meal-circle.gray { background:#9ca3af; }
.pd .meal-title { margin:0 0 7px; font-size:1.05rem; font-weight:800; color:#111827; }
.pd .meal-detail { margin:0 0 8px; color:#374151; font-size:.95rem; }
.pd .meal-status { margin:0; font-weight:800; font-size:.92rem; }
.pd .meal-status.green { color:var(--pd-green); }
.pd .meal-status.gray { color:#6b7280; }
.pd .meal-note-grid { display:grid; gap:16px; }
.pd .meal-note { background:#fff; border-radius:16px; padding:16px 18px; }

/* Route */
.pd .route-card {
  background:#fff; border-radius:22px;
  padding:24px 24px 26px;
  box-shadow:var(--pd-shadow-md);
}
.pd .route-list { position:relative; display:grid; gap:22px; }
.pd .route-line {
  position:absolute; left:31px; top:46px; bottom:46px;
  width:4px; border-radius:999px;
  background:linear-gradient(to bottom, #f59e0b, #3b82f6, #f59e0b);
}
.pd .route-item { display:flex; gap:16px; align-items:center; position:relative; }
.pd .route-pin {
  width:80px; height:80px; border-radius:999px;
  display:flex; align-items:center; justify-content:center;
  flex:0 0 auto; position:relative; z-index:1;
  box-shadow:var(--pd-shadow-lg); color:#fff;
}
.pd .route-pin.blue { background:#3b82f6; }
.pd .route-pin.green { background:#16a34a; }
.pd .route-pin.amber { background:#f59e0b; }
.pd .route-info {
  flex:1; background:#f9fafb;
  border-radius:16px; padding:16px;
  transition:background-color var(--pd-transition);
}
.pd .route-info:hover { background:#f3f4f6; }
.pd .route-city { font-size:1.05rem; font-weight:800; color:#111827; margin:0 0 5px; }
.pd .route-tag {
  display:inline-flex; align-items:center; justify-content:center;
  padding:6px 12px; border-radius:999px;
  font-size:12px; font-weight:700;
}
.pd .route-step { font-size:2.5rem; font-weight:900; color:#e5e7eb; line-height:1; }

/* Carousels */
.pd .carousel-section .header {
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; margin-bottom:28px;
}
.pd .carousel-section .header .title {
  margin:0 0 8px;
  font-size:clamp(1.85rem, 2.7vw, 2.5rem);
  line-height:1.1; font-weight:800; color:#111827;
}
.pd .carousel-section .header .subtitle { margin:0; color:#6b7280; }
.pd .carousel-section .header .action {
  color:#d97706; font-weight:800;
  display:inline-flex; gap:8px; align-items:center;
  transition:color var(--pd-transition);
}
.pd .carousel-section .header .action:hover { color:#b45309; }
.pd .carousel-section .header .action .icon { font-size:1.05rem; }
.pd .carousel-viewport { overflow:hidden; }
.pd .carousel-track {
  display:flex; gap:24px;
  overflow-x:auto; scroll-behavior:smooth;
  scrollbar-width:none; padding-bottom:4px;
}
.pd .carousel-track::-webkit-scrollbar { display:none; }
.pd .carousel-slide { flex:0 0 auto; }
.pd .carousel-card {
  height:100%;
  background:#fff; border-radius:22px;
  overflow:hidden; box-shadow:var(--pd-shadow-md);
  transition:transform var(--pd-transition), box-shadow var(--pd-transition), opacity var(--pd-transition);
  border:1px solid transparent;
}
.pd .carousel-card:hover { transform:translateY(-10px) scale(1.02); box-shadow:var(--pd-shadow-xl); }
.pd .carousel-image-wrap { position:relative; overflow:hidden; }
.pd .carousel-image-wrap img { height:100%; object-fit:cover; transition:transform 500ms ease; }
.pd .carousel-card:hover img { transform:scale(1.1); }
.pd .carousel-overlay-fade {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.7), rgba(0,0,0,0));
  opacity:0; transition:opacity var(--pd-transition);
}
.pd .carousel-card:hover .carousel-overlay-fade { opacity:1; }
.pd .carousel-content { padding:18px 18px 20px; }
.pd .carousel-title { margin:0 0 10px; font-size:1.1rem; font-weight:800; color:#111827; }
.pd .carousel-desc { margin:0 0 14px; color:#374151; font-size:.95rem; line-height:1.6; }
.pd .carousel-meta { display:flex; gap:10px; align-items:center; color:#6b7280; font-size:.88rem; }
.pd .carousel-btn-text {
  display:inline-flex; gap:5px; align-items:center;
  color:#d97706; font-weight:800; font-size:.92rem;
  transition:transform var(--pd-transition), color var(--pd-transition);
  background:none; border:0; padding:0;
}
.pd .carousel-btn-text:hover { color:#b45309; }
.pd .carousel-btn-text:hover .arrow { transform:translateX(3px); }
.pd .carousel-btn-text .arrow { transition:transform var(--pd-transition); }

.pd .carousel-4 .carousel-slide { flex-basis:calc((100% - 72px) / 4); }
.pd .carousel-3 .carousel-slide { flex-basis:calc((100% - 48px) / 3); }
.pd .carousel-4 .carousel-slide, .pd .carousel-3 .carousel-slide { max-width:100%; }

/* Highlights */
.pd .highlights-grid { display:grid; grid-template-columns:repeat(5, minmax(0,1fr)); gap:24px; }
.pd .highlight-card {
  text-align:center; padding:24px 20px;
  background:linear-gradient(135deg, #fffbeb 0%, #fff7ed 100%);
  border-radius:18px; box-shadow:none;
}
.pd .highlight-icon {
  width:64px; height:64px; border-radius:999px;
  background:#f59e0b; color:#fff;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 14px; box-shadow:var(--pd-shadow-sm);
}
.pd .highlight-title { margin:0 0 8px; font-weight:800; color:#111827; }
.pd .highlight-desc { margin:0; color:#6b7280; font-size:.92rem; line-height:1.55; }

/* Overview */
.pd .overview-list { display:grid; gap:24px; }
.pd .overview-card {
  background:#fff; border-radius:18px;
  padding:24px 24px 26px;
  box-shadow:var(--pd-shadow-sm);
  transition:transform var(--pd-transition), box-shadow var(--pd-transition);
}
.pd .overview-card:hover { transform:scale(1.01); box-shadow:var(--pd-shadow-md); }
.pd .overview-card h3 {
  margin:0 0 12px;
  font-size:clamp(1.2rem, 2vw, 1.5rem);
  font-weight:800; color:#111827;
}
.pd .overview-card p { margin:0; line-height:1.75; color:#374151; }
.pd .overview-card * + p { margin-top:.85em; }

/* Why choose */
.pd .why-grid { display:grid; grid-template-columns:repeat(5, minmax(0,1fr)); gap:24px; }
.pd .why-card {
  background:linear-gradient(135deg, #eff6ff 0%, #eef2ff 100%);
  border-radius:18px; padding:24px 18px; text-align:center;
  transition:transform var(--pd-transition), box-shadow var(--pd-transition);
}
.pd .why-card:hover { transform:translateY(-10px) scale(1.03); box-shadow:var(--pd-shadow-lg); }
.pd .why-icon {
  width:56px; height:56px; border-radius:999px;
  margin:0 auto 14px;
  background:#3b82f6; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--pd-shadow-sm);
}
.pd .why-card h3 { margin:0 0 8px; color:#111827; font-size:1rem; font-weight:800; }
.pd .why-card p { margin:0; color:#6b7280; font-size:.9rem; line-height:1.55; }

/* Pricing */
.pd .pricing-shell { background:linear-gradient(135deg, #f59e0b 0%, #ea580c 100%); }
.pd .pricing-card {
  background:#fff; border-radius:32px;
  padding:24px; box-shadow:var(--pd-shadow-xl);
}
.pd .price {
  display:flex; align-items:center; justify-content:center;
  gap:12px; flex-wrap:wrap; margin:10px 0 8px;
}
.pd .price .amount {
  font-size:clamp(2.2rem, 5vw, 3.55rem);
  font-weight:900; line-height:1; color:#d97706;
}
.pd .price .label { color:#6b7280; font-size:1.05rem; }
.pd .pricing-feature-grid {
  display:grid; grid-template-columns:repeat(2, minmax(0,1fr));
  gap:16px; margin:28px 0 26px;
}
.pd .pricing-feature {
  background:#f9fafb; border-radius:16px;
  padding:16px; display:flex; gap:12px; align-items:flex-start;
  transition:background-color var(--pd-transition), transform var(--pd-transition);
}
.pd .pricing-feature:hover { background:#f3f4f6; transform:translateY(-2px); }
.pd .pricing-feature .icon { color:#d97706; margin-top:2px; }
.pd .pricing-feature h4 { margin:0 0 5px; font-weight:800; color:#111827; }
.pd .pricing-feature p { margin:0; color:#374151; font-size:.94rem; line-height:1.55; }
.pd .pricing-actions { display:flex; flex-wrap:wrap; gap:14px; justify-content:center; }
.pd .pricing-actions .btn { box-shadow:0 16px 30px rgba(15,23,42,.12); }

/* FAQ */
.pd .faq-wrap { max-width:820px; margin:0 auto; }
.pd .accordion { display:grid; gap:16px; }
.pd .accordion-item {
  background:#fff; border-radius:16px; overflow:hidden;
  box-shadow:var(--pd-shadow-sm);
  transition:box-shadow var(--pd-transition);
}
.pd .accordion-item:hover { box-shadow:var(--pd-shadow-md); }
.pd .accordion-trigger {
  width:100%; border:0; background:#fff;
  padding:18px 20px; text-align:left;
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; transition:background-color var(--pd-transition);
}
.pd .accordion-trigger:hover { background:#f9fafb; }
.pd .accordion-question { margin:0; font-size:.97rem; line-height:1.5; font-weight:700; color:#111827; }
.pd .accordion-chevron { color:#d97706; transition:transform 300ms ease; }
.pd .accordion-item.open .accordion-chevron { transform:rotate(180deg); }
.pd .accordion-content { height:0; overflow:hidden; transition:height 320ms ease; }
.pd .accordion-content-inner {
  padding:0 20px 18px; color:#374151;
  font-size:.96rem; line-height:1.7;
}
.pd .accordion-item.open .accordion-content { border-top:1px solid #f3f4f6; }

/* Enquiry form */
.pd .enquiry-shell { background:linear-gradient(135deg, #111827 0%, #1f2937 100%); color:#fff; }
.pd .enquiry-card {
  background:#fff; border-radius:32px;
  padding:24px; box-shadow:var(--pd-shadow-xl);
}
.pd .enquiry-card label {
  display:block; font-size:.92rem; font-weight:800;
  color:#111827; margin-bottom:8px;
}
.pd .form-grid { display:grid; gap:18px; }
.pd .field input,
.pd .field textarea,
.pd .field select {
  width:100%; border:1px solid #d1d5db;
  background:#fff; border-radius:12px;
  padding:13px 16px; outline:none;
  transition:border-color var(--pd-transition), box-shadow var(--pd-transition), transform var(--pd-transition);
  color:#111827;
}
.pd .field input:focus,
.pd .field textarea:focus,
.pd .field select:focus {
  border-color:#f59e0b;
  box-shadow:0 0 0 3px rgba(245,158,11,.16);
}
.pd .field textarea { resize:none; min-height:120px; }
.pd .form-actions { display:flex; flex-wrap:wrap; gap:12px; padding-top:4px; }
.pd .form-actions .btn { flex:1 1 180px; }
.pd .enquiry-title {
  color:#fff; text-align:center; margin:0 0 12px;
  font-size:clamp(1.95rem, 3vw, 2.65rem);
  font-weight:900; letter-spacing:-.03em;
}
.pd .enquiry-subtitle { text-align:center; color:#d1d5db; margin:0; line-height:1.6; }
.pd .enquiry-header { margin-bottom:28px; }
.pd .form-feedback { margin-top:8px; font-weight:700; font-size:.95rem; }
.pd .form-feedback.ok { color:#15803d; }
.pd .form-feedback.err { color:#b91c1c; }

/* Sticky mobile CTA */
.pd .sticky-cta {
  position:fixed; left:0; right:0; bottom:0;
  z-index:50; background:#fff;
  border-top:2px solid #f59e0b;
  box-shadow:0 -18px 40px rgba(15,23,42,.16);
  transform:translateY(110%);
  animation:pd-slideUp 380ms ease forwards;
}
.pd .sticky-cta-inner { padding:10px 10px; }
.pd .sticky-grid { display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:8px; }
.pd .sticky-grid .btn {
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
  border-radius:10px; padding:10px 8px;
  min-height:50px; flex-direction:column; gap:4px;
}
.pd .sticky-grid .btn .label { font-size:10px; line-height:1.1; font-weight:800; }
.pd .sticky-grid .btn .icon { font-size:1rem; }
.pd .bottom-spacer { height:80px; }

/* Reveal entry points — animate.css plays the entrance via JS.
   Only elements explicitly queued by JS (with .reveal--queued) are hidden;
   everything else stays visible so print/screen-readers/no-JS users see content.
   prefers-reduced-motion users always see content immediately with no animation. */
.pd .reveal { opacity:1; }
.pd .reveal--queued { opacity:0; }
.pd .reveal.animate__animated { opacity:1; } /* animate.css owns final state */

@media (prefers-reduced-motion: reduce) {
  .pd .reveal, .pd .reveal--queued { opacity:1 !important; }
  .pd .animate__animated { animation:none !important; }
}

.pd .line-clamp-1, .pd .line-clamp-2 {
  display:-webkit-box; -webkit-box-orient:vertical; overflow:hidden;
}
.pd .line-clamp-1 { -webkit-line-clamp:1; line-clamp:1; }
.pd .line-clamp-2 { -webkit-line-clamp:2; line-clamp:2; }

.pd .desktop-only { display:block; }
.pd .mobile-only { display:none; }
.pd .hide-mobile { display:block; }
.pd .show-mobile { display:none; }

@keyframes pd-slideUp {
  from { transform:translateY(100%); }
  to { transform:translateY(0); }
}

@media (min-width: 768px) {
  .pd .hero-stage { height:var(--pd-hero-h-desktop); }
  .pd .hero-content .container { padding-bottom:48px; }
  .pd .cta-grid { display:flex; flex-wrap:wrap; gap:12px; }
  .pd .cta-grid .btn { width:auto; }
  .pd .cta-grid .btn .mobile-label { display:none; }
  .pd .cta-grid .btn .desktop-label { display:inline; }
  .pd .desktop-only { display:block; }
  .pd .mobile-only { display:none; }
}

@media (max-width: 1024px) {
  .pd .grid-5,
  .pd .highlights-grid,
  .pd .why-grid { grid-template-columns:repeat(3, minmax(0,1fr)); }
  .pd .carousel-4 .carousel-slide { flex-basis:calc((100% - 48px) / 3); }
  .pd .carousel-3 .carousel-slide { flex-basis:calc((100% - 48px) / 2); }
  .pd .carousel-4 .carousel-slide,
  .pd .carousel-3 .carousel-slide { max-width:100%; }
}

@media (max-width: 900px) {
  .pd .grid-4, .pd .grid-5,
  .pd .highlights-grid, .pd .why-grid { grid-template-columns:repeat(2, minmax(0,1fr)); }
  .pd .grid-2, .pd .info-grid, .pd .hotel-grid, .pd .pricing-feature-grid { grid-template-columns:1fr; }
  .pd .meal-grid { grid-template-columns:1fr; }
  .pd .itinerary-details { margin-left:0; }
  .pd .route-line { left:31px; }
  .pd .carousel-section .header { align-items:flex-start; flex-direction:column; }
}

@media (max-width: 767px) {
  .pd { --pd-section-pad:48px; }
  .pd .container, .pd .container.narrow-2, .pd .container.narrow-3, .pd .container.narrow-4 {
    width:min(100% - 28px, var(--pd-container));
  }
  .pd .hero-stage { height:var(--pd-hero-h-mobile); }
  .pd .hero-content .container { padding-bottom:34px; }
  .pd .hero-meta { gap:10px 16px; font-size:.92rem; }
  .pd .hero-summary { font-size:.94rem; }
  .pd .cta-grid { grid-template-columns:repeat(4, minmax(0,1fr)); }
  .pd .cta-grid .btn { padding:10px 8px; min-height:54px; }
  .pd .cta-grid .btn .desktop-label { display:none; }
  .pd .cta-grid .btn .mobile-label { display:inline; font-size:10px; }
  .pd .highlights-grid, .pd .why-grid { grid-template-columns:1fr; }
  .pd .itinerary-top { flex-direction:row; gap:14px; }
  .pd .itinerary-details { margin-left:0; }
  .pd .itinerary-meta { grid-template-columns:1fr; }
  .pd .route-item { align-items:flex-start; }
  .pd .route-pin { width:64px; height:64px; }
  .pd .route-step { display:none; }
  .pd .route-line { left:25px; top:34px; bottom:34px; }
  .pd .hero-title { font-size:clamp(2rem, 7vw, 3rem); }
  .pd .section-head { margin-bottom:24px; }
  .pd .desktop-only { display:none; }
  .pd .mobile-only { display:block; }
  .pd .sticky-cta { display:block; }
  .pd .summary-item { min-width:122px; }
  .pd .carousel-slide { flex-basis:82% !important; }
}

@media (max-width: 520px) {
  .pd .grid-3, .pd .grid-4, .pd .grid-5,
  .pd .highlights-grid, .pd .why-grid,
  .pd .pricing-feature-grid { grid-template-columns:1fr; }
  .pd .cta-grid { gap:6px; }
  .pd .cta-grid .btn { padding:9px 7px; }
  .pd .hero-dots { bottom:12px; }
  .pd .hero-dots button { width:7px; height:7px; }
  .pd .hero-dots button.active { width:22px; }
  .pd .pricing-card, .pd .enquiry-card { padding:20px 16px; }
  .pd .itinerary-card .body, .pd .route-card,
  .pd .inclusion-card, .pd .exclusion-card,
  .pd .info-card, .pd .meal-wrap { padding:18px; }
  .pd .carousel-slide { flex-basis:88% !important; }
}
