/* ============================================================
   trip-planner.css
   Styles for: Trip Planner page (templates/trip-planner.php)
   ============================================================ */

/* ============================================================
   TRIP PLANNER HERO — compact, action-oriented
   ============================================================ */
.tp-hero {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: var(--header-h, 72px);
}

/* Background image — opacity 0.38, dark bg shows through */
.tp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tp-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.38;
}

/* Strong overlay at the bottom — transitions into progress bar */
.tp-hero__bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to top, #0d1f14 0%, transparent 100%);
}

.tp-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-2xl) 0;
  width: 100%;
}

.tp-hero__content { max-width: 540px; }

.tp-hero__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -1.5px;
  color: var(--pr-cream);
  margin-bottom: var(--space-md);
}

.tp-hero__subtitle {
  font-size: 14px;
  color: rgba(244, 241, 232, 0.6);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 0;
}

.tp-hero__right { /* intentionally empty — visual balance */ }

@media (max-width: 768px) {
  .tp-hero__inner { grid-template-columns: 1fr; }
  .tp-hero__right  { display: none; }
  .tp-hero { min-height: 220px; }
}

/* ============================================================
   PROGRESS BAR
   ============================================================ */
.progress-bar {
  background: var(--pr-white);
  border-bottom: 1px solid var(--pr-border);
  padding: var(--space-md) 0;
  position: sticky;
  top: var(--header-h, 72px);
  z-index: 40;
}

.pb-steps {
  display: flex;
  align-items: flex-start;
  list-style: none;
  position: relative;
}

/* Connecting line — runs across all steps through the dot center */
.pb-steps::before {
  content: '';
  position: absolute;
  top: 12px; /* center of 26px dot */
  left: calc( 100% / 10 ); /* start at center of first dot */
  right: calc( 100% / 10 ); /* end at center of last dot */
  height: 2px;
  background: var(--pr-border);
  z-index: 0;
}

.pb-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}

/* Dot */
.pb-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  border: 2px solid var(--pr-border);
  background: var(--pr-white);
  color: var(--pr-text-hint);
  transition:
    background var(--transition-base),
    border-color var(--transition-base),
    color var(--transition-base);
}

.pb-dot i { font-size: 11px; }

/* Done state — solid green */
.pb-step--done .pb-dot {
  background: var(--pr-green);
  border-color: var(--pr-green);
  color: var(--pr-cream);
}

/* Active state — green border, white bg */
.pb-step--active .pb-dot {
  border-color: var(--pr-green);
  color: var(--pr-green);
  background: var(--pr-white);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.12);
}

/* Label */
.pb-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--pr-text-hint);
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.pb-step--active .pb-label { color: var(--pr-green); font-weight: 600; }
.pb-step--done   .pb-label { color: var(--pr-text-muted); }

/* Mobile: hide labels, show only dots */
@media (max-width: 480px) {
  .pb-label { display: none; }
  .pb-dot { width: 22px; height: 22px; font-size: 10px; }
  .pb-steps::before { top: 10px; }
}

/* ============================================================
   PLANNER PAGE LAYOUT
   ============================================================ */
.planner-page { padding-top: var(--space-2xl); }

.planner-layout {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 1024px) {
  .planner-layout { grid-template-columns: 1fr 320px; }
}

.planner-main {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  min-width: 0;
}

/* ============================================================
   WIDGET EMBED ZONE
   ============================================================ */
.tp-widget-zone { display: flex; flex-direction: column; gap: var(--space-md); }

.tp-widget-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1.5px dashed var(--pr-border);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 500;
  color: var(--pr-text-muted);
  letter-spacing: 0.03em;
  align-self: center;
}

.tp-widget-badge i { font-size: 13px; color: var(--pr-green); }

/* ============================================================
   STEP CARDS (step 2, 3)
   ============================================================ */
