:root {
  --bg: #0b0f14;
  --bg-soft: #121923;
  --card: #121a25;
  --text: #e9eef5;
  --muted: #a6b3c5;
  --red: #e94545;
  --gold: #f4c77b;
  --line: #263244;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: Manrope, sans-serif; background: var(--bg); color: var(--text); }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, 92vw); margin: 0 auto; }
.hero {
  position: relative;
  min-height: 88vh;
  background:
    radial-gradient(circle at 20% 20%, rgba(233,69,69,.32), transparent 45%),
    radial-gradient(circle at 75% 70%, rgba(244,199,123,.22), transparent 35%),
    linear-gradient(170deg, #0b0f14 0%, #121b28 40%, #0e141e 100%);
  overflow: hidden;
}
.overlay {
  position: absolute; inset: 0;
  background-image: repeating-radial-gradient(circle at 10% 30%, rgba(255,255,255,.04) 0 6px, transparent 7px 22px);
  opacity: .35;
}
.nav {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
}
.logo { font-weight: 800; font-size: 24px; letter-spacing: .2px; }
.logo span { color: var(--red); }
.nav-links { display: flex; gap: 18px; color: var(--muted); font-weight: 600; }
.nav-links a:hover { color: var(--text); }
.hero-content { position: relative; z-index: 2; padding: 64px 0 36px; }
.badge { display: inline-block; border: 1px solid var(--line); border-radius: 100px; padding: 8px 14px; color: var(--gold); }
h1 { font-size: clamp(34px, 5vw, 62px); margin: 16px 0 14px; max-width: 900px; line-height: 1.05; }
h1 span { color: var(--gold); }
.hero-content p { max-width: 760px; color: var(--muted); font-size: 18px; }
.aeo-snippet { margin-top: 10px; font-size: 15px !important; line-height: 1.6; color: #c2cedd !important; max-width: 900px; }
.hero-phone { margin: 10px 0 0; font-size: 15px; color: var(--muted); }
.hero-phone a { color: #dce7f7; text-decoration: none; border-bottom: 1px dashed #51637e; }
.hero-phone a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 46px; padding: 0 18px; border-radius: 10px; border: 1px solid transparent;
  font-weight: 700;
}
.btn-main { background: linear-gradient(120deg, var(--red), #ff6a6a); color: #fff; }
.btn-main:hover { filter: brightness(1.07); }
.btn-ghost { border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.quick-facts { margin-top: 22px; padding-left: 18px; color: var(--muted); line-height: 1.9; }
.aeo-facts { margin-top: 12px; display: grid; gap: 8px; max-width: 860px; }
.fact { display: grid; gap: 4px; background: rgba(17,25,37,.6); border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; }
.fact strong { font-size: 14px; }
.fact span { color: var(--muted); font-size: 14px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.messenger-icons { display: flex; gap: 10px; margin-top: 12px; }
.msg-icon {
  width: 46px; height: 46px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); color: var(--text); font-weight: 800; font-size: 13px;
  background: #0f1724;
}
.msg-icon:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.msg-icon svg { width: 22px; height: 22px; display: block; }
.section { padding: 74px 0; }
.section-soft { background: var(--bg-soft); }
h2 { font-size: clamp(28px, 4vw, 44px); margin: 0 0 10px; }
.sub { color: var(--muted); margin-bottom: 24px; }
.compact-note { margin-top: 8px; margin-bottom: 16px; font-size: 14px; }
.cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.cards.single { grid-template-columns: 1fr; }
.reviews-carousel { margin-bottom: 8px; }
.reviews-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.reviews-dots { display:none; gap:8px; justify-content:center; margin-top:12px; }
.dot { width:8px; height:8px; border-radius:999px; border:0; background:#304158; opacity:.7; }
.dot.active { background: var(--gold); opacity:1; }
.rating-pill { display: inline-flex; align-items: center; gap: 10px; background: #101826; border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; margin-bottom: 14px; }
.rating-pill .stars { color: #f4c77b; letter-spacing: 1px; }
.review-highlights { display:flex; flex-wrap: wrap; gap:8px; margin: 4px 0 16px; }
.review-highlights span { background:#101826; border:1px solid var(--line); color:var(--muted); border-radius:999px; padding:8px 12px; font-size:13px; }
.review-card p { color: var(--text); font-size: 15px; line-height: 1.55; }
.review-card span { color: var(--muted); font-size: 13px; }
.card {
  background: linear-gradient(180deg, #151f2d 0%, #111925 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}
.card h3 { margin-top: 0; }
.card p, .card li { color: var(--muted); }
.hotel-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px;
  margin: 18px 0 20px;
}
.hotel-item { background: #101826; border: 1px solid var(--line); border-radius: 14px; padding: 14px; display: flex; flex-direction: column; gap: 6px; }
.hotel-item strong { font-size: 18px; }
.hotel-item span { color: var(--muted); }
.features-inline { display: flex; flex-wrap: wrap; gap: 12px; list-style: none; padding: 0; margin: 18px 0 0; }
.features-inline li { background: #101826; border: 1px solid var(--line); border-radius: 999px; padding: 10px 14px; color: var(--muted); }
.faq-list { display: grid; gap: 10px; margin-top: 16px; }
.faq-item {
  background: linear-gradient(180deg, #151f2d 0%, #111925 100%);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--gold);
  font-weight: 800;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item p { color: var(--muted); margin: 10px 0 4px; }

.contact-box { background: linear-gradient(180deg, #151f2d 0%, #111925 100%); border: 1px solid var(--line); border-radius: 16px; padding: 22px; }
.contact-box p { color: var(--muted); }
.footer { border-top: 1px solid var(--line); padding: 24px 0; color: var(--muted); text-align: center; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .cards, .hotel-grid { grid-template-columns: 1fr; }
  .reviews-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 4px;
  }
  .review-card { min-width: 86vw; scroll-snap-align: start; }
  .reviews-dots { display:flex; }
}
