/* ==========================================================================
   SAN TRAVELS — Master SEO & Local Landing Page System
   ========================================================================== */

:root {
  --gold: #D4AF37;
  --gold-light: #F0D78C;
  --gold-dark: #B8962E;
  --champagne: #F7F3E9;
  --charcoal: #0D0D0D;
  --charcoal-soft: #181818;
  --font-display: 'Cormorant Garamond', Georgia, serif;
}

/* Breadcrumbs Component */
.seo-breadcrumbs {
  background: #111111;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 12px 24px;
  font-size: 12.5px;
  color: #888888;
}
.seo-breadcrumbs ol {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.seo-breadcrumbs li {
  display: inline-flex;
  align-items: center;
}
.seo-breadcrumbs li+li:before {
  content: "›";
  margin-right: 8px;
  color: #D4AF37;
  font-size: 14px;
}
.seo-breadcrumbs a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.2s;
}
.seo-breadcrumbs a:hover {
  color: #D4AF37;
}
.seo-breadcrumbs [aria-current="page"] {
  color: #D4AF37;
  font-weight: 600;
}

/* Clean Luxury Landing Hero */
.landing-hero {
  position: relative;
  background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
  padding: 60px 20px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  overflow: hidden;
}
.landing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.landing-hero-inner {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.landing-hero .hero-badge {
  display: inline-block;
  padding: 7px 18px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid #D4AF37;
  color: #F0D78C;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 20px;
}
.landing-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.8vw, 52px);
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.landing-hero h1 span {
  display: block;
  font-family: var(--font);
  font-size: clamp(13px, 1.8vw, 17px);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #D4AF37;
  font-weight: 600;
  margin-top: 10px;
}
.landing-hero p.hero-subtitle-luxury {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(14px, 1.7vw, 16px);
  max-width: 780px;
  margin: 0 auto 30px;
  line-height: 1.6;
}
.landing-hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  width: 100%;
}
.landing-hero-actions a {
  min-width: 200px;
  padding: 15px 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  transition: all 0.3s;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}
.btn-landing-book {
  background: #D4AF37;
  color: #0a0a0a !important;
  border: 1px solid #D4AF37;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}
.btn-landing-book:hover {
  background: #ffffff;
  color: #0a0a0a !important;
  border-color: #ffffff;
  transform: translateY(-2px);
}
.btn-landing-wa {
  background: #25D366;
  color: #ffffff !important;
  border: 1px solid #25D366;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}
.btn-landing-wa:hover {
  background: #1ebc59;
  border-color: #1ebc59;
  transform: translateY(-2px);
}

/* Trust stacks in clean hero */
.landing-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  max-width: 900px;
  margin-bottom: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}
.landing-trust-item {
  background: #121212;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.landing-trust-item i {
  color: #D4AF37;
  font-size: 18px;
}
.landing-trust-item strong {
  font-size: 11px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}
.landing-trust-item span {
  font-size: 10px;
  color: #999999;
}

.landing-rating-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 14px 24px;
  border-radius: 8px;
  width: 100%;
  max-width: 900px;
  gap: 15px;
}
.landing-rating-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.landing-rating-left i {
  font-size: 22px;
  color: #D4AF37;
}
.landing-rating-left strong {
  display: block;
  color: #ffffff;
  font-size: 13.5px;
}
.landing-rating-left span {
  font-size: 11px;
  color: #aaaaaa;
}
.landing-rating-stars {
  color: #D4AF37;
  font-size: 13px;
  margin-bottom: 3px;
}
.landing-rating-right span {
  font-size: 11px;
  color: #aaaaaa;
}

/* Landing Table */
.lux-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 30px 0;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 8px;
  background: #111111;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.lux-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13.5px;
  color: #ffffff;
  min-width: 580px;
}
.lux-table th {
  background: #1a1a1a;
  color: #D4AF37;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 16px;
  border-bottom: 2px solid #D4AF37;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.lux-table td {
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: #eeeeee;
}
.lux-table tr:nth-child(even) {
  background: rgba(255,255,255,0.02);
}
.lux-table tr:hover {
  background: rgba(212, 175, 55, 0.05);
}

/* Lux Grid & Cards */
.lux-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin: 30px 0;
}
.lux-card {
  background: #111111;
  border: 1px solid rgba(212, 175, 55, 0.18);
  padding: 26px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}
.lux-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.lux-card:hover::before {
  opacity: 1;
}
.lux-card:hover {
  transform: translateY(-4px);
  border-color: #D4AF37;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}
.lux-card h3 {
  font-family: var(--font-display);
  color: #D4AF37;
  font-size: 21px;
  margin-bottom: 12px;
  font-weight: 600;
}
.lux-card p {
  color: #cccccc;
  font-size: 13.5px;
  line-height: 1.6;
}
.lux-card i {
  font-size: 26px;
  color: #D4AF37;
  margin-bottom: 16px;
  display: block;
}

/* Flow Diagram */
.flow-diagram {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 35px 0;
}
.flow-step {
  flex: 1;
  background: #111111;
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 22px 16px;
  border-radius: 8px;
  text-align: center;
}
.flow-step i {
  font-size: 24px;
  color: #D4AF37;
  margin-bottom: 10px;
}
.flow-step h4 {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 6px;
  font-weight: 700;
  text-transform: uppercase;
}
.flow-step p {
  font-size: 12px;
  color: #bbbbbb;
  line-height: 1.4;
  margin: 0;
}
.flow-connector {
  flex-grow: 0;
  color: #D4AF37;
  font-size: 20px;
  font-weight: 700;
}

/* Guide Cards */
.guide-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin: 28px 0;
}
.guide-card {
  background: #111111;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 22px;
  border-radius: 6px;
  text-align: center;
  transition: all 0.3s;
}
.guide-card:hover {
  border-color: #D4AF37;
  background: rgba(212, 175, 55, 0.04);
}
.guide-card h4 {
  font-family: var(--font-display);
  font-size: 19px;
  color: #D4AF37;
  margin-bottom: 8px;
}
.guide-card p {
  color: #aaaaaa;
  font-size: 12.5px;
  line-height: 1.5;
}