.step-card {
  background: var(--pr-white);
  border: 1px solid var(--pr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.step-card__header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-bottom: 1px solid var(--pr-border-light);
  background: #faf8f3;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pr-green);
  color: var(--pr-cream);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-card__title {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: var(--pr-text-dark);
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}

.step-card__subtitle {
  font-size: 13px;
  color: var(--pr-text-muted);
  margin: 0;
}

/* ============================================================
   SERVICE SELECTOR GRID (Step 2)
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: var(--space-lg);
  gap: var(--space-md);
}

@media (max-width: 480px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* Service tile */
.svc-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--pr-border);
  background: var(--pr-white);
  cursor: pointer;
  transition:
    border-color var(--transition-base),
    background var(--transition-base),
    box-shadow var(--transition-base);
  text-align: left;
}

.svc-tile:hover {
  border-color: var(--pr-green);
  background: rgba(45, 106, 79, 0.03);
}

/* Selected state */
.svc-tile.selected,
.svc-tile[aria-pressed="true"] {
  border-color: var(--pr-green);
  border-width: 2px;
  background: #f2faf5;
}

/* Checkmark badge top-right */
.svc-tile__check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--pr-green);
  color: var(--pr-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  opacity: 0;
  transform: scale(0.6);
  transition:
    opacity var(--transition-base),
    transform var(--transition-base);
}

.svc-tile.selected .svc-tile__check,
.svc-tile[aria-pressed="true"] .svc-tile__check {
  opacity: 1;
  transform: scale(1);
}

/* Icon box */
.svc-tile__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 4px;
  flex-shrink: 0;
}

/* Icon color variants */
.svc-tile--green .svc-tile__icon { background: rgba(45, 106, 79, 0.1);  color: var(--pr-green); }
.svc-tile--teal  .svc-tile__icon { background: rgba(116,198,157, 0.12); color: var(--pr-mint);  }
.svc-tile--mint  .svc-tile__icon { background: rgba(116,198,157, 0.15); color: #2d8f5f;          }
.svc-tile--gold  .svc-tile__icon { background: rgba(212,160, 23, 0.1);  color: var(--pr-gold);  }

.svc-tile__name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--pr-text-dark);
  letter-spacing: -0.2px;
  line-height: 1.2;
}

.svc-tile__desc {
  font-size: 11px;
  color: var(--pr-text-muted);
  line-height: 1.4;
}

.svc-tile__price {
  font-size: 11px;
  font-weight: 600;
  color: var(--pr-green);
  margin-top: 2px;
}

/* ============================================================
   DATES & PAX STEP (Step 3)
   ============================================================ */
.step-dates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-md);
  padding: var(--space-lg);
}

@media (max-width: 640px) {
  .step-dates-grid { grid-template-columns: 1fr; }
}

.step-dates-grid .form-field { margin-bottom: 0; }

/* ============================================================
   ITINERARY BUILDER
   ============================================================ */
.itin-builder {
  background: var(--pr-white);
  border: 1px solid var(--pr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.itin-builder__header {
  padding: var(--space-lg);
  border-bottom: 1px solid var(--pr-border-light);
  background: #faf8f3;
}

.itin-builder__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--pr-text-dark);
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}

.itin-builder__note {
  font-size: 12px;
  color: var(--pr-text-muted);
  margin: 0;
}

/* Empty state */
.itin-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
  color: var(--pr-text-muted);
}

.itin-empty i    { font-size: 36px; color: var(--pr-border); }
.itin-empty p    { font-size: 14px; max-width: 320px; margin: 0; }

/* Each day block (generated by JS) */
.itin-day { border-top: 1px solid var(--pr-border-light); }
.itin-day:first-of-type { border-top: none; }

.itin-day-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
  text-align: left;
}

.itin-day-header:hover { background: #faf8f3; }

.itin-day-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--pr-jungle);
  color: var(--pr-cream);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

.itin-day-date {
  font-size: 13px;
  font-weight: 500;
  color: var(--pr-text-body);
  flex: 1;
}

