/* LionGateOS Travels — Travel Intelligence Pages Shared Styles */
:root {
  --lg-bg: #030712;
  --lg-bg2: #0a0f1e;
  --lg-panel: rgba(10,15,30,0.85);
  --lg-border: rgba(255,255,255,0.08);
  --lg-accent: #3b82f6;
  --lg-accent2: #6366f1;
  --lg-text: #e2e8f0;
  --lg-muted: #64748b;
  --lg-dim: #94a3b8;
  --lg-font: 'Inter', 'Segoe UI', system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--lg-bg);
  color: var(--lg-text);
  font-family: var(--lg-font);
  line-height: 1.7;
  font-size: 16px;
}
a { color: var(--lg-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* NAV */
.ti-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(3,7,18,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--lg-border);
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.ti-nav-logo { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; color: var(--lg-accent); text-transform: uppercase; }
.ti-nav-cta {
  padding: 8px 20px; border-radius: 999px;
  background: var(--lg-accent); border: none;
  color: #fff; font-size: 13px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: opacity 0.2s;
}
.ti-nav-cta:hover { opacity: 0.85; text-decoration: none; }

/* HERO */
.ti-hero {
  padding: 72px 24px 56px;
  max-width: 760px; margin: 0 auto; text-align: center;
}
.ti-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--lg-accent); text-transform: uppercase;
  margin-bottom: 16px;
}
.ti-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 40%, var(--lg-accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.ti-hero p {
  font-size: 1.1rem; color: var(--lg-dim);
  max-width: 580px; margin: 0 auto 36px;
}
.ti-stats {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center; margin-top: 32px;
}
.ti-stat {
  background: var(--lg-panel);
  border: 1px solid var(--lg-border);
  border-radius: 12px; padding: 16px 24px;
  text-align: center; min-width: 120px;
}
.ti-stat-val { font-size: 1.6rem; font-weight: 800; color: var(--lg-accent); }
.ti-stat-label { font-size: 11px; color: var(--lg-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* CONTENT */
.ti-content { max-width: 760px; margin: 0 auto; padding: 0 24px 80px; }
.ti-section { margin-bottom: 48px; }
.ti-section h2 {
  font-size: 1.4rem; font-weight: 700;
  color: #fff; margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--lg-border);
}
.ti-section h3 { font-size: 1.05rem; font-weight: 600; color: var(--lg-dim); margin: 20px 0 8px; }
.ti-section p { color: var(--lg-dim); margin-bottom: 12px; }
.ti-section ul { color: var(--lg-dim); padding-left: 20px; }
.ti-section ul li { margin-bottom: 6px; }

/* CARDS */
.ti-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 12px; margin-top: 16px; }
.ti-card {
  background: var(--lg-panel); border: 1px solid var(--lg-border);
  border-radius: 12px; padding: 16px;
}
.ti-card-icon { font-size: 1.5rem; margin-bottom: 8px; }
.ti-card h4 { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.ti-card p { font-size: 0.82rem; color: var(--lg-muted); margin: 0; }

/* QUOTE */
.ti-quote {
  border-left: 3px solid var(--lg-accent);
  padding: 16px 20px;
  background: rgba(59,130,246,0.05);
  border-radius: 0 12px 12px 0;
  margin: 24px 0;
  font-style: italic; color: var(--lg-dim);
}
.ti-quote cite { display: block; margin-top: 8px; font-size: 12px; font-style: normal; color: var(--lg-accent); }

/* TABLE */
.ti-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.ti-table th { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--lg-accent); padding: 10px 14px; border-bottom: 1px solid var(--lg-border); text-align: left; }
.ti-table td { padding: 10px 14px; border-bottom: 1px solid rgba(255,255,255,0.04); color: var(--lg-dim); font-size: 0.9rem; }
.ti-table tr:last-child td { border-bottom: none; }

/* FAQ */
.ti-faq { margin-top: 16px; }
.ti-faq-item { border: 1px solid var(--lg-border); border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
.ti-faq-q {
  width: 100%; text-align: left; padding: 16px 20px;
  background: var(--lg-panel); border: none; cursor: pointer;
  color: #fff; font-size: 0.95rem; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
}
.ti-faq-q:hover { background: rgba(59,130,246,0.08); }
.ti-faq-a { padding: 16px 20px; background: rgba(0,0,0,0.2); color: var(--lg-dim); font-size: 0.9rem; display: none; }
.ti-faq-item.open .ti-faq-a { display: block; }
.ti-faq-item.open .ti-faq-q { color: var(--lg-accent); }

/* CTA */
.ti-cta {
  text-align: center; padding: 48px 24px;
  background: var(--lg-panel);
  border: 1px solid var(--lg-border);
  border-radius: 20px; margin: 48px 0;
}
.ti-cta h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 12px; }
.ti-cta p { color: var(--lg-muted); margin-bottom: 24px; }
.ti-btn {
  display: inline-block; padding: 14px 36px;
  background: linear-gradient(135deg, var(--lg-accent), var(--lg-accent2));
  border-radius: 999px; color: #fff;
  font-size: 15px; font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(59,130,246,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.ti-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(59,130,246,0.4); text-decoration: none; }

/* HERO CTA (Primary conversion block after hero) */
.ti-hero-cta {
  margin: 0 auto 40px;
  max-width: 760px;
  padding: 0 24px;
}
.ti-hero-cta-inner {
  background: linear-gradient(135deg, rgba(59,130,246,0.12) 0%, rgba(99,102,241,0.12) 100%);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
}
.ti-hero-cta-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 36px; border-radius: 999px;
  font-size: 15px; font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ti-hero-cta-btn:hover { text-decoration: none; }
.ti-hero-cta-primary {
  display: inline-block;
  padding: 16px 32px;
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 12px 30px rgba(37,99,235,0.35);
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}
.ti-hero-cta-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 40px rgba(37,99,235,0.45);
  text-decoration: none;
}
.ti-secondary-options {
  margin-top: 16px;
}
.ti-secondary-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.ti-secondary-links {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
}
.ti-secondary-links a {
  font-size: 13px;
  color: #93c5fd;
  text-decoration: none;
}
.ti-secondary-links a:hover {
  text-decoration: underline;
}

/* BREADCRUMB */
.ti-breadcrumb { font-size: 12px; color: var(--lg-muted); padding: 16px 24px; max-width: 760px; margin: 0 auto; }
.ti-breadcrumb a { color: var(--lg-muted); }
.ti-breadcrumb span { margin: 0 6px; }

/* BADGE */
.ti-badge {
  display: inline-block; padding: 3px 10px;
  border-radius: 999px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.ti-badge-blue { background: rgba(59,130,246,0.15); color: var(--lg-accent); }
.ti-badge-green { background: rgba(16,185,129,0.15); color: #34d399; }
.ti-badge-yellow { background: rgba(245,158,11,0.15); color: #fbbf24; }
.ti-badge-red { background: rgba(239,68,68,0.15); color: #f87171; }

/* FOOTER */
.ti-footer {
  border-top: 1px solid var(--lg-border);
  padding: 32px 24px; text-align: center;
  font-size: 13px; color: var(--lg-muted);
}
.ti-footer a { color: var(--lg-muted); margin: 0 8px; }

/* SEARCH WIDGET */
.ti-search {
  background: var(--lg-panel);
  border: 1px solid var(--lg-border);
  border-radius: 20px;
  padding: 32px 28px;
  margin: 40px 0;
}
.ti-search-header h2 {
  font-size: 1.4rem; font-weight: 700;
  color: #fff; margin-bottom: 6px;
  border-bottom: none;
}
.ti-search-header p {
  color: var(--lg-muted); font-size: 0.85rem;
  margin-bottom: 24px;
}
.ti-search-form {
  display: flex; flex-direction: column;
  gap: 12px; margin-bottom: 20px;
}
.ti-search-row {
  display: flex; gap: 12px;
}
.ti-search-field { flex: 1; }
.ti-search-field label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--lg-muted); margin-bottom: 6px;
}
.ti-search-field input,
.ti-search-dest {
  width: 100%; padding: 12px 16px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--lg-border);
  border-radius: 12px;
  color: var(--lg-text); font-size: 0.95rem;
  font-family: var(--lg-font);
}
.ti-search-field input:focus {
  outline: none;
  border-color: var(--lg-accent);
  box-shadow: 0 0 0 2px rgba(59,130,246,0.15);
}
.ti-search-field input[type="date"] {
  color-scheme: dark;
}
.ti-search-dest {
  font-weight: 600; color: #fff !important;
  cursor: default;
}
.ti-search-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.ti-search-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 999px;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer; border: none;
}
.ti-search-btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}
.ti-search-btn--hotels {
  background: linear-gradient(135deg, var(--lg-accent), var(--lg-accent2));
  color: #fff;
  box-shadow: 0 4px 20px rgba(59,130,246,0.3);
}
.ti-search-btn--hotels:hover {
  box-shadow: 0 8px 28px rgba(59,130,246,0.4);
}
.ti-search-btn--flights {
  background: transparent;
  border: 1.5px solid var(--lg-accent);
  color: var(--lg-accent);
}
.ti-search-btn--flights:hover {
  background: rgba(59,130,246,0.08);
}
.ti-search-btn--experiences {
  background: transparent;
  border: 1.5px solid var(--lg-border);
  color: var(--lg-dim);
  font-size: 13px; padding: 10px 20px;
}
.ti-search-btn--experiences:hover {
  border-color: var(--lg-dim);
  background: rgba(255,255,255,0.03);
}
.ti-search-legal {
  margin-top: 20px;
  font-size: 11px; color: var(--lg-muted);
  opacity: 0.7;
}
.ti-search-legal a { color: var(--lg-muted); }

@media (max-width: 600px) {
  .ti-hero { padding: 48px 16px 40px; }
  .ti-content { padding: 0 16px 60px; }
  .ti-stats { gap: 10px; }
  .ti-stat { padding: 12px 16px; min-width: 100px; }
  .ti-search { padding: 24px 18px; }
  .ti-search-row { flex-direction: column; }
  .ti-search-actions { flex-direction: column; }
  .ti-search-btn { justify-content: center; }
  .ti-hero-cta-inner { padding: 24px 16px; }
  .ti-hero-cta-primary { padding: 14px 28px; font-size: 15px; }
  .ti-secondary-links { gap: 10px; }
}

/* QUICK INTELLIGENCE */
.ti-quick-intel { margin-bottom: 32px; }
.ti-quick-summary {
  font-size: 0.95rem;
  color: var(--lg-text);
  font-weight: 500;
  margin-bottom: 12px;
}
.ti-quick-meta {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 10px;
}

/* RELATIONSHIP CARDS (Similar / Nearby) */
.ti-relationship-grid {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 12px;
}
.ti-relationship-card {
  background: var(--lg-panel);
  border: 1px solid var(--lg-border);
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
}
.ti-relationship-card a {
  color: var(--lg-accent);
  text-decoration: none;
}
.ti-relationship-card a:hover {
  text-decoration: underline;
}
.ti-relationship-card:hover {
  border-color: rgba(59,130,246,0.3);
  background: rgba(59,130,246,0.05);
}
.ti-relationship-card span {
  color: var(--lg-dim);
}
