/* ============================================================
   GIRNE BUSINESS TAKSI — Luxury Dark Theme
   Palette: Obsidian + Champagne Gold + Cream
   Fonts: Cormorant Garamond (display serif) + Jost (body)
============================================================ */

:root {
  --bg: #0a0a0b;
  --bg-soft: #111114;
  --bg-card: #17171c;
  --bg-card-2: #1e1e25;
  --line: rgba(201, 165, 103, 0.18);
  --line-2: rgba(255, 255, 255, 0.06);
  --text: #ecebe6;
  --text-dim: #a5a39c;
  --text-mute: #6b6a64;
  --gold: #c9a567;
  --gold-bright: #e4c58a;
  --gold-deep: #8b6f3f;
  --cream: #f5efdf;
  --red: #c0392b;
  --green: #25d366;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
  --shadow: 0 20px 60px rgba(0,0,0,0.55);
  --shadow-gold: 0 20px 50px rgba(201,165,103,0.18);
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--gold); color: #000; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--gold); }
em { font-style: italic; color: var(--gold); font-family: var(--font-display); }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   PROMO BAR (top)
============================================================ */
.promo-bar {
  position: relative;
  background: linear-gradient(90deg, #c9a567 0%, #e4c58a 50%, #c9a567 100%);
  color: #0a0a0b;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  height: 38px;
  z-index: 1001;
}
.promo-track {
  display: flex; gap: 32px;
  white-space: nowrap;
  animation: promoAnim 35s linear infinite;
  font-size: 13px;
  font-weight: 500;
  line-height: 38px;
  letter-spacing: 0.5px;
  padding-left: 100%;
}
.promo-track span { flex-shrink: 0; }
.promo-track i { margin-right: 8px; }
.promo-track strong { font-weight: 700; }
.promo-code {
  background: rgba(10,10,11,0.9);
  color: #e4c58a;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 11.5px;
  margin: 0 4px;
}
@keyframes promoAnim {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.navbar { top: 38px; }

/* ============================================================
   SCROLL PROGRESS
============================================================ */
.scroll-progress {
  position: fixed; top: 38px; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  z-index: 9999; transition: width .1s linear;
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,11,0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: all .3s ease;
}
.navbar.scrolled {
  background: rgba(10,10,11,0.92);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px; max-width: 1280px; margin: 0 auto; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 26px; font-weight: 600;
  display: grid; place-items: center;
  border-radius: 50%;
  letter-spacing: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-title { font-family: var(--font-display); font-size: 20px; color: var(--cream); font-weight: 600; letter-spacing: 0.5px; }
.brand-sub { font-size: 10.5px; color: var(--text-mute); letter-spacing: 2.4px; text-transform: uppercase; margin-top: 3px; }

.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 13px; font-weight: 400; color: var(--text-dim);
  letter-spacing: 1.2px; text-transform: uppercase;
  position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--cream); }

.nav-cta {
  background: var(--gold);
  color: #0a0a0b !important;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 500; font-size: 13.5px;
  letter-spacing: 0.5px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .25s ease;
  box-shadow: 0 10px 25px rgba(201,165,103,0.35);
}
.nav-cta:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
  color: #0a0a0b !important;
}
.nav-toggle {
  display: none; background: none; border: none;
  color: var(--cream); font-size: 22px; cursor: pointer;
}

