/* ========================================
   BEYONDROCKIES — SEO LANDING PAGE STYLES
   Reuses tokens from style.css (navy, orange, fonts).
   Does NOT override or alter any existing page styles.
   Applied only on .seo-page bodies.
   ======================================== */

body.seo-page { padding-top: 72px; background: var(--navy); color: var(--white-90); }

/* Page hero */
.seo-hero {
  position: relative;
  padding: 80px 0 60px;
  background-color: var(--navy);
  background-image:
    linear-gradient(180deg, rgba(10,22,40,0.65) 0%, rgba(10,22,40,0.92) 100%),
    radial-gradient(1200px 600px at 50% 0%, rgba(230,126,34,0.15), transparent 60%);
  background-size: cover, auto;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  text-align: center;
  border-bottom: 1px solid var(--white-10);
}
/* Pages with hero background image use inline style */
.seo-hero .container { max-width: 960px; }
.seo-hero .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 18px;
}
.seo-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--white);
}
.seo-hero p.lede {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--white-70);
  max-width: 760px;
  margin: 0 auto 30px;
  line-height: 1.7;
}
.seo-hero .hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.seo-hero .trust-row {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
  color: var(--white-70);
  font-size: 0.92rem;
}
.seo-hero .trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.seo-hero .trust-row i { width: 18px; height: 18px; color: var(--orange); }

/* Breadcrumb */
.breadcrumb {
  background: rgba(10,22,40,0.6);
  border-bottom: 1px solid var(--white-10);
  padding: 14px 0;
  font-size: 0.85rem;
  color: var(--white-50);
}
.breadcrumb a { color: var(--white-70); transition: color .2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { margin: 0 8px; color: var(--white-30); }

/* Generic content sections */
.seo-section { padding: 70px 0; border-bottom: 1px solid var(--white-05); }
.seo-section:last-of-type { border-bottom: none; }
.seo-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 18px;
  color: var(--white);
}
.seo-section h2 .text-orange { color: var(--orange); }
.seo-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 22px 0 10px;
  color: var(--white);
}
.seo-section p { color: var(--white-70); line-height: 1.75; margin-bottom: 14px; font-size: 1rem; }
.seo-section ul.bullets { margin: 10px 0 18px; padding: 0; }
.seo-section ul.bullets li {
  position: relative;
  padding: 6px 0 6px 26px;
  color: var(--white-70);
  line-height: 1.6;
}
.seo-section ul.bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

/* Two-column intro */
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.two-col .col-img img {
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
}
@media (max-width: 820px) {
  .two-col { grid-template-columns: 1fr; gap: 28px; }
}

/* Feature cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  padding: 24px;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(230,126,34,0.4);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.feature-card .icon-wrap {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(230,126,34,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: var(--orange);
}
.feature-card .icon-wrap i { width: 22px; height: 22px; }
.feature-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.feature-card p { font-size: 0.92rem; color: var(--white-70); margin: 0; line-height: 1.6; }

/* Includes / itinerary list */
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 36px;
  margin-top: 18px;
}
.includes-grid li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 6px 0;
  color: var(--white-90);
  font-size: 0.96rem;
}
.includes-grid li i {
  width: 18px; height: 18px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 3px;
}
@media (max-width: 640px) {
  .includes-grid { grid-template-columns: 1fr; }
}

/* Itinerary timeline */
.mini-timeline { position: relative; margin-top: 22px; padding-left: 28px; }
.mini-timeline::before {
  content: "";
  position: absolute;
  left: 8px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--orange), rgba(230,126,34,0.2));
}
.mini-timeline .ti-item {
  position: relative;
  padding: 4px 0 22px 6px;
}
.mini-timeline .ti-item::before {
  content: "";
  position: absolute;
  left: -26px; top: 10px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(230,126,34,0.18);
}
.mini-timeline .ti-time {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 4px;
}
.mini-timeline h4 { font-size: 1.05rem; color: var(--white); margin-bottom: 4px; font-weight: 700; }
.mini-timeline p { font-size: 0.94rem; color: var(--white-70); margin: 0; line-height: 1.6; }

/* Photo spots / seasonal */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.info-card {
  background: linear-gradient(180deg, rgba(22,37,68,0.6), rgba(10,22,40,0.6));
  border: 1px solid var(--white-10);
  border-radius: 12px;
  padding: 22px;
}
.info-card .label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 8px;
}
.info-card h4 { color: var(--white); margin-bottom: 8px; font-size: 1.05rem; }
.info-card p { color: var(--white-70); font-size: 0.93rem; line-height: 1.65; margin: 0; }

/* Vehicle block */
.vehicle-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  background: linear-gradient(135deg, rgba(22,37,68,0.6), rgba(10,22,40,0.4));
  border: 1px solid var(--white-10);
  border-radius: 16px;
  padding: 32px;
}
.vehicle-block img { border-radius: 12px; box-shadow: var(--shadow); }
.vehicle-block .vb-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
}
.vehicle-block .vb-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--white-10);
  border-radius: 10px;
  padding: 12px 14px;
}
.vehicle-block .vb-stat .num { color: var(--orange); font-weight: 800; font-size: 1.3rem; }
.vehicle-block .vb-stat .lbl { color: var(--white-70); font-size: 0.82rem; }
@media (max-width: 820px) { .vehicle-block { grid-template-columns: 1fr; padding: 22px; } }

/* FAQ */
.seo-faq .faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--white-10);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.seo-faq .faq-item[open] { border-color: rgba(230,126,34,0.35); }
.seo-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  font-weight: 600;
  color: var(--white);
  font-size: 1rem;
}
.seo-faq summary::-webkit-details-marker { display: none; }
.seo-faq summary i { width: 18px; height: 18px; color: var(--orange); transition: transform .3s; }
.seo-faq .faq-item[open] summary i { transform: rotate(180deg); }
.seo-faq .faq-item p {
  padding: 0 22px 20px;
  color: var(--white-70);
  line-height: 1.7;
  margin: 0;
}

/* Trust strip */
.trust-strip {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
  padding: 32px 0;
}
.trust-strip .tg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 22px;
  text-align: center;
}
.trust-strip .tg-item .num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
}
.trust-strip .tg-item .lbl { font-size: 0.85rem; color: var(--white-70); }

/* Final CTA */
.seo-cta {
  background:
    linear-gradient(180deg, rgba(10,22,40,0.85), rgba(10,22,40,0.95)),
    radial-gradient(800px 400px at 50% 0%, rgba(230,126,34,0.22), transparent 60%);
  padding: 70px 0;
  text-align: center;
  border-top: 1px solid var(--white-10);
}
.seo-cta h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--white); margin-bottom: 14px; }
.seo-cta p { color: var(--white-70); max-width: 640px; margin: 0 auto 26px; }
.seo-cta .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Internal-links footer block (above main footer) */
.related-pages {
  padding: 50px 0;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--white-10);
}
.related-pages h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 18px;
  text-align: center;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.related-grid a {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--white-10);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--white-90);
  font-weight: 600;
  font-size: 0.92rem;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.related-grid a:hover {
  border-color: var(--orange);
  background: rgba(230,126,34,0.08);
  color: var(--white);
}
.related-grid a i { width: 16px; height: 16px; color: var(--orange); }

/* Highlights pill row */
.pill-row {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 18px;
}
.pill-row .pill {
  padding: 6px 12px;
  background: rgba(230,126,34,0.12);
  border: 1px solid rgba(230,126,34,0.3);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--orange-light);
  font-weight: 600;
}