.itin-chevron {
  font-size: 14px;
  color: var(--pr-text-hint);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.itin-day-header[aria-expanded="false"] .itin-chevron {
  transform: rotate(-90deg);
}

/* Day body — collapses via max-height */
.itin-day-body {
  overflow: hidden;
  max-height: 800px;
  transition: max-height 0.35s ease;
}

.itin-day-body.is-collapsed { max-height: 0; }

.itin-day-items {
  list-style: none;
  padding: 0 var(--space-lg) var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Empty day message */
.itin-day-empty {
  font-size: 12px;
  color: var(--pr-text-hint);
  font-style: italic;
  padding: var(--space-sm) 0;
}

/* Service item in a day */
.itin-service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--pr-border-light);
  background: var(--pr-white);
}

.itin-svc-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* Icon color by service type */
.itin-service-item[data-type="shuttle"] .itin-svc-icon { background: rgba(45, 106, 79, 0.1);  color: var(--pr-green); }
.itin-service-item[data-type="private"] .itin-svc-icon { background: rgba(27, 67, 50, 0.1);   color: var(--pr-forest); }
.itin-service-item[data-type="tour"]    .itin-svc-icon { background: rgba(116,198,157, 0.12); color: var(--pr-mint); }
.itin-service-item[data-type="bocas"]   .itin-svc-icon { background: rgba(212,160, 23, 0.1);  color: var(--pr-gold); }

.itin-svc-body {
  flex: 1;
  min-width: 0;
}

.itin-svc-name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--pr-text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.itin-svc-meta {
  font-size: 11px;
  color: var(--pr-text-hint);
}

.itin-svc-remove {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--pr-text-hint);
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.itin-svc-remove:hover {
  background: #fee2e2;
  color: #dc2626;
}

/* "Add service to Day N" button */
.add-svc-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  width: calc(100% - var(--space-lg) * 2);
  margin: 0 var(--space-lg) var(--space-md);
  padding: 9px var(--space-md);
  border: 1.5px dashed var(--pr-border);
  border-radius: var(--radius-sm);
  background: none;
  font-size: 12px;
  font-weight: 500;
  color: var(--pr-text-muted);
  cursor: pointer;
  transition:
    border-color var(--transition-fast),
    color var(--transition-fast),
    background var(--transition-fast);
}

.add-svc-btn:hover {
  border-color: var(--pr-green);
  color: var(--pr-green);
  background: rgba(45, 106, 79, 0.03);
  border-style: solid;
}

.add-svc-btn i { font-size: 13px; }

/* ============================================================
   SUMMARY CARD (sidebar)
   ============================================================ */
.summary-card { overflow: hidden; }

/* Dark header */
.sc-header {
  background: var(--pr-forest);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.sc-header-inner {
  position: relative;
  z-index: 2;
}

.sc-destination {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--pr-cream);
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}

.sc-meta {
  font-size: 12px;
  color: rgba(244, 241, 232, 0.5);
  margin: 0;
}

/* Body */
.sc-body {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.sc-services-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--pr-text-hint);
  margin-bottom: 2px;
}

.sc-services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 48px;
}

.sc-empty {
  font-size: 12px;
  color: var(--pr-text-hint);
  font-style: italic;
}

.sc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--pr-text-body);
}

.sc-item-icon {
  font-size: 12px;
  color: var(--pr-green);
  flex-shrink: 0;
}

.sc-item-name { flex: 1; }

.sc-item-price {
  font-weight: 600;
  color: var(--pr-text-dark);
  flex-shrink: 0;
}

.sc-divider {
  height: 1px;
  background: var(--pr-border-light);
  margin: var(--space-sm) 0;
}

.sc-subtotal-row,
.sc-fee-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--pr-text-muted);
}

.sc-grand-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: var(--pr-text-dark);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--pr-border-light);
}

.sc-total {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--pr-text-dark);
  letter-spacing: -0.5px;
  line-height: 1;
}

.sc-checkout-btn { }

/* Note below buttons */
.sc-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 11px;
  color: var(--pr-text-hint);
  text-align: center;
  margin: 0;
  margin-top: var(--space-sm);
}

.sc-note i { font-size: 12px; color: var(--pr-green); }