/* ============================================================
   LANGUAGE SWITCHER
============================================================ */
.lang-switch {
  display: flex;
  gap: 2px;
  background: rgba(201,165,103,0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  margin-left: 16px;
}
.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-dim);
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  transition: all .25s ease;
}
.lang-btn:hover { color: var(--cream); }
.lang-btn.active {
  background: var(--gold);
  color: #0a0a0b;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 140px 0 100px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(201,165,103,0.15), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(201,165,103,0.08), transparent 50%),
    linear-gradient(180deg, #0a0a0b 0%, #131317 100%),
    url('https://images.unsplash.com/photo-1605236453806-6ff36851218e?w=1920&q=80') center/cover;
  background-blend-mode: normal, normal, multiply, luminosity;
  opacity: 0.95;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,0.6) 0%, rgba(10,10,11,0.3) 40%, rgba(10,10,11,0.95) 100%);
}
.hero-grain {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.8 0 0 0 0 0.65 0 0 0 0 0.4 0 0 0 0.15 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.4; mix-blend-mode: overlay;
}
.hero-inner { position: relative; z-index: 2; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-bright);
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  background: rgba(201,165,103,0.05);
  backdrop-filter: blur(10px);
  margin-bottom: 32px;
  animation: fadeInUp .8s ease both;
}
.hero-tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  animation: pulse 2s infinite;
}
.hero-discount {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 14px 0 0 12px;
  padding: 8px 16px;
  background: linear-gradient(90deg, rgba(201,165,103,0.18), rgba(201,165,103,0.06));
  border: 1px dashed var(--gold);
  border-radius: 999px;
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.4px;
  animation: fadeInUp .9s .1s ease both;
}
.hero-discount i { color: var(--gold); }
.hero-discount strong { color: var(--gold-bright); font-weight: 600; }
.hero-discount b { background: var(--gold); color: #0a0a0b; padding: 2px 8px; border-radius: 6px; font-weight: 700; letter-spacing: 1.5px; font-size: 11.5px; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(46px, 8vw, 104px);
  line-height: 0.98;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -1.5px;
  margin-bottom: 28px;
  animation: fadeInUp 1s .15s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-sub {
  font-size: 19px;
  color: var(--text-dim);
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.65;
  animation: fadeInUp 1s .3s ease both;
}
.hero-sub strong { color: var(--cream); font-weight: 500; }

.hero-cta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 1s .45s ease both;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: all .3s ease;
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--gold);
  color: #0a0a0b !important;
  box-shadow: 0 14px 30px rgba(201,165,103,0.35);
}
.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(201,165,103,0.45);
  color: #0a0a0b !important;
}
.btn-whatsapp {
  background: #25d366;
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  color: #fff !important;
}
.btn-gold {
  background: transparent;
  color: var(--gold) !important;
  border: 1.5px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold);
  color: #0a0a0b !important;
}
.btn-block { width: 100%; justify-content: center; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 720px;
  animation: fadeInUp 1s .6s ease both;
}
.stat {
  border-left: 1px solid var(--line);
  padding-left: 20px;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl {
  font-size: 11.5px;
  color: var(--text-mute);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.scroll-hint {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%); z-index: 3;
}
.scroll-hint span {
  display: block; width: 1px; height: 50px;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   MARQUEE
============================================================ */
.marquee {
  background: var(--gold);
  color: #0a0a0b;
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.marquee-track {
  display: flex; gap: 28px;
  white-space: nowrap;
  animation: marqueeAnim 45s linear infinite;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.marquee-track span { flex-shrink: 0; }
@keyframes marqueeAnim {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTION BASE
============================================================ */
.section { padding: 120px 0; position: relative; }
.section-dark { background: var(--bg-soft); }
.section-head { max-width: 820px; margin: 0 auto 70px; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}
.eyebrow.gold { color: var(--gold-bright); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 62px);
  color: var(--cream);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.section-lead {
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.7;
  max-width: 720px; margin: 0 auto;
}
.section-lead a { color: var(--gold); border-bottom: 1px solid var(--gold); }

/* ============================================================
   SERVICES
============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: all .4s ease;
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(600px circle at var(--x,50%) var(--y,50%), rgba(201,165,103,0.12), transparent 40%);
  opacity: 0; transition: opacity .4s ease;
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  border-color: var(--line);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-card.featured {
  background: linear-gradient(160deg, rgba(201,165,103,0.12), var(--bg-card) 50%);
  border-color: var(--gold);
}
.service-img {
  height: 160px;
  margin: -36px -30px 24px;
  background-size: cover;
  background-position: center;
  position: relative;
  filter: saturate(1.1) contrast(1.05);
}
.service-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,0.25) 0%, rgba(10,10,11,0.75) 100%);
}
.service-card:hover .service-img {
  filter: saturate(1.3) brightness(1.08) contrast(1.05);
}
.ribbon {
  position: absolute; top: 22px; right: 22px;
  background: var(--gold); color: #0a0a0b;
  font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.service-icon {
  width: 56px; height: 56px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 22px;
  margin-bottom: 22px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 14px;
}
.service-card p {
  color: var(--text-dim);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.65;
}
.service-card ul { list-style: none; }
.service-card ul li {
  font-size: 13.5px;
  color: var(--text-mute);
  padding: 7px 0;
  border-top: 1px dashed var(--line-2);
  display: flex; align-items: center; gap: 10px;
}
.service-card ul li::before {
  content: '→'; color: var(--gold); font-weight: 600;
}

/* ============================================================
   ROUTES
============================================================ */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.route-card {
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: all .35s ease;
}
.route-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  background: var(--bg-card-2);
}
.route-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.route-head i {
  width: 40px; height: 40px;
  background: rgba(201,165,103,0.08);
  color: var(--gold);
  display: grid; place-items: center;
  border-radius: 10px;
  font-size: 16px;
}
.route-head h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--cream);
  font-weight: 600;
}
.route-card p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.route-pill {
  display: inline-block;
  background: rgba(201,165,103,0.08);
  color: var(--gold-bright);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1px;
  border: 1px solid var(--line);
}

.routes-note {
  margin-top: 50px;
  padding: 24px 28px;
  background: rgba(201,165,103,0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex; align-items: flex-start; gap: 16px;
}
.routes-note i { color: var(--gold); font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.routes-note p { color: var(--text-dim); font-size: 14.5px; }
.routes-note strong { color: var(--cream); }

/* ============================================================
   VIP NIGHT
============================================================ */
.vip-section {
  background:
    radial-gradient(ellipse at 90% 10%, rgba(201,165,103,0.08), transparent 50%),
    linear-gradient(180deg, #0a0a0b, #0f0a14);
}
.vip-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
.vip-text p {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.vip-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 32px 0;
}
.vip-features > div {
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px; color: var(--cream);
}
.vip-features i {
  width: 38px; height: 38px;
  background: rgba(201,165,103,0.1);
  color: var(--gold);
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 15px;
}
.vip-visual { display: grid; gap: 20px; }
.vip-image-card {
  position: relative;
  height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  transition: transform .5s ease;
}
.vip-image-card:hover { transform: translateY(-4px) scale(1.01); }
.vip-img-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.15) contrast(1.05);
  transition: transform 6s ease;
}
.vip-image-card:hover .vip-img-bg { transform: scale(1.08); }
.vip-image-card::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(10,10,11,0.85) 0%, rgba(10,10,11,0.55) 45%, rgba(201,165,103,0.25) 100%);
}
.vip-night::before {
  background: linear-gradient(135deg, rgba(10,10,11,0.88) 0%, rgba(20,5,40,0.5) 45%, rgba(180,80,200,0.35) 100%);
}
.vip-casino::before {
  background: linear-gradient(135deg, rgba(10,10,11,0.88) 0%, rgba(40,10,10,0.5) 45%, rgba(201,165,103,0.4) 100%);
}
.vip-sparkle {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image:
    radial-gradient(circle 1px at 20% 30%, rgba(255,255,255,0.9), transparent),
    radial-gradient(circle 1.5px at 70% 20%, rgba(255,215,130,1), transparent),
    radial-gradient(circle 1px at 85% 60%, rgba(255,255,255,0.8), transparent),
    radial-gradient(circle 2px at 40% 75%, rgba(255,215,130,0.9), transparent),
    radial-gradient(circle 1px at 55% 45%, rgba(255,255,255,0.7), transparent),
    radial-gradient(circle 1.5px at 15% 80%, rgba(255,215,130,0.85), transparent),
    radial-gradient(circle 1px at 90% 85%, rgba(255,255,255,0.9), transparent),
    radial-gradient(circle 1.5px at 30% 15%, rgba(255,215,130,1), transparent),
    radial-gradient(circle 1px at 65% 92%, rgba(255,255,255,0.7), transparent);
  animation: sparkle 3s linear infinite;
}
@keyframes sparkle {
  0%,100% { opacity: 0.4; }
  50% { opacity: 1; }
}
.vip-image-content {
  position: relative; z-index: 3;
  height: 100%;
  padding: 26px 30px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.vip-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(10,10,11,0.7);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  align-self: flex-start;
}
.vip-badge.gold {
  background: rgba(201,165,103,0.95);
  color: #0a0a0b;
  border-color: var(--gold-bright);
}
.vip-badge i { font-size: 13px; }
.vip-image-content h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: #fff;
  font-weight: 600;
  margin: 10px 0 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.vip-list-mini {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.vip-list-mini li {
  font-size: 12px;
  color: #fff;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 5px 11px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  font-family: var(--font-display);
  font-weight: 500;
}

/* ============================================================
   CSS ROULETTE WHEEL (Casino card)
============================================================ */
.vip-casino {
  background: radial-gradient(ellipse at 75% 50%, #1a0f05 0%, #0a0503 80%);
  overflow: hidden;
}
.vip-casino::before {
  background: linear-gradient(90deg, rgba(10,10,11,0.96) 0%, rgba(10,5,3,0.85) 55%, rgba(10,5,3,0.5) 100%);
}
.roulette-wheel {
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 320px; height: 320px;
  z-index: 2;
  filter: drop-shadow(0 0 30px rgba(201,165,103,0.6));
}
.roulette-outer {
  position: absolute; inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #f4d98f 0%, #c9a567 35%, #8b6f3f 70%, #5a4828 100%);
  animation: rouletteSpin 18s linear infinite;
  box-shadow:
    inset 0 0 30px rgba(0,0,0,0.5),
    inset 0 0 60px rgba(201,165,103,0.3),
    0 0 40px rgba(201,165,103,0.4);
}
.roulette-rim {
  position: absolute; inset: 8px;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg,
      #2b1a0a 0deg, #c9a567 10deg, #2b1a0a 20deg,
      #c9a567 30deg, #2b1a0a 40deg, #c9a567 50deg,
      #2b1a0a 60deg, #c9a567 70deg, #2b1a0a 80deg,
      #c9a567 90deg, #2b1a0a 100deg, #c9a567 110deg,
      #2b1a0a 120deg, #c9a567 130deg, #2b1a0a 140deg,
      #c9a567 150deg, #2b1a0a 160deg, #c9a567 170deg,
      #2b1a0a 180deg, #c9a567 190deg, #2b1a0a 200deg,
      #c9a567 210deg, #2b1a0a 220deg, #c9a567 230deg,
      #2b1a0a 240deg, #c9a567 250deg, #2b1a0a 260deg,
      #c9a567 270deg, #2b1a0a 280deg, #c9a567 290deg,
      #2b1a0a 300deg, #c9a567 310deg, #2b1a0a 320deg,
      #c9a567 330deg, #2b1a0a 340deg, #c9a567 350deg, #2b1a0a 360deg);
  box-shadow: inset 0 0 20px rgba(0,0,0,0.7);
}
.roulette-inner {
  position: absolute; inset: 34px;
  border-radius: 50%;
  background:
    conic-gradient(
      #c9a567 0deg 20deg,
      #1a0a03 20deg 40deg,
      #a0282a 40deg 60deg,
      #1a0a03 60deg 80deg,
      #c9a567 80deg 100deg,
      #1a0a03 100deg 120deg,
      #a0282a 120deg 140deg,
      #1a0a03 140deg 160deg,
      #c9a567 160deg 180deg,
      #1a0a03 180deg 200deg,
      #a0282a 200deg 220deg,
      #1a0a03 220deg 240deg,
      #c9a567 240deg 260deg,
      #1a0a03 260deg 280deg,
      #a0282a 280deg 300deg,
      #1a0a03 300deg 320deg,
      #c9a567 320deg 340deg,
      #1a0a03 340deg 360deg);
  border: 2px solid #8b6f3f;
  box-shadow: inset 0 0 25px rgba(0,0,0,0.6);
}
.roulette-numbers {
  position: absolute; inset: 0;
  border-radius: 50%;
}
.roulette-numbers span {
  position: absolute;
  top: 50%; left: 50%;
  width: 30px; height: 30px;
  margin: -15px 0 0 -15px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.9);
  transform: rotate(calc(var(--i) * 20deg)) translateY(-95px);
}
.roulette-center {
  position: absolute;
  top: 50%; left: 50%;
  width: 80px; height: 80px;
  margin: -40px 0 0 -40px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f4d98f, #c9a567 60%, #8b6f3f 100%);
  display: grid; place-items: center;
  box-shadow:
    inset 0 0 15px rgba(0,0,0,0.5),
    0 0 20px rgba(201,165,103,0.8);
  animation: rouletteSpinReverse 18s linear infinite;
}
.roulette-star {
  color: #1a0a03;
  font-size: 28px;
  filter: drop-shadow(0 1px 2px rgba(255,255,255,0.4));
}
.roulette-ball {
  position: absolute;
  top: 6px; left: 50%;
  margin-left: -5px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, #e0e0e0 50%, #999 100%);
  box-shadow: 0 0 8px rgba(255,255,255,0.9), 0 2px 4px rgba(0,0,0,0.5);
}
@keyframes rouletteSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes rouletteSpinReverse {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

.roulette-sparkle {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image:
    radial-gradient(circle 1.5px at 15% 25%, rgba(255,215,130,1), transparent 50%),
    radial-gradient(circle 2px at 35% 15%, rgba(255,255,255,0.95), transparent 50%),
    radial-gradient(circle 1px at 22% 72%, rgba(255,215,130,0.9), transparent 50%),
    radial-gradient(circle 1.5px at 8% 50%, rgba(255,255,255,0.85), transparent 50%),
    radial-gradient(circle 2.5px at 28% 88%, rgba(255,215,130,1), transparent 50%),
    radial-gradient(circle 1px at 42% 35%, rgba(255,255,255,0.8), transparent 50%),
    radial-gradient(circle 1.5px at 5% 82%, rgba(255,215,130,0.9), transparent 50%);
  animation: sparkle 2.5s ease-in-out infinite;
}
.casino-content {
  max-width: 56%;
}

/* ============================================================
   FLEET
============================================================ */
.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.fleet-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.fleet-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 6s ease;
}
.fleet-visual:hover img { transform: scale(1.06); }
.fleet-badge {
  position: absolute; top: 24px; left: 24px;
  background: rgba(10,10,11,0.85);
  backdrop-filter: blur(10px);
  color: var(--gold);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; gap: 8px;
}
.fleet-text p {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 30px;
}
.fleet-text strong { color: var(--cream); }
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
  margin-bottom: 32px;
}
.spec {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-2);
  display: flex; justify-content: space-between;
}
.spec-k { color: var(--text-mute); font-size: 12.5px; letter-spacing: 1.5px; text-transform: uppercase; }
.spec-v { color: var(--cream); font-family: var(--font-display); font-size: 17px; font-weight: 500; }
.amenities {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.amenities span {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(201,165,103,0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--cream);
}
.amenities i { color: var(--gold); }

/* ============================================================
   WHY US
============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-2);
  border: 1px solid var(--line-2);
}
.why-card {
  background: var(--bg);
  padding: 50px 38px;
  transition: background .3s ease;
}
.why-card:hover { background: var(--bg-card); }
.why-num {
  font-family: var(--font-display);
  font-size: 54px;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 18px;
  font-style: italic;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 14px;
}
.why-card p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================================
   SEO LONG CONTENT
============================================================ */
.seo-content { max-width: 960px; margin: 0 auto; }
.seo-block {
  padding: 30px 0;
  border-top: 1px solid var(--line-2);
}
.seo-block:first-of-type { border-top: none; }
.seo-block h3 {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}
.seo-block p {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 16px;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi {
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .3s ease;
}
.testi:hover { border-color: var(--gold); transform: translateY(-3px); }
.stars { color: var(--gold); letter-spacing: 4px; font-size: 16px; margin-bottom: 16px; }
.testi blockquote {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.55;
  color: var(--cream);
  margin-bottom: 20px;
  font-style: italic;
  font-weight: 500;
}
.testi figcaption {
  font-size: 13px;
  color: var(--text-mute);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding-top: 16px;
  border-top: 1px solid var(--line-2);
  display: flex; align-items: center; gap: 12px;
}
.testi-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #0a0a0b;
  display: inline-grid; place-items: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  flex-shrink: 0;
  border: 2px solid var(--line);
}

/* ============================================================
   ABOUT SECTION
============================================================ */
.about-section {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(201,165,103,0.10), transparent 60%),
    var(--bg-soft);
  padding: 100px 0;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,165,103,0.12);
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 11.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
}
.about-badge i { color: var(--gold); }
.about-card {
  background: linear-gradient(160deg, #1b1616 0%, #0a0a0b 100%);
  border: 1px solid var(--gold-deep);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(201,165,103,0.08) 30deg, transparent 90deg);
  animation: aboutShine 8s linear infinite;
}
@keyframes aboutShine { to { transform: rotate(360deg); } }
.about-emblem {
  position: relative;
  width: 110px; height: 110px;
  margin: 0 auto 26px;
  display: grid; place-items: center;
  z-index: 1;
}
.about-emblem span {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--gold);
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  text-shadow: 0 4px 30px rgba(201,165,103,0.5);
}
.about-emblem-ring {
  position: absolute; inset: 0;
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: 0.4;
  animation: aboutRing 3s ease-in-out infinite;
}
@keyframes aboutRing {
  0%,100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.1); opacity: 0.1; }
}
.about-card h4 {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--cream);
  font-weight: 700;
  letter-spacing: 6px;
  margin-bottom: 8px;
}
.about-card > p {
  position: relative; z-index: 1;
  color: var(--text-mute);
  font-size: 11.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.about-stats {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 26px;
  border-top: 1px solid rgba(201,165,103,0.2);
}
.about-stats > div { display: flex; flex-direction: column; gap: 4px; }
.about-stats span {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold);
  font-weight: 600;
}
.about-stats i {
  font-style: normal;
  font-size: 10px;
  color: var(--text-mute);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-text .eyebrow { margin-bottom: 18px; }
.about-text .section-title {
  text-align: left;
  font-size: clamp(32px, 4vw, 54px);
  margin-bottom: 26px;
}
.about-lead {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 18px;
}
.about-lead a { color: var(--gold); border-bottom: 1px solid var(--gold); }
.about-lead strong { color: var(--cream); }
.about-rights {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 18px;
  background: rgba(201,165,103,0.08);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--gold);
  font-size: 11.5px;
  letter-spacing: 3px;
  font-weight: 700;
}
.about-cta { margin-top: 30px; }

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-visual { max-width: 420px; }
}

