/* ============================================================
   GoRoute Cabs - packages.css
   Tour Packages page styles (packages.html only)
   ============================================================ */

/* ── FAQ LIST WIDTH ──
   .faq-question/.faq-item/etc. are fully shared from css/style.css and are
   NOT redefined here. The one piece packages.html is missing is the FAQ
   list's width constraint, which lives in css/home.css (max-width: 760px)
   - a file this page doesn't load. Matching that value here (rather than
   the 820px variant used by about.css/corporate.css) so the accordion
   matches index.html/services.html/fleet.html exactly. Horizontal-only
   margin, since the markup already sets its own inline margin-top. */
#packages-faq .faq-list {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ── TRUST STRIP ── */
.pkg-trust-strip {
  background: #111827;
  padding: 14px 0;
}
.pkg-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 0;
}
.pkg-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  padding: 4px 18px;
}
.pkg-trust-dot {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── HOW TO BOOK ── */
.pkg-how-section {
  background: white;
}

.pkg-how-header {
  text-align: center;
  margin-bottom: 48px;
}

.pkg-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.pkg-how-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--text);
  margin: 6px 0 10px;
  line-height: 1.2;
}

.pkg-how-header p {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0;
}

.pkg-how-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

.pkg-how-step {
  flex: 1 1 0;
  max-width: 300px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}

.pkg-how-step:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 24px rgba(255, 69, 0, 0.09);
  transform: translateY(-2px);
}

.pkg-how-num {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  border-radius: 50%;
}

.pkg-how-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
  line-height: 1.3;
}

.pkg-how-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.pkg-how-arrow {
  align-self: center;
  margin-top: 44px;
  font-size: 22px;
  color: var(--border-dark);
  flex-shrink: 0;
}

/* ── PACKAGE GRIDS ── */
/* 5-up grid (religious tours): 6-col track, cards span 2, last row centered */
.packages-grid-5 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.packages-grid-5 .pkg-card {
  grid-column: span 2;
}
.packages-grid-5 .pkg-card:nth-child(4) {
  grid-column: 2 / span 2;
}
.packages-grid-5 .pkg-card:nth-child(5) {
  grid-column: 4 / span 2;
}

/* 3-up grid (tourist packages) */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

/* ── CARD BASE ── */
.pkg-card {
  background: white;
  border-radius: 16px;
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
  display: flex;
  flex-direction: column;
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-border);
}

/* ── CARD HEADER (colored band) ── */
.pkg-header {
  position: relative;
  padding: 28px 24px 22px;
  color: white;
}

.pkg-header.religious {
  background: linear-gradient(135deg, #ff5520 0%, #ff3d00 100%);
}

.pkg-header.tourist {
  background: linear-gradient(135deg, var(--secondary) 0%, #1f2937 100%);
}

.pkg-header-emoji {
  display: block;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 10px;
}

.pkg-type-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.18);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.pkg-name {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
  line-height: 1.2;
  letter-spacing: -0.2px;
}

.pkg-route {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

/* ── CARD BODY ── */
.pkg-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pkg-highlights {
  margin-bottom: 16px;
}

.pkg-highlights li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 6px;
}

.pkg-highlights li:last-child {
  margin-bottom: 0;
}

.pkg-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

/* ── META STRIP (distance / duration / best for) ── */
.pkg-meta-strip {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.pms-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
}

.pms-icon {
  font-size: 15px;
  line-height: 1;
}

.pms-label {
  font-size: 9px;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pms-val {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text);
}

.pms-sep {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── INCLUDED / EXCLUDED ── */
.pkg-inc-exc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.inc-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.inc-title.green {
  color: #16a34a;
}

.inc-title.red {
  color: #dc2626;
}

.inc-list li {
  position: relative;
  padding-left: 18px;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 5px;
}

.inc-list li:last-child {
  margin-bottom: 0;
}

.inc-list li.yes::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: 700;
  font-size: 11px;
}

.inc-list li.no::before {
  content: "\2715";
  position: absolute;
  left: 1px;
  top: 0;
  color: #dc2626;
  font-weight: 700;
  font-size: 10px;
}

/* ── CARD FOOTER ── */
.pkg-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.pkg-price {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.pkg-book-btn {
  width: 100%;
  justify-content: center;
  padding: 12px;
  font-size: 14px;
  border-radius: 10px;
}

/* ── CUSTOM TOUR CTA ── */
.cta-orange {
  background: white;
}

.cta-orange-card {
  background: linear-gradient(135deg, #ff5520 0%, #ff3d00 100%);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-orange-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.cta-orange-card::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.cta-oc-heading {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: rgba(0, 0, 0, 0.85);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-oc-desc {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
}

.cta-oc-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-oc-btn-wa,
.cta-oc-btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  white-space: nowrap;
}

.cta-oc-btn-wa {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.cta-oc-btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  color: var(--primary);
}

.cta-oc-btn-call {
  background: #111827;
  color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-oc-btn-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  background: #1f2937;
  color: white;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .packages-grid-5,
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .packages-grid-5 .pkg-card,
  .packages-grid-5 .pkg-card:nth-child(4),
  .packages-grid-5 .pkg-card:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .pkg-how-steps {
    flex-direction: column;
    align-items: stretch;
  }
  .pkg-how-step {
    max-width: none;
  }
  .pkg-how-arrow {
    margin: 0;
    transform: rotate(90deg);
  }
  .cta-orange-card {
    padding: 48px 24px;
  }
}

@media (max-width: 640px) {
  .packages-grid-5,
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pkg-trust-inner {
    gap: 6px 0;
  }
  .pkg-trust-dot {
    display: none;
  }
  .pkg-trust-item {
    padding: 4px 12px;
    font-size: 12px;
  }
  .cta-oc-btns {
    flex-direction: column;
    align-items: center;
  }
  .cta-oc-btn-wa,
  .cta-oc-btn-call {
    width: 100%;
    justify-content: center;
  }
}