/* ============================================================
   POPULAR COMBINATIONS (inspo section)
   ============================================================ */
.inspo-section { }
.inspo-section .section-label { margin-bottom: var(--space-md); }

.inspo-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.inspo-card {
  display: flex;
  align-items: stretch;
  border-radius: var(--radius-md);
  border: 1px solid var(--pr-border);
  overflow: hidden;
  background: var(--pr-white);
  transition:
    border-color var(--transition-base),
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.inspo-card:hover {
  border-color: var(--pr-green);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* Image (90px wide) */
.inspo-card__img {
  width: 90px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--pr-jungle);
}

.inspo-card__img--placeholder {
  background: radial-gradient(ellipse at 50% 70%, #1b4332, #0d1f14);
}

.inspo-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.inspo-card:hover .inspo-card__img img { transform: scale(1.06); }

.inspo-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px 12px;
  gap: 3px;
  min-width: 0;
}

.inspo-card__tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pr-green);
}

.inspo-card__name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--pr-text-dark);
  letter-spacing: -0.2px;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.inspo-card__price {
  font-size: 11px;
  color: var(--pr-text-muted);
  margin: 0;
}

.inspo-card__add {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--pr-green);
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 0;
  margin-top: 3px;
  transition: color var(--transition-fast);
  text-align: left;
}

.inspo-card__add:hover { color: var(--pr-green-hover); }
.inspo-card__add i { font-size: 11px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  /* Planner sidebar — shows below main content */
  .planner-sidebar { order: -1; } /* Move summary to top on mobile */

  /* Stack dates grid */
  .step-dates-grid { grid-template-columns: 1fr 1fr; }

  /* Service grid stays 2 col */

  /* Inspo cards stay horizontal */
}

@media (max-width: 480px) {
  .step-dates-grid { grid-template-columns: 1fr; }
  .service-grid    { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   CHECKOUT MODAL — customer name + email before Stripe redirect
   ============================================================ */
#co-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
}

.co-modal {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  width: 100%;
  max-width: 440px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
}

.co-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: #64748b;
  font-size: 18px;
  padding: 4px;
  line-height: 1;
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.co-modal-close:hover { color: #0f172a; background: #f1f5f9; }

.co-modal-title {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.co-modal-sub {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 16px;
}

.co-modal-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f0fdf4;
  border: 1px solid #a7f3d0;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 20px;
  font-size: 14px;
}
.co-modal-count { color: #047857; font-weight: 600; }
.co-modal-total { color: #065f46; font-size: 15px; }

.co-modal-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}
.co-modal-field label {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.co-modal-field label span { color: #ef4444; }
.co-modal-field input {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 15px;
  color: #1e293b;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.co-modal-field input:focus {
  outline: none;
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5,150,105,.12);
}

.co-modal-err {
  background: #fee2e2;
  color: #991b1b;
  font-size: 13px;
  padding: 9px 13px;
  border-radius: 7px;
  margin-bottom: 12px;
}

.co-modal-submit {
  margin-top: 6px;
}
.co-modal-submit .spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: co-spin .7s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}
@keyframes co-spin { to { transform: rotate(360deg); } }

/* ============================================================
   SEO CONTENT BLOCKS — intro + FAQ
   ============================================================ */
.trip-planner-intro {
  padding: 3rem 0 2rem;
}
.trip-planner-intro h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.trip-planner-intro p {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 1.25rem;
}
.trip-features {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: .5rem 2rem;
  margin-bottom: 2rem;
}
.trip-features li::before {
  content: "✓ ";
  color: #2d6a4f;
  font-weight: 600;
}
.trip-planner-faq {
  padding: 3rem 0;
  border-top: 1px solid #eee;
}
.trip-planner-faq h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.trip-planner-faq .faq-item {
  margin-bottom: 1.5rem;
}
.trip-planner-faq .faq-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .4rem;
}
.trip-planner-faq .faq-item p {
  font-size: .95rem;
  line-height: 1.6;
  color: #444;
  margin: 0;
}