/* ============================================================
   FAQ
============================================================ */
.faq { max-width: 880px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line-2);
  padding: 4px 0;
}
.faq-item summary {
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--cream);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 50px;
  transition: color .25s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 28px; color: var(--gold);
  font-weight: 300;
  transition: transform .3s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--gold); }
.faq-item p {
  color: var(--text-dim);
  font-size: 15.5px;
  line-height: 1.75;
  padding: 0 50px 24px 0;
  animation: fadeIn .4s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============================================================
   CONTACT
============================================================ */
.contact-section {
  background:
    radial-gradient(ellipse at 10% 90%, rgba(201,165,103,0.08), transparent 50%),
    var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-text p {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.contact-items { display: grid; gap: 14px; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  transition: all .3s ease;
}
a.contact-item:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}
.ci-icon {
  width: 46px; height: 46px;
  background: rgba(201,165,103,0.1);
  color: var(--gold);
  display: grid; place-items: center;
  border-radius: 12px;
  font-size: 18px;
  flex-shrink: 0;
}
.ci-icon.wa { background: rgba(37,211,102,0.1); color: var(--green); }
.ci-label { display: block; font-size: 11.5px; color: var(--text-mute); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.ci-value { display: block; font-size: 17px; color: var(--cream); font-family: var(--font-display); font-weight: 500; }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 40px 38px;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.contact-form label {
  display: block;
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color .25s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form textarea { resize: vertical; }
.form-note { font-size: 12px; color: var(--text-mute); margin-top: 14px; text-align: center; }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: #050506;
  padding: 90px 0 0;
  border-top: 1px solid var(--line-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
}
.footer-brand { margin-bottom: 20px; }
.footer-about { color: var(--text-dim); font-size: 14.5px; line-height: 1.7; }
.footer h4 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer ul li { padding: 6px 0; }
.footer ul a {
  color: var(--text-dim);
  font-size: 14px;
  transition: color .25s ease;
}
.footer ul a:hover { color: var(--gold); }
.footer-contact li { display: flex; align-items: center; gap: 12px; color: var(--text-dim); font-size: 14px; }
.footer-contact i { color: var(--gold); width: 18px; }

.footer-bottom {
  border-top: 1px solid var(--line-2);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-mute);
}
.footer-bottom .credit strong { color: var(--gold); font-weight: 500; letter-spacing: 1.5px; }
.footer-bottom .credit a { color: var(--text-dim); border-bottom: 1px dashed var(--line); padding-bottom: 1px; }
.footer-bottom .credit a:hover { color: var(--gold); }

/* ============================================================
   FLOATING CTA
============================================================ */
.floating-cta {
  position: fixed; right: 22px; bottom: 22px;
  z-index: 900;
  display: flex; flex-direction: column; gap: 12px;
}
.fcta {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform .3s ease;
}
.fcta:hover { transform: scale(1.08) translateY(-2px); color: #fff; }
.fcta-wa { background: #25d366; }
.fcta-wa::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; border: 2px solid #25d366;
  animation: pulseRing 2s ease-out infinite;
}
.fcta-call { background: var(--gold); color: #0a0a0b !important; }
@keyframes pulseRing {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.6); }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .services-grid, .routes-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .vip-grid, .fleet-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.how-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,165,103,0.08), transparent 60%),
    var(--bg);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.how-grid::before {
  content: ''; position: absolute; top: 90px; left: 15%; right: 15%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px);
  opacity: 0.4;
  z-index: 0;
}
.how-step {
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all .4s ease;
}
.how-step:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.how-num {
  position: absolute; top: -22px; left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  background: var(--gold);
  color: #0a0a0b;
  display: grid; place-items: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(201,165,103,0.4);
  border: 4px solid var(--bg);
}
.how-icon {
  width: 64px; height: 64px;
  margin: 10px auto 22px;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  font-size: 24px;
}
.how-step h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 12px;
}
.how-step p { color: var(--text-dim); font-size: 14.5px; line-height: 1.7; }
.how-step b { color: var(--cream); font-weight: 600; }
.how-step strong { color: var(--gold); font-weight: 600; }
.how-cta { text-align: center; margin-top: 50px; }

