/* ═══════════════════════════════════════════════════════
   Tahoe WakeBusters — SEO Landing Pages Shared Stylesheet
   Depends on: css/styles.css (loaded first on each page)
   ═══════════════════════════════════════════════════════ */

/* ── Navbar Override for SEO Pages ── */
.navbar { background: var(--navy); box-shadow: 0 2px 16px rgba(10,22,40,0.25); }

/* ── Breadcrumb ── */
.breadcrumb {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-100);
  padding: 11px 0;
  margin-top: var(--nav-h);
  font-size: 0.82rem;
  color: var(--gray-500);
}
.breadcrumb a { color: var(--teal-dark); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb-sep { margin: 0 6px; }

/* ── SEO Hero ── */
.seo-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.seo-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.32;
}
.seo-hero-content {
  position: relative;
  z-index: 2;
  padding: 88px 24px 80px;
  max-width: 780px;
}
.seo-hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
}
.seo-hero-content .accent { color: var(--teal); }
.seo-hero-content p {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 620px;
}
.seo-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.seo-hero-trust {
  margin-top: 24px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}
.seo-hero-trust strong { color: rgba(255,255,255,0.78); }

/* ── Feature Cards ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px 28px;
  text-align: center;
}
.feature-icon { font-size: 2.2rem; margin-bottom: 12px; line-height: 1; }
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.feature-card p { font-size: 0.9rem; color: var(--gray-700); line-height: 1.6; }

/* ── Fleet Highlight ── */
.fleet-highlight {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.fleet-highlight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.fleet-highlight-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.fleet-highlight-body { padding: 28px 28px 32px; flex: 1; }
.fleet-highlight-body h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.fleet-highlight-body p { font-size: 0.92rem; color: var(--gray-700); line-height: 1.6; margin-bottom: 16px; }
.fleet-highlight-body .price-tag {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--teal-dark);
  margin-bottom: 16px;
}

/* ── Included Grid ── */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.included-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--off-white);
  border-radius: var(--radius);
}
.included-check { color: var(--teal); font-size: 1.1rem; font-weight: 800; flex-shrink: 0; }
.included-item span { font-size: 0.92rem; color: var(--text); line-height: 1.45; }

/* ── Location Block ── */
.location-block {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.location-block h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.location-block p { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.65; margin-bottom: 10px; }
.location-block .loc-details { list-style: none; }
.location-block .loc-details li {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  gap: 8px;
}
.location-block .btn { margin-top: 20px; }

/* ── Page CTA Banner ── */
.page-cta {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  padding: 88px 24px;
  text-align: center;
}
.page-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
}
.page-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.page-cta .cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── Related Pages ── */
.related-pages { background: var(--off-white); }
.related-pages .section-subtitle { max-width: 560px; margin: 0 auto; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.related-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 26px 22px;
  transition: transform var(--transition), box-shadow var(--transition);
  display: block;
  text-decoration: none;
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.related-card .related-icon { font-size: 1.7rem; margin-bottom: 8px; }
.related-card h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 5px;
}
.related-card p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.5; }

/* ── Inline CTA strip ── */
.inline-cta {
  background: var(--teal);
  padding: 28px 24px;
  text-align: center;
  border-radius: var(--radius-lg);
  margin: 48px 0;
}
.inline-cta p { color: var(--navy); font-weight: 700; font-size: 1rem; margin-bottom: 12px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-highlight { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .location-block { grid-template-columns: 1fr; padding: 36px 28px; gap: 28px; }
}
@media (max-width: 768px) {
  .seo-hero { min-height: 440px; }
  .seo-hero-content { padding: 72px 24px; }
  .seo-hero-actions { flex-direction: column; }
  .seo-hero-actions .btn { width: 100%; text-align: center; }
  .features-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .page-cta .cta-actions { flex-direction: column; align-items: stretch; }
  .page-cta .cta-actions .btn { text-align: center; }
}
@media (max-width: 480px) {
  .related-grid { grid-template-columns: 1fr; }
}