/* Accordion FAQ Component */
.faq-accordion {
  margin: 35px auto;
  max-width: 900px;
}
.faq-item {
  background: #111111;
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 10px;
  border-radius: 4px;
  overflow: hidden;
}
.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}
.faq-trigger:hover {
  background: rgba(212, 175, 55, 0.05);
  color: #D4AF37;
}
.faq-trigger::after {
  content: '+';
  font-size: 18px;
  color: #D4AF37;
  font-weight: 400;
  transition: transform 0.3s;
}
.faq-item.active .faq-trigger::after {
  content: '−';
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: rgba(255, 255, 255, 0.01);
}
.faq-content-inner {
  padding: 18px 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: #cccccc;
  font-size: 13.5px;
  line-height: 1.7;
}
.faq-content-inner a {
  color: #D4AF37;
  text-decoration: underline;
}

/* AI Overview & Snippet Direct Answer Blocks */
.ai-overview-block {
  background: linear-gradient(135deg, #141414 0%, #1c170d 100%);
  border: 1.5px solid #D4AF37;
  border-radius: 8px;
  padding: 26px;
  margin: 35px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.ai-overview-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.ai-overview-header i {
  font-size: 22px;
  color: #D4AF37;
}
.ai-overview-header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: #ffffff;
  margin: 0;
}
.ai-overview-body {
  color: #eeeeee;
  font-size: 14px;
  line-height: 1.75;
}
.ai-overview-body ul {
  margin-top: 12px;
  list-style-type: square;
  padding-left: 20px;
}
.ai-overview-body li {
  margin-bottom: 6px;
}

.snippet-section {
  background: rgba(212, 175, 55, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 26px;
  border-radius: 8px;
  margin: 35px 0;
}
.snippet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.snippet-box {
  background: #111111;
  padding: 18px;
  border-radius: 4px;
  border-left: 3px solid #D4AF37;
}
.snippet-box h5 {
  color: #D4AF37;
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 700;
}
.snippet-box p {
  color: #dddddd;
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

/* People Also Ask */
.paa-section {
  margin: 35px 0;
}
.paa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.paa-card {
  background: #161616;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 18px;
  border-radius: 6px;
}
.paa-card h5 {
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 6px;
}
.paa-card p {
  color: #bbbbbb;
  font-size: 12.5px;
  line-height: 1.5;
  margin: 0;
}

/* Conversion CTA Block */
.conversions-block {
  background: linear-gradient(135deg, #0d0d0d 0%, #1e1909 100%);
  border: 2px solid #D4AF37;
  padding: 44px 24px;
  text-align: center;
  border-radius: 10px;
  margin: 50px 0;
}
.conversions-block h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 34px);
  color: #ffffff;
  margin-bottom: 12px;
}
.conversions-block p {
  color: #cccccc;
  max-width: 620px;
  margin: 0 auto 26px;
  font-size: 15px;
  line-height: 1.6;
}
.conversions-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-lux-call {
  background: #ffffff;
  color: #111111 !important;
  padding: 14px 32px;
  font-weight: 700;
  border-radius: 50px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  border: 1px solid #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-lux-call:hover {
  background: transparent;
  color: #ffffff !important;
}
.btn-lux-wa {
  background: #25D366;
  color: #ffffff !important;
  padding: 14px 32px;
  font-weight: 700;
  border-radius: 50px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  border: 1px solid #25D366;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-lux-wa:hover {
  background: #1ebc59;
  border-color: #1ebc59;
}

/* E-E-A-T Badges */
.eeat-badge-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 35px 0;
  flex-wrap: wrap;
}
.eeat-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.03);
  padding: 10px 18px;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.25);
}
.eeat-badge i {
  color: #D4AF37;
  font-size: 16px;
}
.eeat-badge span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
}

/* Responsive Rules */
@media (max-width: 768px) {
  .landing-hero {
    padding: 35px 15px 50px;
  }
  .landing-hero h1 {
    font-size: 28px;
  }
  .landing-hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .landing-hero-actions a {
    width: 100%;
    max-width: 280px;
  }
  .landing-trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .landing-rating-bar {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }
  .landing-rating-left {
    flex-direction: column;
    text-align: center;
  }
  .flow-diagram {
    flex-direction: column;
    gap: 18px;
  }
  .flow-connector {
    transform: rotate(90deg);
  }
  .flow-step {
    width: 100%;
  }
  .snippet-grid {
    grid-template-columns: 1fr;
  }
  .conversions-btns {
    flex-direction: column;
    align-items: center;
  }
  .btn-lux-call, .btn-lux-wa {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