/* ============================================================
   FORM PROMO BADGE
============================================================ */
.form-promo {
  margin-top: 10px;
  padding: 12px 16px;
  background: linear-gradient(90deg, rgba(201,165,103,0.18), rgba(201,165,103,0.05));
  border: 1px dashed var(--gold);
  border-radius: 10px;
  color: var(--cream);
  font-size: 13px;
  text-align: center;
}
.form-promo i { color: var(--gold); margin-right: 6px; }
.form-promo b { background: var(--gold); color: #0a0a0b; padding: 2px 8px; border-radius: 6px; font-weight: 700; letter-spacing: 1.5px; font-size: 11.5px; margin: 0 3px; }
.form-promo strong { color: var(--gold-bright); }

/* ============================================================
   GOOGLE MAPS
============================================================ */
.map-container { margin-top: 80px; }
.map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #111;
}
.map-wrap iframe {
  display: block;
}
.map-gmaps-link {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: #0a0a0b !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 10px 25px rgba(201,165,103,0.35);
  transition: all .25s ease;
}
.map-gmaps-link:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  color: #0a0a0b !important;
}
.map-overlay {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(10,10,11,0.92);
  backdrop-filter: blur(14px);
  padding: 16px 22px;
  border-radius: 14px;
  border: 1px solid var(--line);
  display: flex; align-items: center; gap: 14px;
  color: var(--cream);
}
.map-overlay i { color: var(--gold); font-size: 20px; }
.map-lbl { display: block; font-size: 10.5px; color: var(--text-mute); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 3px; }
.map-val { display: block; font-family: var(--font-display); font-size: 16px; font-weight: 500; }

/* ============================================================
   FOOTER SOCIAL + PAY
============================================================ */
.footer-social {
  display: flex; gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: rgba(201,165,103,0.08);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-size: 14px;
  transition: all .3s ease;
}
.footer-social a:hover {
  background: var(--gold);
  color: #0a0a0b;
  transform: translateY(-2px);
}
.footer-pay {
  display: flex; align-items: center; gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.pay-lbl { font-size: 11px; color: var(--text-mute); letter-spacing: 1.5px; text-transform: uppercase; }
.footer-pay i { color: var(--text-dim); font-size: 22px; transition: color .25s ease; }
.footer-pay i:hover { color: var(--gold); }

/* ============================================================
   BACK TO TOP
============================================================ */
.back-to-top {
  position: fixed;
  bottom: 100px; right: 22px;
  width: 46px; height: 46px;
  background: rgba(10,10,11,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  color: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
  z-index: 899;
}
.back-to-top.visible {
  opacity: 1; visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold);
  color: #0a0a0b;
  border-color: var(--gold);
}

/* ============================================================
   MOBILE STICKY BAR
============================================================ */
.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: none;
  background: rgba(10,10,11,0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  z-index: 950;
  padding: 10px 14px;
  gap: 8px;
}
.mb-item {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 10px 4px;
  border-radius: 12px;
  font-size: 10.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform .25s ease;
}
.mb-item i { font-size: 20px; }
.mb-item:hover, .mb-item:active { transform: scale(0.97); }
.mb-call { background: var(--gold); color: #0a0a0b !important; }
.mb-wa { background: #25d366; color: #fff !important; }
.mb-book { background: var(--bg-card); color: var(--cream) !important; border: 1px solid var(--line); }

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  .nav-links { display: none; position: fixed; top: 112px; left: 0; right: 0; background: rgba(10,10,11,0.98); backdrop-filter: blur(20px); flex-direction: column; padding: 30px; border-top: 1px solid var(--line); gap: 20px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .brand-sub { display: none; }
  .brand-title { font-size: 17px; }
  .hero { padding: 120px 0 80px; min-height: auto; }
  .hero-title { font-size: 44px; letter-spacing: -1px; }
  .hero-sub { font-size: 16px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 18px; }
  .stat-num { font-size: 30px; }
  .services-grid, .routes-grid, .testi-grid, .why-grid, .spec-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .section-title { font-size: 34px; }
  .seo-block h3 { font-size: 24px; }
  .marquee-track { font-size: 14px; letter-spacing: 2px; }
  .vip-features { grid-template-columns: 1fr; }
  .floating-cta { right: 16px; bottom: 16px; }
  .fcta { width: 52px; height: 52px; font-size: 20px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .roulette-wheel { width: 220px; height: 220px; right: -80px; }
  .roulette-numbers span { transform: rotate(calc(var(--i) * 20deg)) translateY(-65px); font-size: 10px; width: 22px; height: 22px; margin: -11px 0 0 -11px; }
  .roulette-center { width: 60px; height: 60px; margin: -30px 0 0 -30px; }
  .roulette-star { font-size: 20px; }
  .casino-content { max-width: 65%; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 76px; }
  .floating-cta { bottom: 90px; }
  .back-to-top { bottom: 160px; }
  .how-grid { grid-template-columns: 1fr; gap: 40px; }
  .how-grid::before { display: none; }
  .map-overlay { bottom: 14px; left: 14px; padding: 12px 16px; }
  .map-val { font-size: 14px; }
  .promo-bar { height: 32px; }
  .promo-track { line-height: 32px; font-size: 11px; gap: 20px; }
  .navbar { top: 32px; }
  .scroll-progress { top: 32px; }
  .hero-discount { font-size: 11.5px; margin: 12px 0 0 0; }
}

