@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&display=swap');
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--page-bg);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
main { flex: 1 0 auto; }

:root {
  --navy-900: #0e1013;
  --navy-800: #14171b;
  --navy-700: #1b1f24;
  --accent: #9E9E9E;
  --accent-2: #BDBDBD;
  --text: #F5F5F5;
  --muted: #D6D6D6;
  --text-normal: #B0B0B0;
  --text-passive: #8C8C8C;
  --page-bg: #0e1013;
  --card-bg: #14171b;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.25);

  --container: 1100px;
  --radius: 14px;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
}

h1, h2, h3 { margin: 0 0 var(--space-3); line-height: 1.1; font-family: 'Playfair Display', serif; letter-spacing: 0.5px; }
p { margin: 0 0 var(--space-4); }
.hero-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(2rem, 1.25rem + 4vw, 3.5rem); }
.hero-subtitle { font-size: clamp(1rem, 0.9rem + 1vw, 1.25rem); color: var(--muted); }
.section-title { color: var(--text); }
.subtitle, .section-sub, .promo-sub { color: var(--text-normal); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--space-4); }
.container.container-wide { max-width: none; width: 100%; }
@media (max-width: 900px) {
.container.container-wide { padding-left: 6px; padding-right: 6px; }
}

.site-header { position: sticky; top: 0; z-index: 20; backdrop-filter: blur(6px); background: rgba(20, 22, 26, 0.7); border-bottom: 1px solid rgba(255,255,255,0.06); }
.site-header .container { max-width: 100%; margin: 0; padding-left: 0; padding-right: 0; }
.header-inner { position: relative; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.topbar { background: rgba(20, 22, 26, 0.7); border-bottom: 1px solid rgba(255,255,255,0.06); backdrop-filter: blur(6px); }
.topbar-inner { display: flex; align-items: center; justify-content: center; height: 36px; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; }
.topbar-text { color: var(--accent); display: flex; align-items: center; gap: 8px; animation: topbar-pulse 2s infinite ease-in-out; }
@keyframes topbar-pulse {
  0% { opacity: 1; text-shadow: 0 0 0 rgba(158, 158, 158, 0); }
  50% { opacity: 0.8; text-shadow: 0 0 10px rgba(158, 158, 158, 0.4); }
  100% { opacity: 1; text-shadow: 0 0 0 rgba(158, 158, 158, 0); }
}
/* .topbar-left, .topbar-right, .topbar-center removed/unused for now */
.topbar-left, .topbar-right, .topbar-center { display: none; }
.topbar-center .social-link { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; color: var(--text); opacity: 0.95; text-decoration: none; background: none; border: none; border-radius: 0; box-shadow: none; position: relative; }
.topbar-center .social-link:hover { opacity: 1; }
.topbar-center .social-ico { width: 18px; height: 18px; display: block; filter: invert(1) brightness(1.4); opacity: 1; }
.topbar-center .social-link:hover .social-ico { opacity: 1; }
.topbar-center .social-link::after { display: none; }
.topbar-link { color: var(--text); text-decoration: none; opacity: 0.9; }
.topbar-link:hover { opacity: 1; }
.topbar-contact a { color: #61e27b; text-decoration: none; font-weight: 600; }
.topbar-contact a { animation: whatsapp-blink 1.4s ease-in-out infinite; will-change: opacity, text-shadow; }
@keyframes whatsapp-blink {
  0% { opacity: 1; text-shadow: 0 0 0 rgba(97, 226, 123, 0); }
  50% { opacity: 0.65; text-shadow: 0 0 10px rgba(97, 226, 123, 0.55); }
  100% { opacity: 1; text-shadow: 0 0 0 rgba(97, 226, 123, 0); }
}
.topbar-contact .wa-number { display: none !important; }
.topbar-contact .blink-dot { display: inline-block; width: 6px; height: 6px; border-radius: 999px; background: #61e27b; margin-right: 6px; vertical-align: middle; box-shadow: 0 0 0 0 rgba(97,226,123,0.6); animation: pulse-dot 1.4s ease-in-out infinite; }
@keyframes pulse-dot {
  0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(97,226,123,0.6); }
  50% { transform: scale(1.35); opacity: 0.7; box-shadow: 0 0 10px 2px rgba(97,226,123,0.55); }
  100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(97,226,123,0.6); }
}
.topbar-sep { color: rgba(255,255,255,0.4); }
.topbar-select { background: var(--card-bg); color: #ffffff; border: 1px solid #2a2a2a; border-radius: 999px; padding: 6px 30px 6px 12px; font-size: 13px; font-weight: 800; letter-spacing: .2px; line-height: 1.4; appearance: none; text-align: center; text-align-last: center; box-shadow: none; min-width: 96px; background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="16" height="16"><path d="M7 10l5 5 5-5" fill="none" stroke="%23A5A5A5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>'); background-repeat: no-repeat; background-position: right 8px center; background-size: 12px; }
.topbar-select:hover { border-color: #3a3a3a; background: #1a1f28; }
.topbar-select:focus { outline: 2px solid rgba(255,255,255,0.20); outline-offset: 2px; }
.topbar-select option { background: var(--navy-900); color: var(--text); text-align: left; }
.topbar-right .gtranslate_wrapper { display: inline-flex; align-items: center; gap: 6px; flex: 0 1 auto; }
.topbar-right .gtranslate_wrapper * { box-sizing: border-box; }
.topbar-right .gtranslate_wrapper img { vertical-align: middle; }
@media (max-width: 640px) {
  .topbar-inner { height: auto; min-height: 28px; font-size: 12px; align-items: center; flex-wrap: nowrap; }
  .topbar .topbar-inner { padding-left: var(--space-3); padding-right: var(--space-3); }
  .topbar-select { font-size: 12px; padding: 4px 28px 4px 10px; height: 26px; line-height: 26px; border-radius: 999px; vertical-align: middle; align-self: center; min-width: 92px; box-shadow: none; }
  .topbar-select { text-align: center; text-align-last: center; }
  .topbar-left, .topbar-right { min-width: 0; }
  .topbar-center { display: none; }
  .topbar-left { flex: 1 1 auto; order: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .topbar-right { flex: 0 0 auto; order: 0; justify-content: flex-end; align-items: center; gap: 6px; flex-wrap: nowrap; }
  .topbar-right .gtranslate_wrapper { gap: 8px; align-items: center; flex-wrap: nowrap; display: flex; }
  .topbar-right .gtranslate_wrapper a { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; padding: 0; background: rgba(255,255,255,0.05); border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); }
  .topbar-right .gtranslate_wrapper img { width: 32px !important; height: 32px !important; border-radius: 4px; object-fit: cover; }
  .topbar-select { max-width: 100%; height: 42px; line-height: 42px; }
}

@media (min-width: 641px) {
  /* Reset previous grid layout that pushed things to sides */
  .topbar-inner { display: flex; justify-content: center; }
  /* .topbar-left { justify-self: start; } removed */
  /* .topbar-right { justify-self: end; } removed */
  /* .topbar-center { display: inline-flex; gap: 8px; justify-self: center; } removed */
}
.brand { position: relative; display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); font-weight: 700; padding-left: 140px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-title { font-weight: 700; color: var(--text); font-size: clamp(18px, 2.4vw, 24px); }
.brand-license { font-weight: 600; color: var(--accent-2); font-size: clamp(12px, 1.6vw, 14px); letter-spacing: 0.3px; }
.brand-logo-img { position: absolute; left: 0; top: 50%; transform: translateY(-50%) scale(1.6); transform-origin: left center; width: 80px; height: 80px; object-fit: contain; display: block; border-radius: 4px; background: transparent; }
.brand-name { letter-spacing: 0.2px; }
.nav-cta { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #121212; font-weight: 700; border: none; padding: 12px 18px; border-radius: 999px; cursor: pointer; box-shadow: 0 6px 16px rgba(158, 158, 158, 0.30); }
.nav-cta:hover { filter: brightness(1.05); }

.nav { display: flex; align-items: center; gap: var(--space-3); }
.nav-link {
  color: var(--text);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: background 180ms ease, color 180ms ease, opacity 180ms ease;
  opacity: 0.9;
}
.nav-link:hover { background: rgba(255,255,255,0.08); opacity: 1; }
.nav-link:focus-visible { outline: 2px solid rgba(255,255,255,0.25); outline-offset: 2px; }
.nav-link.active { color: #121212; background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 8px 20px rgba(158, 158, 158, 0.22); }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-2); text-decoration: underline; }
.nav-tools { display: inline-flex; align-items: center; background: var(--card-bg); border: 1px solid rgba(255,255,255,0.35); border-radius: 8px; padding: 0 8px; height: 36px; gap: 0; overflow: hidden; }
.nav-tools:hover { border-color: rgba(255,255,255,0.45); }
.nav-tools .gtranslate_wrapper { height: 36px; display: inline-flex; align-items: center; gap: 0; padding: 0; border-left: 1px solid rgba(255,255,255,0.18); }
.nav-tools .gtranslate_wrapper a { display: inline-flex; align-items: center; justify-content: center; height: 36px; width: 38px; padding: 0; }
.nav-tools .gtranslate_wrapper a + a { border-left: 1px solid rgba(255,255,255,0.10); }
.nav-tools .gtranslate_wrapper a:hover { background: rgba(255,255,255,0.06); }
.nav-tools .gtranslate_wrapper a:focus-visible { outline: 2px solid rgba(255,255,255,0.22); outline-offset: -2px; }
.nav-tools .topbar-select { background: transparent; border: 0; border-radius: 0; padding: 0 26px 0 12px; min-width: 96px; height: 36px; line-height: 36px; font-weight: 800; color: #fff; background-image: url('data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" width=\"14\" height=\"14\"><path d=\"M7 10l5 5 5-5\" fill=\"none\" stroke=\"%23A5A5A5\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>'); background-repeat: no-repeat; background-position: right 8px center; background-size: 12px; }
.nav-tools .topbar-select:hover { background: rgba(255,255,255,0.06); }
.nav-tools .topbar-select:focus { outline: 2px solid rgba(255,255,255,0.20); outline-offset: 2px; }
.nav-tools .gtranslate_wrapper img { vertical-align: middle; width: 22px !important; height: 22px !important; border-radius: 6px; box-shadow: 0 6px 16px rgba(0,0,0,0.38); }
.nav-tools { gap: 0; height: 36px; }
.nav-tools .topbar-select {
  background: transparent;
  color: #ffffff;
  border: 0;
  border-radius: 0;
  padding: 0 26px 0 12px;
  height: 36px;
  line-height: 36px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .2px;
  min-width: 96px;
  box-shadow: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="14" height="14"><path d="M7 10l5 5 5-5" fill="none" stroke="%23A5A5A5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 12px;
}
.nav-tools .topbar-select:hover { background: rgba(255,255,255,0.06); filter: none; }
.nav-tools .gtranslate_wrapper { height: 36px; display: inline-flex; align-items: center; gap: 0; padding: 0; border-left: 1px solid rgba(255,255,255,0.18); }
.nav-tools .gtranslate_wrapper a { display: inline-flex; align-items: center; justify-content: center; height: 36px; width: 38px; padding: 0; }
.nav-tools .gtranslate_wrapper a + a { border-left: 1px solid rgba(255,255,255,0.10); }
.nav-tools .gtranslate_wrapper a:hover { background: rgba(255,255,255,0.06); }
.nav-tools .gtranslate_wrapper a:focus-visible { outline: 2px solid rgba(255,255,255,0.22); outline-offset: -2px; }
.nav-tools .gtranslate_wrapper img { width: 22px !important; height: 22px !important; border-radius: 6px; box-shadow: 0 6px 16px rgba(0,0,0,0.38); }
.nav-tools .topbar-select:focus { outline: 2px solid rgba(255,255,255,0.20); outline-offset: 2px; }
.nav-tools .topbar-select option { background: var(--navy-900); color: var(--text); }
/* Social Media Bubbles (Left Side) - Dark Circle + Indicator Style */
.social-bubbles {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
  pointer-events: none;
}

.social-bubbles .bubble {
  --bubble-size: 48px;
  --bubble-bg: #111317;
  --bubble-border: rgba(255, 255, 255, 0.08);
  --bubble-accent: var(--accent);
  
  position: relative;
  width: var(--bubble-size);
  height: var(--bubble-size);
  border-radius: 50%;
  background: var(--bubble-bg);
  border: 1px solid var(--bubble-border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  overflow: visible; /* Allow tooltip to show */
}

/* Colored Indicator Strip */
.social-bubbles .bubble::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: var(--bubble-accent);
  border-radius: 0 4px 4px 0;
  transition: height 0.2s ease;
}

.social-bubbles .bubble:hover {
  transform: scale(1.05) translateX(4px);
  background: #1a1d22;
  border-color: rgba(255, 255, 255, 0.2);
}

.social-bubbles .bubble:hover::before {
  height: 28px;
}

.social-bubbles .bubble:active {
  transform: scale(0.95);
}

.social-bubbles .bubble .ico {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  filter: invert(1); /* Ensure icons are white */
  opacity: 1;
  transition: transform 0.2s ease;
}

.social-bubbles .bubble:hover .ico {
  transform: scale(1.1);
}

/* Tooltip Label */
.social-bubbles .bubble .label {
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  background: #111317;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  pointer-events: none;
  z-index: 1001;
}

.social-bubbles .bubble:hover .label {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* Brand Colors for Indicators */
.social-bubbles .bubble-ig { --bubble-accent: #E4405F; }
.social-bubbles .bubble-fb { --bubble-accent: #1877F2; }
.social-bubbles .bubble-tt { --bubble-accent: #ffffff; }
.social-bubbles .bubble-yt { --bubble-accent: #FF0000; }

@media (max-width: 640px) {
  .social-bubbles {
    left: 16px;
    bottom: 80px; /* Above FABs */
    top: auto;
    transform: none;
    flex-direction: column;
    gap: 10px;
  }
  .social-bubbles .bubble {
    width: 40px;
    height: 40px;
  }
  .social-bubbles .bubble .label { display: none; }
}
@media (max-width: 640px) {
  .nav { gap: var(--space-2); }
  .nav-link { padding: 8px 12px; }
}
@media (max-width: 640px) {
  .nav-tools { position: static; transform: none; flex-direction: row; margin-left: auto; height: 34px; }
  .nav-tools .topbar-select { height: 34px; line-height: 34px; padding: 0 24px 0 10px; font-size: 12px; min-width: 92px; }
  .nav-tools .gtranslate_wrapper { height: 34px; gap: 0; }
  .nav-tools .gtranslate_wrapper a { height: 34px; width: 34px; }
  .nav-tools .gtranslate_wrapper img { width: 18px !important; height: 18px !important; }
}

.nav-toggle { display: none; align-items: center; justify-content: center; gap: 3px; width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.08); color: var(--text); cursor: pointer; }
.nav-toggle .bar { display: block; width: 18px; height: 2px; background: var(--text); opacity: 0.9; }
.nav-toggle .bar { transition: transform 220ms ease, opacity 180ms ease, width 180ms ease; }
.nav-toggle:focus-visible { outline: 2px solid rgba(255,255,255,0.25); outline-offset: 2px; }
@media (max-width: 768px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    left: 0; right: 0; top: 64px; bottom: 0;
    height: calc(100vh - 64px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px var(--space-4);
    background: rgba(20, 22, 26, 0.92);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
    z-index: 20;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .site-header.menu-open .nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-link { display: block; font-size: 1rem; padding: 12px 14px; border-radius: 10px; }
  .nav-link + .nav-link { margin-top: 2px; }
  .nav-link:hover { background: rgba(255,255,255,0.08); }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 15;
  }
  .site-header.menu-open .nav-overlay { display: block; }
}
@media (max-width: 640px) {
  .nav { top: 64px; height: calc(100vh - 64px); padding: 14px var(--space-3); }
}
.site-header.menu-open .nav-toggle .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-header.menu-open .nav-toggle .bar:nth-child(2) { opacity: 0; width: 0; }
.site-header.menu-open .nav-toggle .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

#hero, #about, #promo, #booking, #contact { scroll-margin-top: 64px; }
@media (max-width: 640px) {
  #hero, #about, #promo, #booking, #contact { scroll-margin-top: 64px; }
}

.hero { position: relative; overflow: visible; background: linear-gradient(180deg, var(--navy-900), var(--navy-800)); min-height: 68vh; padding: var(--space-5) 0; }
.hero-bg::before, .hero-bg::after { content: ""; position: absolute; inset: -30% -20% auto auto; pointer-events: none; }
.hero-bg::before { width: 80vmax; height: 80vmax; background: radial-gradient(closest-side, rgba(195,163,67,0.10), transparent 60%); transform: translate(-10%, -20%); }
.hero-bg::after { bottom: -30%; left: -10%; width: 60vmax; height: 60vmax; background: radial-gradient(closest-side, rgba(61,214,208,0.15), transparent 62%); filter: blur(20px); }

.hero-inner { position: relative; z-index: 2; display: grid; gap: var(--space-5); align-items: center; }
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1fr 1.3fr; }
  .hero { min-height: 88vh; }
  /* Force cover on desktop to ensure full width */
  .slide { background-size: cover; background-position: center; }
}

@media (min-width: 900px) {
  .hero { padding-bottom: calc(var(--space-5) * 3); overflow: visible; }
  .hero .booking-card {
    position: absolute;
    left: 50%;
    bottom: var(--space-2);
    transform: translateX(-50%);
    width: min(1200px, 97%);
    z-index: 3;
  }
}

@media (max-width: 640px) {
  .hero { min-height: 48vh; }
  .hero .container { padding-left: 0; padding-right: 0; }
  .booking-card { border-radius: 0; margin: 0; }
}
@media (max-width: 480px) {
  .hero-bg::before, .hero-bg::after { inset: -30% 0 auto auto; }
}

@media (max-width: 480px) {
  .hero { min-height: 52vh; }
  .hero-slider { background-color: #000; }
  /* On mobile, use contain to prevent cropping if desired, OR cover for full immersion */
  /* User requested "centered regardless of size", cover + center usually achieves this best for hero images */
  .slide { background-size: cover; background-position: center; }
}

@media (max-width: 768px) {
  #booking-form-below-hero.container { padding-left: 0; padding-right: 0; }
}

.hero-copy { padding: var(--space-4) 0; }
.hero-highlights { display: flex; gap: var(--space-3); list-style: none; padding: 0; margin: var(--space-3) 0 0; color: var(--text); }
.hero-highlights li { display: inline-flex; align-items: center; gap: 8px; padding: 6px 10px; border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; backdrop-filter: blur(6px); }

/* Reset Bootstrap carousel items to cover background */
.carousel-item {
  height: 88vh; /* Match hero min-height on desktop */
  background-color: #000;
  overflow: hidden;
}
.carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  image-rendering: auto; /* Ensure high quality rendering */
  transform: translateZ(0); /* Hardware acceleration for smoother rendering */
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 640px) {
  .carousel-item { height: 48vh; }
}
@media (max-width: 480px) {
  .carousel-item { height: 52vh; }
}

.hero-slider { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; z-index: 1; }
/* .slide class is removed as we use bootstrap carousel-item now */
.booking-card {
  position: relative;
  background: var(--card-bg);
  color: var(--text);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  padding: var(--space-5);
}
.booking-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), transparent 40%);
  pointer-events: none;
}
.booking-form { display: grid; gap: var(--space-4); }
.form-row { display: grid; gap: var(--space-4); }
@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-row.form-row-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 599px) {
  .form-row.form-row-3 { grid-template-columns: 1fr; }
}

.booking-form .form-row.form-row-3 .form-group { min-width: 0; }

@media (min-width: 900px) {
  .booking-card .booking-form {
    grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr) minmax(210px, 0.7fr) max-content;
    align-items: center;
    gap: var(--space-3);
  }
  .booking-card .btn-primary {
    width: auto;
    white-space: nowrap;
  }
}

@media (min-width: 900px) {
  .passenger-panel {
    min-width: 400px;
    max-width: 460px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    padding: 16px;
  }
}

.passenger-select { position: relative; }
.passenger-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; border: 1.5px solid #2a2a2a; border-radius: 12px;
  background: var(--card-bg); color: var(--text); cursor: pointer;
}
.passenger-trigger .label { font-weight: 600; }
.passenger-trigger .badge { display: inline-flex; align-items: center; justify-content: center; min-width: 28px; height: 24px; padding: 0 8px; border-radius: 999px; background: rgba(255,255,255,0.18); color: var(--text); font-weight: 700; }
.passenger-trigger .chevron { opacity: 0.8; }

.passenger-panel { position: absolute; left: 0; right: 0; top: calc(100% + 8px); z-index: 1000;
  background: var(--card-bg); color: var(--text); border-radius: 12px; box-shadow: 0 12px 28px rgba(0,0,0,0.35);
  border: 1px solid #2a2a2a; padding: 14px; display: none;
}
.passenger-panel.is-open { display: block; }
.counter-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; }
.counter-label { font-weight: 600; }
.counter-controls { display: inline-flex; align-items: center; gap: 12px; }
.counter-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid #2a2a2a; background: #222; color: var(--text); cursor: pointer; font-weight: 700; }
.counter-btn:hover { filter: brightness(1.06); }
.count { min-width: 12px; text-align: center; font-weight: 700; color: var(--text); }

/* Passenger panel actions */
.passenger-panel .actions { margin-top: 8px; display: flex; justify-content: flex-end; }
.passenger-panel .actions .btn-confirm { min-width: 120px; }

/* Mobil ve tabletlerde paneli viewport'a sabitle */
@media (max-width: 900px) {
.passenger-panel {
    position: fixed;
    left: 8px;
    right: 8px;
    top: 84px;
    bottom: 12px;
    z-index: 2000;
    max-height: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateZ(0);
  }
  /* Onayla butonunu her zaman gÃ¶rÃ¼nÃ¼r tutmak iÃ§in yapÄ±ÅŸkan alt bar */
  .passenger-panel .actions {
    position: sticky;
    bottom: 0;
    padding-top: 8px;
    margin-top: 12px;
    border-top: 1px solid #2a2a2a;
    background: #1a1a1a;
  }
  .passenger-panel .actions .btn-confirm {
    width: 100%;
  }
}

.sr-only { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }

input, select, textarea, button { font: inherit; -webkit-appearance: none; appearance: none; }
input, select, textarea, button { font-size: 16px; line-height: 1.2; }

.input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  color: #121212;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.input::placeholder { color: #7a8699; }
.input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(158, 158, 158, 0.25); }
.input:hover { border-color: #cbd5e1; }

/* Portaled passenger panel: force bottom sheet on all viewports */
@media (max-width: 900px) {
  .passenger-panel.is-portaled {
    position: fixed !important;
    left: 8px;
    right: 8px;
    bottom: 12px;
    top: auto;
    z-index: 10000;
    max-height: 80vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .passenger-panel.is-portaled .actions {
    position: sticky;
    bottom: 0;
  }
}
select.input { background-image: linear-gradient(135deg, var(--accent), var(--accent-2)); background-origin: border-box; color: #121212; }
select.input option { color: #121212; }

.input[disabled], select.input[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  filter: grayscale(8%);
}

.btn-primary {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  color: #121212;
  background: var(--accent);
  box-shadow: 0 8px 18px rgba(158, 158, 158, 0.32);
  text-decoration: none;
}
.btn-primary:hover { filter: brightness(1.06); }
.btn-primary:active { transform: translateY(1px); }

.site-footer { background: var(--page-bg); color: var(--text); margin-top: auto; }
.footer-inner { padding: var(--space-4); text-align: left; font-size: 14px; }

.tours-promo { background: var(--page-bg); }
.tours-promo .tours-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: var(--space-3); padding: var(--space-3) var(--space-4); }
.tours-promo h3 { margin: 0; font-size: 20px; }
.tours-promo p { margin: 6px 0 0; font-size: 14px; opacity: 0.9; }
.tours-promo h3 { background: linear-gradient(135deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.btn-accent { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 16px; border-radius: 12px; font-weight: 800; text-decoration: none; color: #121212; background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 6px 16px rgba(195,163,67,0.30); }
.btn-accent:hover { filter: brightness(1.06); }
.btn-accent:active { transform: translateY(1px); }

.tours-slider { overflow: hidden; padding: 10px 0 16px; perspective: 900px; }
.tours-track { display: inline-flex; align-items: stretch; gap: 12px; will-change: transform; animation: tours-scroll 28s linear infinite; transform-style: preserve-3d; }
.tours-slider:hover .tours-track { animation-play-state: paused; }
.tour-card { flex: 0 0 auto; width: 190px; border-radius: 14px; background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04)); border: 1px solid rgba(255,255,255,0.14); box-shadow: 0 6px 14px rgba(0,0,0,0.12); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; transform: translateZ(0); animation: cardIntro .5s ease both; }
.tour-card:hover { transform: translateY(-6px) rotateX(3deg) scale(1.03); box-shadow: 0 16px 28px rgba(0,0,0,0.28); border-color: rgba(255,255,255,0.18); }
.tour-card:active { transform: translateY(-2px) rotateX(1deg) scale(1.01); }
.tour-thumb { width: 100%; height: 110px; background-size: cover; background-position: center; position: relative; }
.tour-thumb { transition: transform .25s ease, filter .25s ease; }
.tour-card:hover .tour-thumb { transform: scale(1.06); filter: saturate(1.05) brightness(1.08); }
.tour-title { padding: 10px 12px; font-weight: 700; font-size: 14px; color: #fff; text-shadow: 0 1px 0 rgba(0,0,0,0.45); }
#turlar .tour-thumb { height: 130px; }
#turlar .tour-title { font-size: 15px; }
#turlar .tours-slider { padding: 0; }
#turlar .tours-track { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; animation: none; }
#turlar .tour-card { width: auto; }
@media (max-width: 1100px) {
  #turlar .tours-track { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  #turlar .tours-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  #turlar .tours-track { grid-template-columns: 1fr; }
}
.price-badge { position: absolute; right: 8px; bottom: 8px; padding: 4px 10px; font-size: 12px; font-weight: 700; border-radius: 999px; background: linear-gradient(135deg, #757575, #e0e0e0); color: #1c1405; box-shadow: 0 4px 10px rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.35); }
.tour-card:hover .price-badge { transform: translateY(-2px); }
.tour-card:nth-child(1) { animation-delay: .04s; }
.tour-card:nth-child(2) { animation-delay: .08s; }
.tour-card:nth-child(3) { animation-delay: .12s; }
.tour-card:nth-child(4) { animation-delay: .16s; }
.tour-card:nth-child(5) { animation-delay: .20s; }
.tour-card:nth-child(6) { animation-delay: .24s; }
@keyframes tours-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes cardIntro {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .tours-track { animation: none; }
  .tour-card { animation: none; transition: none; }
}

.detail-hero { padding: 80px 0 72px; background-size: cover; background-position: center; position: relative; border-bottom: 1px solid rgba(255,255,255,0.08); }
.detail-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.35)); }
.detail-hero .container { position: relative; z-index: 2; }
.detail-head { max-width: 980px; margin: 0 auto; text-align: left; }
.detail-head h1 { font-size: 42px; font-weight: 800; line-height: 1.1; margin: 0 0 12px; color: #fff; text-shadow: 0 2px 6px rgba(0,0,0,0.35); letter-spacing: .3px; }
.detail-head h1::after { content:""; display:block; width: 96px; height: 3px; margin-top: 10px; background: linear-gradient(90deg, #757575, #e0e0e0); border-radius: 2px; }
.detail-sub { font-size: 16px; color: rgba(255,255,255,0.92); max-width: 780px; }
.detail-meta { margin-top: 14px; gap: 8px; }
.detail-meta .chip { background: rgba(0,0,0,0.35); color: #fff; backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.22); box-shadow: 0 2px 6px rgba(0,0,0,0.25); }

.tour-detail { padding: 32px 0 64px; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 1080px; margin: 0 auto; }
.detail-section { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; box-shadow: 0 10px 24px rgba(0,0,0,0.18); padding: 18px 20px; position: relative; display: flex; flex-direction: column; }
.detail-section h3 { margin: 0 0 12px; font-size: 18px; font-weight: 800; background: linear-gradient(135deg, #757575, #e0e0e0); -webkit-background-clip: text; background-clip: text; color: transparent; }
.detail-span { grid-column: 1 / -1; }
.detail-list { list-style: none; margin: 0; padding: 0; flex: 1; }
.detail-list li { padding: 8px 0 8px 28px; color: rgba(255,255,255,0.92); position: relative; }
.detail-list li + li { border-top: 1px dashed rgba(255,255,255,0.12); }
.detail-list li::before { content: ""; width: 16px; height: 16px; border-radius: 50%; position: absolute; left: 4px; top: 10px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25)); }
.list-included li::before { background: linear-gradient(135deg, #38ef7d, #11998e); }
.list-excluded li::before { background: linear-gradient(135deg, #ff6a00, #ee0979); }

.section-actions { margin-top: 14px; display: flex; justify-content: flex-end; }
.section-actions .btn-accent { padding: 10px 18px; border-radius: 10px; box-shadow: 0 8px 18px rgba(0,0,0,0.22); }

.modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 40; }
.modal.is-open { display: flex; }
.modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(2px); }
.modal-card { position: relative; z-index: 41; width: min(720px, 94%); background: rgba(20,22,26,0.96); border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius); box-shadow: 0 16px 36px rgba(0,0,0,0.35); }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.modal-header h3 { margin: 0; }
.modal-close { background: none; border: none; color: var(--text); font-size: 22px; line-height: 1; cursor: pointer; padding: 6px; border-radius: 8px; }
.modal-close:hover { background: rgba(255,255,255,0.08); }

.reserve-form { padding: 16px 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-weight: 600; color: var(--muted); }
.form-field .input { background: rgba(255,255,255,0.14); color: #121212; border: 1px solid rgba(255,255,255,0.28); border-radius: 10px; padding: 10px 12px; font-size: 14px; color-scheme: light; }
.form-field .input::placeholder { color: rgba(255,255,255,0.92); }
.form-field .input:disabled { opacity: 0.7; }

.reserve-form .input { color: #ffffff; background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.32); color-scheme: dark; }
.reserve-form .input::placeholder { color: rgba(255,255,255,0.92); }
.reserve-form input[type="date"],
.reserve-form input[type="time"],
.reserve-form input[type="number"] { color: #ffffff; }
.reserve-form input[type="date"]::-webkit-calendar-picker-indicator,
.reserve-form input[type="time"]::-webkit-calendar-picker-indicator { filter: invert(1) brightness(1.2); opacity: 0.9; }
.form-field .input:focus { outline: 2px solid rgba(255,255,255,0.25); outline-offset: 2px; }

.price-summary { margin-top: 8px; padding: 10px 12px; background: rgba(255,255,255,0.05); border: 1px dashed rgba(255,255,255,0.18); border-radius: 10px; display: grid; gap: 8px; }
.price-summary .line { display: flex; align-items: center; justify-content: space-between; }
.price-summary .total { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 8px; }

.modal-actions { display: flex; justify-content: flex-end; gap: 10px; padding: 14px 18px; border-top: 1px solid rgba(255,255,255,0.08); }
.btn { background: rgba(255,255,255,0.08); color: var(--text); border: 1px solid rgba(255,255,255,0.18); padding: 10px 16px; border-radius: 10px; cursor: pointer; }
.btn:hover { background: rgba(255,255,255,0.12); }
.modal-actions .btn-accent { padding: 10px 18px; }

@media (max-width: 860px) {
  .detail-head h1 { font-size: 34px; }
  .detail-grid { grid-template-columns: 1fr; }
}

.detail-cta { padding: 20px 0 56px; }
.detail-cta .btn-accent { display: inline-block; padding: 12px 22px; font-weight: 800; border-radius: 12px; box-shadow: 0 10px 24px rgba(0,0,0,0.24); transition: transform .2s ease, box-shadow .2s ease; }
.detail-cta .btn-accent:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(0,0,0,0.32); }
.booking-card .input {
  background: rgba(20, 22, 26, 0.35);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--text);
}
.booking-card .input:hover { border-color: rgba(255, 255, 255, 0.35); }
.booking-card .input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(158, 158, 158, 0.22);
  background: rgba(20, 22, 26, 0.5);
}
.booking-card .input::placeholder { color: var(--muted); }
.booking-card select.input { background: rgba(20, 22, 26, 0.35); background-image: none; color: var(--text); }
.booking-card .btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #121212;
  box-shadow: 0 8px 20px rgba(158, 158, 158, 0.38);
}

.booking-form .form-group label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.booking-form .form-group { position: relative; }
.booking-form .label-icon {
  font-size: 18px;
  line-height: 1;
}

.booking-card .route-summary {
  position: absolute;
  left: var(--space-5);
  right: var(--space-5);
  bottom: 8px;
  font-size: 13px;
  color: var(--text);
  opacity: 0.0;
  pointer-events: none;
  display: none;
}
.booking-card .route-summary.is-visible {
  display: block;
  opacity: 0.92;
}

.booking-card {
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.35);
}
.booking-card .booking-form {
  gap: 12px;
}
@media (min-width: 900px) {
  .booking-card .booking-form {
    grid-template-columns: 1.2fr 1.2fr 0.9fr max-content;
  }
}
.booking-card .input,
.booking-card .passenger-trigger {
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid #2a2a2a;
  color: var(--text);
  padding: 10px 14px 10px 42px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.booking-card .input:hover,
.booking-card .passenger-trigger:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
}
.booking-card .input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(158, 158, 158, 0.15);
  background: rgba(255,255,255,0.08);
}
.booking-card #pickup {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24"><path d="M12 2a7 7 0 0 0-7 7c0 5 7 13 7 13s7-8 7-13a7 7 0 0 0-7-7z" fill="none" stroke="%239E9E9E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><circle cx="12" cy="9" r="2.5" fill="none" stroke="%239E9E9E" stroke-width="2"/></svg>');
  background-repeat: no-repeat;
  background-position: 12px center;
}
.booking-card #dropoff {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24"><path d="M12 22s-7-8-7-13a7 7 0 0 1 14 0c0 5-7 13-7 13z" fill="none" stroke="%239E9E9E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><circle cx="12" cy="9" r="2.5" fill="none" stroke="%239E9E9E" stroke-width="2"/></svg>');
  background-repeat: no-repeat;
  background-position: 12px center;
}
.pac-container {
  z-index: 99999 !important;
  border-radius: 12px;
  border: 1px solid #2a2a2a;
  background: var(--card-bg);
  box-shadow: 0 14px 36px rgba(0,0,0,0.45);
  overflow: hidden;
  margin-top: 4px;
}
.booking-card .form-group .pac-container {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: calc(100% + 6px) !important;
  width: 100% !important;
  max-height: 260px;
  overflow: auto;
}
.pac-container .pac-item {
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--muted);
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.2s;
}
.pac-container .pac-item:hover,
.pac-container .pac-item.pac-item-selected {
  background: rgba(255,255,255,0.06);
  color: var(--text);
}
.pac-container .pac-item-query {
  color: var(--text);
  font-weight: 500;
}
.booking-card .passenger-trigger {
  padding-left: 42px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
}
.booking-card .passenger-trigger::before {
  content:"";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24"><path d="M16 14c2.21 0 4 1.79 4 4v2H4v-2c0-2.21 1.79-4 4-4m8-10a4 4 0 1 1-8 0 4 4 0 0 1 8 0z" fill="none" stroke="%239E9E9E" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
}
.booking-card .passenger-trigger .badge {
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.booking-card .passenger-panel {
  border-radius: 14px;
  border: 1px solid #2a2a2a;
  background: var(--card-bg);
  box-shadow: 0 14px 36px rgba(0,0,0,0.45);
}
.booking-card .btn-primary {
  border-radius: 999px;
  padding: 10px 18px;
  min-height: 44px;
  width: auto;
  white-space: nowrap;
}
.booking-form .btn-primary {
  width: auto;
  min-width: 160px;
}

.vehicle-layout {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 12px;
  margin: 24px auto;
}
.map-box {
  position: relative;
  background: var(--card-bg, #0f1115);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  height: 320px;
}
.map-canvas { width: 100%; height: 100%; }
.route-info {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 14px;
  border-radius: 8px;
}
.vehicles-list {
  background: var(--card-bg, #0f1115);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 16px;
}
.vehicles-title { margin: 0 0 12px 0; font-size: 18px; }
.vehicles { list-style: none; padding: 0; margin: 0; }

 
.vehicle-card {
  display: grid;
  grid-template-columns: 240px 1fr 220px;
  align-items: start;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  margin-bottom: 12px;
  min-height: 180px;
}
.vehicle-media { position: relative; height: 140px; border-radius: 10px; overflow: hidden; }
.vehicle-slider { position: relative; height: 100%; }
.vehicle-slides { position: absolute; inset: 0; }
.v-slide { position: absolute; inset: 0; background-size: cover; background-repeat: no-repeat; background-position: center; opacity: 0; transition: opacity 400ms ease; }
.v-slide.active { opacity: 1; }
.v-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.22); background: rgba(0,0,0,0.35); color: #fff; cursor: pointer; }
.v-nav.prev { left: 8px; }
.v-nav.next { right: 8px; }
.vehicle-dots { position: absolute; left: 10px; bottom: 10px; display: flex; gap: 6px; }
.vehicle-dots .v-dot { width: 8px; height: 8px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.8); background: transparent; opacity: 0.8; cursor: pointer; }
.vehicle-dots .v-dot.active { background: #fff; opacity: 1; }

.vehicle-content { display: contents; }
.vehicle-body { grid-column: 2 / 3; }
.vehicle-title { margin: 0 0 6px 0; font-size: 17px; color: var(--text); font-weight: 700; line-height: 1.2; }
.vehicle-features { list-style: none; padding: 0; margin: 0; color: var(--muted); display: grid; gap: 6px; font-size: 13px; line-height: 1.35; }
  .vehicle-price { grid-column: 3 / 4; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; padding-left: 0; min-width: 200px; }
  .vehicle-price .price { font-weight: 700; font-size: 28px; color: var(--accent); line-height: 1.1; }
  .vehicle-price .price-note { font-size: 13px; color: var(--muted); }
  .vehicle-price .btn-primary { width: 180px; }

  /* Info mode: make "Bilgi Al" button clearer and more prominent */
  .vehicle-price .btn-primary[data-mode="info"] {
    width: 220px;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    background: #25D366; /* WhatsApp green for info contact */
    box-shadow: 0 0 0 8px rgba(37, 211, 102, 0.16), 0 10px 22px rgba(37, 211, 102, 0.35);
    border-radius: 999px;
    padding: 12px 18px;
  }
  .vehicle-price .btn-primary[data-mode="info"]:hover {
    filter: brightness(1.08);
    box-shadow: 0 0 0 8px rgba(37, 211, 102, 0.20), 0 12px 26px rgba(37, 211, 102, 0.45);
  }
  .vehicle-price .btn-primary[data-mode="info"]:active {
    transform: translateY(1px);
  }

@media (max-width: 768px) {
  .vehicle-layout { grid-template-columns: 1fr; }
  .map-box { height: 250px; }
  .vehicle-card { grid-template-columns: 1fr; grid-template-areas: "media" "body" "price"; min-height: 0; padding: 12px; }
  .vehicle-media { grid-area: media; }
  .vehicle-media { height: 180px; }
  .vehicle-features { justify-items: center; text-align: center; }
  .vehicle-body { grid-column: auto; grid-area: body; }
  .vehicle-title { text-align: center; }
  .vehicle-price { grid-column: auto; grid-area: price; align-items: center; text-align: center; }
.vehicle-price .btn-primary { margin: 0 auto; }
}

/* Image Zoom Overlay */
body.zoom-open { overflow: hidden; }
.image-zoom-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.image-zoom-overlay.show { display: flex; }
.image-zoom-overlay .zoom-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
}
.image-zoom-overlay .zoom-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.image-zoom-overlay .zoom-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}
.image-zoom-overlay .zoom-nav.prev { left: 16px; }
.image-zoom-overlay .zoom-nav.next { right: 16px; }

@media (max-width: 480px) {
  .vehicle-layout { grid-template-columns: 1fr; margin: 0; gap: 8px; }
  .map-box { height: 18vh; }
  .vehicle-card { grid-template-columns: 1fr; grid-template-areas: "media" "body" "price"; padding: 10px; margin-bottom: 10px; }
  .vehicle-media { grid-area: media; }
  .vehicle-media { height: 44vw; }
  .vehicle-features { justify-items: center; text-align: center; }
  .vehicle-body { grid-column: auto; grid-area: body; }
  .vehicle-title { text-align: center; }
  .vehicle-price { grid-column: auto; grid-area: price; align-items: center; text-align: center; }
  .vehicle-price .btn-primary { margin: 0 auto; }
}

.vehicle-layout .map-box {
  background: rgba(20, 22, 26, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: var(--shadow);
}
.vehicle-layout .route-info {
  background: rgba(0, 0, 0, 0.55);
}
.vehicle-layout .vehicles-list {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: var(--shadow);
}
.vehicle-layout .vehicles-title { color: var(--text); }
.vehicle-layout .vehicle-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.vehicle-layout .vehicle-item:hover { filter: brightness(1.08); }
.vehicle-layout .vehicle-meta strong { color: var(--text); }
.vehicle-layout .vehicle-meta span { color: var(--muted); }
.vehicles-list .btn-primary {
  width: auto;
  padding: 10px 14px;
}

.booking-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 12px;
  margin: 24px auto;
  align-items: start;
}
.booking-page > * { min-width: 0; }
.booking-page h2 { margin: 0 0 12px; font-size: 20px; color: var(--text); }
.booking-summary {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  position: sticky;
  top: 16px;
}
.booking-summary .vehicle-thumb {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.22);
}
.booking-summary h3 { margin: 0 0 12px; font-size: 18px; color: var(--text); }
.booking-summary #summary-total { color: var(--accent); }
.booking-summary #summary-breakdown { margin-top: 8px; }
.booking-summary .bd-row { display: flex; justify-content: space-between; gap: 8px; margin: 4px 0; }
.booking-summary .bd-total { font-weight: 600; padding-top: 6px; border-top: 1px solid rgba(255, 255, 255, 0.15); }
.booking-form .form-group label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--text); white-space: normal; word-break: break-word; }
.booking-form .form-row { display: grid; gap: var(--space-4); }
@media (min-width: 600px) {
  .booking-form .form-row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .booking-form .form-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.phone-intl { position: relative; }
.phone-intl .input { padding-left: 110px; }
.phone-intl .dial-trigger {
  position: absolute; left: 8px; top: 50%; transform: translateY(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  height: 28px; padding: 0 8px;
  border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.10); color: var(--text);
}
.phone-intl .dial-trigger .flag { font-size: 18px; margin-right: 8px; }
.phone-intl .dial-trigger .chevron { opacity: 0.8; }
.phone-intl .dial-panel {
  position: absolute; left: 0; right: 0; top: calc(100% + 8px);
  display: none; max-height: 220px; overflow: auto; z-index: 20;
  background: rgba(20, 22, 26, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.28);
}
.phone-intl .dial-panel.is-open { display: block; }
.phone-intl .dial-item { display: grid; grid-template-columns: 24px 1fr max-content; align-items: center; gap: 10px; padding: 8px 10px; cursor: pointer; }
.phone-intl .dial-item:hover { background: rgba(255, 255, 255, 0.08); }
.phone-intl .dial-item .flag { font-size: 18px; }
@media (max-width: 900px) {
  .booking-page { grid-template-columns: 1fr; }
  .booking-form .form-row.form-row-3 { grid-template-columns: 1fr; }
  .booking-form .form-row.form-row-3 .form-group { grid-column: auto / span 1 !important; }
}

@media (max-width: 640px) {
  .booking-page { padding-left: 8px; padding-right: 8px; }
  textarea#special_note.input { min-height: 120px; font-size: 14px; line-height: 1.6; }
  label[for="special_note"] { font-size: 14px; }
}

/* Modern Footer Styles - Harmonized */
.site-footer {
  background: var(--page-bg);
  color: var(--text);
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 60px 0 20px;
  position: relative;
}
.site-footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
}

/* Level 1: Brand & Social */
.footer-top-level {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
.brand-title {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 6px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card-bg);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.3s ease;
}
.social-link svg { width: 20px; height: 20px; }
.social-link:hover {
  background: var(--accent);
  color: #121212;
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(158, 158, 158, 0.3);
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 40px;
}

/* Main Grid */
.footer-grid-modern {
  display: grid;
  grid-template-columns: 1.2fr 1fr 2fr;
  gap: 40px;
}

.modern-title {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 20px;
  opacity: 0.9;
}

/* Contact Cards */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  background: var(--card-bg);
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.contact-card-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  transform: translateX(4px);
}
.cc-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(158, 158, 158, 0.15);
  color: var(--accent);
  border-radius: 8px;
  border: 1px solid rgba(158, 158, 158, 0.2);
}
.cc-icon svg { width: 18px; height: 18px; }
.cc-info { display: flex; flex-direction: column; }
.cc-label { font-size: 11px; text-transform: uppercase; color: var(--muted); font-weight: 600; letter-spacing: 0.5px; }
.cc-val { font-size: 14px; font-weight: 500; color: var(--text); }

/* Modern Links */
.modern-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modern-links li a {
  display: block;
  padding: 8px 12px;
  color: var(--text);
  opacity: 0.8;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-weight: 500;
  border-left: 2px solid transparent;
}
.modern-links li a:hover {
  background: var(--card-bg);
  opacity: 1;
  border-left-color: var(--accent);
  padding-left: 18px;
  border: 1px solid #2a2a2a;
  border-left: 2px solid var(--accent);
}

/* Tags - Modern Grid Layout */
.footer-tags {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}
.footer-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s ease;
  text-align: center;
}
.footer-tag:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Bottom */
.footer-bottom-modern {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.copyright {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.copyright strong { color: var(--text); }
.footer-credits {
  font-size: 13px;
  color: var(--muted);
}
.footer-credits a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-credits a:hover { color: var(--accent); }

/* Responsive */
@media (max-width: 900px) {
  .footer-grid-modern { grid-template-columns: 1fr; gap: 30px; }
  .footer-top-level { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-bottom-modern { flex-direction: column; text-align: center; }
  .footer-tags { justify-content: flex-start; }
}
  .contact-col .footer-title, .popular-col .footer-title { text-align: center; }
.booking-page .booking-form { gap: var(--space-3); }
.booking-page .input {
  border-radius: 10px;
  border: 1.5px solid #2a2a2a;
  background: var(--card-bg);
  color: var(--text);
}
.booking-page .input::placeholder { color: var(--muted); }
.booking-page .input:hover { border-color: rgba(255, 255, 255, 0.28); }
.booking-page .input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(158, 158, 158, 0.18);
}
.booking-page .btn-primary {
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(158, 158, 158, 0.28);
}
.booking-page .label-icon { opacity: 0.65; font-size: 16px; }

.booking-page select.input {
  background: var(--card-bg);
  color: var(--text);
  background-image: none;
}
.booking-page select.input option { color: var(--text); }

.input-with-icon { position: relative; }
.input-with-icon.icon-left .input { padding-left: 42px; }
.input-with-icon.icon-right .input { padding-right: 42px; }
.input-with-icon .input-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  color: var(--muted);
  opacity: 0.9;
  pointer-events: none;
}
.input-with-icon.icon-left .input-icon { left: 14px; }
.input-with-icon.icon-right .input-icon { right: 14px; }
.input-with-icon .input-icon svg { width: 20px; height: 20px; }
.input-with-icon .input:focus ~ .input-icon,
.input-with-icon:focus-within .input-icon { color: var(--accent); opacity: 1; }

.booking-page input[type="date"]::-webkit-calendar-picker-indicator,
.booking-page input[type="time"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  display: none;
}

/* Normalize mobile height for date/time inputs to match other fields */
.booking-page input[type="date"].input,
.booking-page input[type="time"].input {
  height: 44px; /* consistent with other inputs */
  padding-block: 12px; /* keep icon paddings intact */
  font-size: 16px; /* avoid small text on mobile */
  line-height: 1.2;
}
/* WebKit-specific tweak to prevent cramped inner value area on iOS */
.booking-page input[type="date"].input::-webkit-datetime-edit,
.booking-page input[type="time"].input::-webkit-datetime-edit {
  line-height: 1.2;
}

.btn-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
  cursor: pointer;
  font-weight: 600;
}
.btn-toggle:hover { filter: brightness(1.06); }
.btn-toggle.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #121212;
  box-shadow: 0 6px 14px rgba(158, 158, 158, 0.26);
  border-color: transparent;
}
.hint { margin-top: 6px; color: var(--muted); font-size: 12px; }
.return-fields .form-group label { color: var(--text); }

.switch-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid #d7dee9;
  background: #dfe6ef;
  color: #121212;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.20);
  transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.extras-list { display: grid; gap: 12px; }
.extra-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  min-width: 0;
}
.extra-info { display: flex; align-items: center; gap: 12px; min-width: 0; }
.extra-thumb { display: inline-flex; width: 40px; height: 40px; border-radius: 8px; overflow: hidden; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18); }
.extra-thumb svg { width: 100%; height: 100%; }
.extra-text { display: inline-flex; align-items: baseline; gap: 8px; }
.extra-title { font-weight: 600; color: var(--text); }
.extra-price { color: var(--accent); font-weight: 700; }

.extra-controls { display: grid; grid-template-columns: max-content max-content; gap: 14px; justify-self: end; }
.extra-controls.single-leg { grid-template-columns: 1fr; }
.extra-controls.single-leg .leg-group { justify-items: start; }
.leg-group { display: grid; gap: 8px; justify-items: center; }
.leg-label { font-size: 13px; color: var(--muted); }
.leg-group.is-disabled { opacity: 0.55; pointer-events: none; }

.counter { display: inline-flex; align-items: center; gap: 8px; background: var(--card-bg); border: 1px solid #2a2a2a; border-radius: 10px; padding: 6px 10px; }
.counter-btn { width: 32px; height: 32px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.22); background: rgba(255,255,255,0.16); color: var(--text); cursor: pointer; font-weight: 700; }
.counter-btn:hover { filter: brightness(1.06); }
.count { min-width: 16px; text-align: center; color: var(--text); font-weight: 700; }
.switch-toggle::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  transition: transform 220ms ease;
}
.switch-toggle.active {
  background: linear-gradient(135deg, #7bd1a0, #58c893);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(88, 200, 147, 0.35);
}
.switch-toggle.active::before {
  transform: translateX(74px);
}
.switch-toggle:focus { outline: none; box-shadow: 0 0 0 3px rgba(255,193,7,0.22), 0 8px 18px rgba(0,0,0,0.28); }

.return-row { align-items: center; }
.return-row .form-group.align-right { justify-self: end; text-align: right; }
.field-header { display: inline-flex; align-items: center; gap: 10px; }
.field-title { font-weight: 700; color: var(--text); }
.badge-roundtrip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #121212;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
.badge-roundtrip svg { width: 18px; height: 18px; }

#summary-triptype {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.support-box {
  grid-column: 1;
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  color: var(--text);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  box-shadow: var(--shadow);
}
.support-icons { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.support-icons .icon { width: 34px; height: 34px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; }
.support-icons .icon svg { width: 20px; height: 20px; }
.support-icons .icon.whatsapp { background: #25D366; }
.support-icons .icon.phone { background: #E74C3C; }
.support-title { font-size: 18px; font-weight: 600; margin: 4px 0; }
.support-title .accent { color: #c2a35f; }
.support-subtitle { font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.support-phone a { font-size: 26px; font-weight: 600; color: var(--accent); text-decoration: none; }
.support-phone a:hover { text-decoration: underline; }

@media (max-width: 480px) {
  .support-box { margin: 8px 0; padding: 12px; }
  .support-icons .icon { width: 28px; height: 28px; }
  .support-icons .icon svg { width: 16px; height: 16px; }
  .support-title { font-size: 16px; }
  .support-phone a { font-size: 24px; }
}

@media (max-width: 640px) {
  .contact-col { text-align: center; }
  .contact-col .footer-title { text-align: center; }
  .contact-list { justify-items: center; }
  .contact-list li { grid-template-columns: 1fr; justify-items: center; }
  .contact-icon { margin: 0 auto; }
  .contact-text .contact-label,
  .contact-text .contact-link,
  .contact-text .contact-muted { justify-self: center; }
}
.booking-form #ticket_group .upload-box {
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 12px;
  border: 1px dashed rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  min-height: 44px;
  padding: 10px 12px;
  box-sizing: border-box;
}
.booking-form #ticket_group .upload-box input[type=file] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}
.booking-form #ticket_group .upload-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cbd5e1;
  white-space: nowrap;
}
.booking-form #ticket_group .upload-text { line-height: 1; }
.booking-form #ticket_group .btn-upload {
  background: #2563eb;
  color: #fff;
  border: 0;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.9rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.booking-form #ticket_group .btn-upload:hover { background: #1d4ed8; }
.booking-form #ticket_group .upload-info {
  justify-self: end;
  max-width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #94a3b8;
  font-size: 0.875rem;
}
.booking-form #ticket_group .upload-box.dragging {
  border-color: #60a5fa;
  background: rgba(96,165,250,0.08);
}
@media (max-width: 900px) {
  .booking-form #ticket_group .upload-box { grid-template-columns: 1fr; gap: 10px; }
  .booking-form #ticket_group .upload-cta { flex-wrap: nowrap; flex-direction: column; align-items: flex-start; gap: 8px; width: 100%; }
  .booking-form #ticket_group .btn-upload { width: 100%; justify-self: start; }
  .booking-form #ticket_group .upload-info { justify-self: start; max-width: 100%; }
}
.orion-travel { background: linear-gradient(180deg, var(--navy-800), var(--navy-900)); padding: var(--space-5) 0; }
.orion-travel .section-head { text-align: center; margin-bottom: var(--space-5); }
.orion-travel .section-title { font-weight: 800; font-size: clamp(1.6rem, 1rem + 3vw, 2.2rem); }
.orion-travel .section-title span { color: var(--accent); }
.orion-travel .section-sub { color: var(--muted); max-width: 760px; margin: var(--space-2) auto 0; }

.feature-grid { display: grid; gap: var(--space-4); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .feature-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: var(--space-4); box-shadow: var(--shadow); backdrop-filter: blur(6px); }
.feature-card h3 { font-size: 1rem; margin-bottom: var(--space-2); }
.feature-card p { color: var(--muted); margin: 0; }
.feature-icon { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #121212; font-size: 22px; font-weight: 700; margin-bottom: var(--space-2); }

.media-row { display: grid; gap: var(--space-4); margin-top: var(--space-5); grid-template-columns: 1fr; }
@media (min-width: 900px) { .media-row { grid-template-columns: 1.1fr 1fr; } }
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.checklist li { position: relative; padding-left: 26px; color: var(--text); }
.checklist li::before { content: "âœ”"; position: absolute; left: 0; top: 0; color: var(--accent); }

.media-right { display: grid; gap: var(--space-3); grid-template-columns: 1fr 1fr; }
.video-thumb { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,0.12); box-shadow: var(--shadow); }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-thumb .play { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); background: rgba(0,0,0,0.55); color: #fff; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; font-size: 20px; }
.orion-experience { position: relative; padding: calc(var(--space-5) * 1.25) 0; background: radial-gradient(1000px 600px at 10% 10%, rgba(195,163,67,0.10), transparent 60%), linear-gradient(180deg, var(--navy-900), var(--navy-800)); overflow: hidden; }
.orion-experience::before { content:""; position:absolute; inset:-20% -10% auto auto; background: radial-gradient(closest-side, rgba(61,214,208,0.12), transparent 62%); filter: blur(18px); pointer-events:none; }
.xp-head { text-align:center; max-width: 900px; margin: 0 auto var(--space-5); }
.xp-head .eyebrow { display:inline-block; padding: 6px 12px; border:1px solid rgba(255,255,255,0.14); border-radius:999px; color: var(--accent); font-weight:700; margin-bottom: var(--space-2); backdrop-filter: blur(6px); }
.xp-head h2 { font-weight:800; font-size: clamp(1.8rem, 1rem + 4vw, 2.6rem); }
.xp-head .lead { color: var(--muted); }
.xp-cta { margin-top: var(--space-3); }
.xp-btn { display:inline-block; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color:#121212; font-weight:800; padding: 12px 18px; border-radius: 999px; box-shadow: 0 6px 18px rgba(195,163,67,0.30); text-decoration:none; }
.xp-btn:hover { filter: brightness(1.05); }

.xp-grid { display:grid; gap: var(--space-4); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .xp-grid { grid-template-columns: repeat(4, 1fr); } }
.xp-card { position:relative; padding: var(--space-4); border-radius: var(--radius); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); box-shadow: var(--shadow); backdrop-filter: blur(8px); transition: transform .2s ease, box-shadow .2s ease; }
.xp-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.35); }
.xp-card h3 { margin-bottom: var(--space-2); font-size: 1rem; }
.xp-card p { color: var(--muted); margin:0; }
.xp-ico { width: 44px; height: 44px; border-radius: 12px; display:grid; place-items:center; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color:#121212; font-weight:800; margin-bottom: var(--space-2); }

.xp-metrics { display:grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); margin: var(--space-5) 0; }
.metric { text-align:center; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: var(--space-4); }
.metric .num { font-size: clamp(1.6rem, 1rem + 3vw, 2.4rem); font-weight: 900; background: linear-gradient(135deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.metric .label { color: var(--muted); }

.xp-media { display:grid; gap: var(--space-4); grid-template-columns: 2fr 1fr 1fr; }

.popular-places { background: var(--page-bg); padding: var(--space-5) 0; }
.places-head { text-align: center; margin-bottom: var(--space-3); }
.places-head h2 { font-weight: 800; font-size: clamp(1.6rem, 1rem + 3vw, 2.2rem); background: linear-gradient(135deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; filter: drop-shadow(0 2px 8px rgba(195,163,67,0.18)); }
.places-sub { color: var(--muted); text-align: center; }
.places-grid { display: grid; gap: var(--space-3); grid-template-columns: repeat(4, 1fr); align-items: stretch; }
@media (max-width: 1100px) { .places-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .places-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .places-grid { grid-template-columns: repeat(2, 1fr); } }
.place-card { display: block; border-radius: 18px; background: var(--card-bg); border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 10px 24px rgba(0,0,0,0.35); overflow: hidden; text-decoration: none; color: var(--text); transition: background .22s ease, box-shadow .22s ease, transform .22s ease; }
.place-card:hover { box-shadow: 0 18px 42px rgba(0,0,0,0.42), 0 0 0 4px rgba(158,158,158,0.16); background: rgba(255,255,255,0.05); transform: translateY(-3px); border-color: rgba(255,255,255,0.16); }
.place-card { position: relative; border-radius: 16px; }
.place-card::after { content: none; }
.place-card::before { content: none; }
.place-thumb { width: 100%; aspect-ratio: 16 / 10; background-size: 102%; background-position: center; background-repeat: no-repeat; position: relative; transition: transform .25s ease, filter .25s ease, background-size .25s ease; }
.place-card:hover .place-thumb { background-size: 108%; filter: saturate(1.08) brightness(1.05); }
.place-thumb::after { content:""; position:absolute; inset:0; background: linear-gradient(120deg, rgba(255,255,255,0.00) 20%, rgba(255,255,255,0.18) 45%, rgba(255,255,255,0.00) 70%); transform: translateX(-120%); }
.place-card:hover .place-thumb::after { animation: shineSweep 1s ease; }
.place-overlay { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px; display: flex; align-items: center; justify-content: flex-start; gap: 10px; background: linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.66)); }
.place-info { display: inline-flex; align-items: center; gap: 8px; min-width: 0; }
.place-name { font-weight: 800; font-size: 16px; letter-spacing: .35px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #fff; text-transform: uppercase; font-family: 'Playfair Display', serif; }
.place-name::after { content: none; display: none; }

@keyframes shineSweep { 0% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }

/* Loading state */
.place-card { position: relative; }
.place-card.is-loading .place-thumb::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,0.06) 25%, rgba(255,255,255,0.14) 50%, rgba(255,255,255,0.06) 75%); animation: shimmer 1.2s ease-in-out infinite; }
.place-card.is-loading .place-overlay { opacity: 0; }
.place-card.is-ready .place-overlay { opacity: 1; transition: opacity .25s ease; }
@keyframes shimmer { 0% { transform: translateX(-30%); } 100% { transform: translateX(30%); } }
@media (max-width: 900px) { .xp-media { grid-template-columns: 1fr; } }
.mosaic { position:relative; min-height: 200px; border-radius: var(--radius); overflow:hidden; border:1px solid rgba(255,255,255,0.12); box-shadow: var(--shadow); background-size: cover; background-position: center; }
.mosaic::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.2)); }
.mosaic .caption { position:absolute; left: 12px; bottom: 12px; color:#fff; font-weight: 700; background: rgba(0,0,0,0.4); padding: 6px 10px; border-radius: 8px; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.xp-card, .metric, .mosaic { animation: fadeUp .45s ease both; }
.xp-card:nth-child(2) { animation-delay: .05s; } .xp-card:nth-child(3) { animation-delay: .1s; } .xp-card:nth-child(4) { animation-delay: .15s; }
.orion-promo { position: relative; padding: 48px 0; background: var(--page-bg); }
.promo-head { text-align: center; margin-bottom: 16px; }
.promo-head h2 { font-weight: 800; font-size: clamp(1.8rem, 1rem + 3.2vw, 2.3rem); background: linear-gradient(135deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: .2px; filter: drop-shadow(0 2px 8px rgba(195,163,67,0.18)); }
.promo-sub { color: var(--muted); margin-top: 6px; }

#turlar .promo-head h2 { filter: drop-shadow(0 2px 10px rgba(195,163,67,0.18)); letter-spacing: .2px; }
#turlar .promo-head h2::after { content: ""; display: block; width: 96px; height: 3px; margin: 10px auto 0; border-radius: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }

.promo-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 12px 0 16px; }
.orion-promo .chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 999px; border: 1px solid #2a2a2a; color: var(--text); background: transparent; font-size: 12px; line-height: 1; }
.orion-promo .chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.promo-grid { display: grid; gap: 16px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .promo-grid { grid-template-columns: 1.2fr 0.8fr; } }

.promo-media { display: block; width: 100%; }
.promo-media .media-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
  background: #000;
}
.promo-media .media-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .promo-media { margin-bottom: 20px; }
}

.promo-cards { display: grid; gap: 10px; }
.promo-card { background: var(--card-bg); border: 1px solid #2a2a2a; border-radius: 12px; padding: 12px; box-shadow: none; }
.promo-card h3 { margin-bottom: 6px; font-size: 0.95rem; }
.promo-card p { color: var(--muted); margin: 0; font-size: 0.95rem; line-height: 1.45; }
.about-orion { position: relative; overflow: hidden; background: var(--page-bg); padding: calc(var(--space-5) * 1.1) 0; }
@media (max-width: 480px) {
  .orion-experience, .about-orion { overflow: hidden; }
  .about-orion::after { right: 0; }
}
.about-head { text-align: center; margin-bottom: var(--space-5); }
.about-head h2 { font-weight: 800; font-size: clamp(1.8rem, 1rem + 3.5vw, 2.4rem); background: linear-gradient(135deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.about-accent { width: 84px; height: 3px; margin: 10px auto 0; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 3px; position: relative; }
.about-accent::after { content: ""; position: absolute; right: -8px; top: -4px; width: 10px; height: 10px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 4px rgba(255,255,255,0.06); }
.about-sub { color: var(--muted); }

.about-grid { display: grid; gap: var(--space-5); grid-template-columns: 1fr; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1.2fr 1fr; align-items: start; } }

.about-copy h3 { font-weight: 700; margin-bottom: var(--space-3); }
.about-copy p { color: var(--text); }
.about-highlight { margin: var(--space-3) 0; padding: 10px 14px; border-radius: var(--radius); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: var(--text); font-weight: 600; }
.about-list { list-style: none; padding: 0; margin: var(--space-3) 0 0; display: grid; gap: 10px; }
.about-list li { display: flex; align-items: center; gap: 10px; }
.li-icon { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; font-size: 0.85rem; box-shadow: 0 2px 6px rgba(0,0,0,0.25); }
.li-text { color: var(--text); }

.about-facts { display: grid; gap: var(--space-3); grid-template-columns: repeat(2, 1fr); align-items: stretch; }
@media (min-width: 900px) { .about-facts { grid-template-columns: repeat(4, 1fr); } }
.fact-card { position: relative; text-align: center; background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04)); border: 1px solid rgba(255,255,255,0.14); border-radius: calc(var(--radius) + 4px); padding: var(--space-4); box-shadow: 0 6px 18px rgba(0,0,0,0.35); backdrop-filter: blur(6px); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.fact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}
.fact-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,0.4); border-color: rgba(255,255,255,0.2); }
.fact-num { font-size: clamp(1.8rem, 1rem + 3.2vw, 2.6rem); font-weight: 900; letter-spacing: -0.02em; background: linear-gradient(135deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; filter: drop-shadow(0 1px 0 rgba(0,0,0,0.2)); }
.fact-num::after { content: ""; display: block; width: 36px; height: 2px; margin: 6px auto 0; border-radius: 2px; background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0)); }
.fact-label { color: #E6ECF5; font-weight: 600; letter-spacing: .2px; line-height: 1.25; }

.about-badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: var(--space-4); }
.badge { display: inline-flex; align-items: center; padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(6px); color: var(--text); transition: background .18s ease, box-shadow .18s ease, border-color .18s ease; }
.badge:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); box-shadow: 0 6px 18px rgba(0,0,0,0.3); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
[data-animate] { opacity: 0; transform: translateY(8px); }
.reveal-section.is-visible [data-animate] { animation: fadeUp .6s ease both; }

@keyframes shine {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.reveal-section.is-visible .media-item {
  position: relative;
}
.reveal-section.is-visible .media-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.08), rgba(255,255,255,0));
  background-size: 200% 100%;
  animation: shine .9s ease both;
  pointer-events: none;
}

.voucher { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius); box-shadow: var(--shadow); padding: var(--space-4); }
.voucher-header { display:flex; align-items:center; justify-content: space-between; gap: var(--space-4); border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: var(--space-3); margin-bottom: var(--space-3); }
.voucher-logo { width: 64px; height: 64px; object-fit: contain; border-radius: 4px; }
.vh-left { display:flex; align-items:center; gap: var(--space-3); }
.vh-title { font-weight: 800; font-size: 20px; color: var(--text); }
.vh-license { font-weight: 600; color: var(--accent); font-size: 13px; letter-spacing: 0.3px; }
.vh-right { text-align: right; }
.vh-label { font-size: 12px; color: var(--muted); }
.vh-code { font-size: 28px; font-weight: 800; letter-spacing: 2px; color: var(--accent); }
.voucher-grid { display:grid; grid-template-columns: repeat(2, minmax(340px, 1fr)); gap: var(--space-4); margin-bottom: var(--space-3); }
@media (max-width: 900px){ .voucher-grid { grid-template-columns: 1fr; } }
.voucher { width: 100%; max-width: 100%; overflow: hidden; }
.voucher-section h3 { margin: 0 0 8px; font-size: 16px; color: var(--text); border-bottom: 1px solid rgba(255,255,255,0.14); padding-bottom: 6px; }
.voucher-section { background: transparent; border: 0; border-radius: 0; padding: 10px 0; box-shadow: none; }
.voucher-section.span-2 { grid-column: 1 / -1; }
.voucher-section + .voucher-section { margin-top: var(--space-2); border-top: 1px solid rgba(255,255,255,0.12); padding-top: 10px; }
.v-row { display:grid; grid-template-columns: 160px minmax(0, 1fr); align-items:start; gap: 8px; margin: 8px 0; }
.v-row > span { display: block; }
.v-row > span:first-child { text-align: left; font-weight: 600; align-self:start; }
.v-row > span:last-child { text-align: left; white-space: normal; word-break: break-word; overflow-wrap: anywhere; line-height: 1.5; }
.v-row.v-image > span:last-child img { max-width: 200px; height: auto; border-radius: 6px; border: 1px solid rgba(255,255,255,0.12); }
.voucher-section .v-row { border-bottom: 1px solid rgba(255,255,255,0.12); padding: 6px 0; }
.voucher-section .v-row:last-child { border-bottom: 0; }

@media (max-width: 600px){
  .voucher-page { padding: 6px; display: block; }
  .voucher-grid { grid-template-columns: 1fr; gap: 0; }
  .voucher-section { width: 100%; padding: 8px 0; margin: 0; background: transparent; border: 0; box-shadow: none; }
  .v-row { grid-template-columns: minmax(92px, 32%) 1fr; gap: 6px; }
  .v-row.v-image > span:last-child img { max-width: 100%; height: auto; }
  .voucher-breakdown .v-row { grid-template-columns: 1fr auto; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .voucher-breakdown .v-row:last-child { border-bottom: 0; }
  .voucher-breakdown .v-row > span:first-child { font-weight: 600; }
  .voucher-breakdown .v-row > span:last-child { text-align: right; white-space: nowrap; }
  .voucher-breakdown .v-total { border-top: 2px solid rgba(255,255,255,0.2); padding-top: 8px; font-weight: 700; }
}

@media (max-width: 480px){
  .container.container-wide { padding-left: 4px; padding-right: 4px; }
  .voucher-page { padding: 4px; }
  .voucher, .voucher-section { width: 100%; max-width: 100%; }
  .voucher-grid { gap: 0; }
  .voucher-section { background: transparent; border: 0; box-shadow: none; padding: 8px 0; margin: 0; }
  .v-row { grid-template-columns: minmax(80px, 28%) 1fr; }
  .v-row.v-image > span:last-child img { width: 100%; height: auto; }
  .voucher-breakdown .v-row { padding: 6px 0; }
}
.v-total { font-weight: 700; padding-top: 6px; border-top: 1px solid rgba(255,255,255,0.15); }
.voucher-breakdown { margin-top: 6px; }
.voucher-breakdown .v-row { grid-template-columns: 1fr auto; align-items: center; padding: 8px 0; }
.voucher-breakdown .v-row > span:first-child { font-weight: 600; }
.voucher-breakdown .v-row > span:last-child { text-align: right; white-space: nowrap; }
.voucher-breakdown .v-total { border-top: 2px solid rgba(255,255,255,0.2); padding-top: 8px; font-weight: 700; }
.voucher-footer { display:flex; align-items:center; justify-content: space-between; gap: var(--space-3); border-top: 1px solid rgba(255,255,255,0.15); padding-top: var(--space-3); margin-top: var(--space-3); }

.voucher.voucher-compact { padding: 12px; }
.voucher.voucher-compact .voucher-header { gap: 8px; padding-bottom: 6px; margin-bottom: 8px; }
.voucher.voucher-compact .voucher-logo { width: 48px; height: 48px; }
.voucher.voucher-compact .voucher-actions { padding-bottom: 8px; margin-top: 0; }
.voucher.voucher-compact .voucher-grid { gap: 8px; margin-bottom: 8px; }
.voucher.voucher-compact .voucher-section { padding: 6px 0; }
.voucher.voucher-compact .voucher-section + .voucher-section { margin-top: 6px; padding-top: 6px; }
.voucher.voucher-compact .v-row { gap: 6px; margin: 6px 0; }
.voucher.voucher-compact .v-row { grid-template-columns: 140px minmax(0,1fr); }
.voucher.voucher-compact .voucher-footer { gap: 8px; padding-top: 8px; margin-top: 8px; }
.vf-title { font-weight: 700; }
.vf-links a { color: var(--text); text-decoration: none; }
.vf-links a:hover { text-decoration: underline; }
.vf-note { color: var(--muted); font-size: 13px; }

.voucher-page { display: flex; justify-content: center; padding: var(--space-3); }
.voucher { width: min(940px, 96%); }
.voucher-actions { display: flex; justify-content: flex-end; padding-bottom: var(--space-3); margin-top: -8px; }
.voucher-actions .btn-primary { width: auto; min-width: 220px; }


@media (max-width: 600px){
  .container.container-wide { padding-left: 0 !important; padding-right: 0 !important; }
  .voucher-page { padding: 0 !important; display: block !important; justify-content: unset !important; }
  .voucher { width: 100% !important; max-width: 100% !important; margin: 0 !important; }
}
@media print {
  body { background: #ffffff; }
  .site-header, .site-footer, .voucher-actions { display: none !important; }
  .voucher-page { padding: 0; }
  .voucher { box-shadow: none; border-color: #000000; color: #000000; width: 100%; max-width: 100%; background: #fff; overflow: hidden; }
  .voucher, .voucher * { box-sizing: border-box; }
  a { color: #000000; text-decoration: none; }
}

@media print {
  @page { size: A4; margin: 8mm; }
  .voucher { border: 1px solid #000; padding: 10px; }
  .voucher-header { border-bottom: 2px solid #000; padding: 8px 10px; gap: 8px; }
  .voucher-logo { width: 40px; height: 40px; }
  .vh-title { font-size: 14px; }
  .vh-license { font-size: 11px; }
  .vh-label { font-size: 10px; }
  .vh-code { color: #000 !important; font-size: 20px; letter-spacing: 1px; }
  .voucher-grid { gap: 10px; width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .voucher-section { border: 1px solid #000; padding: 8px; }
  .voucher-section.span-2 { grid-column: 1 / -1; }
  .voucher-section h3 { font-size: 12px; border-bottom: 1px solid #000; padding-bottom: 4px; margin-bottom: 6px; }
  .voucher-section + .voucher-section { margin-top: 8px; }
  .voucher-breakdown .v-row,
  .voucher-section .v-row { border-bottom: 1px solid #000; padding: 4px 2px; font-size: 12px; }
  .voucher-section .v-row:last-child { border-bottom: none; }
.v-row { display:grid; grid-template-columns: 150px minmax(0,1fr); align-items:start; gap: 6px; }
.v-row > span { display: block; }
.v-row > span:first-child { font-weight: 600; }
.v-row > span:last-child { text-align: left; word-break: break-word; overflow-wrap: anywhere; line-height: 1.5; }
.v-row.v-image > span:last-child img { max-width: 160px; border: 1px solid #000; }
  .v-total { border-top: 2px solid #000; padding-top: 6px; font-weight: 800; }
  .vf-links a { color: #000 !important; }
}
/* ------------------------------------------------------------------
   PREMIUM UNIFIED DOCKS (Left & Right)
   ------------------------------------------------------------------ */

/* Common Dock Styles */
.dock-panel {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px; /* Reduced gap */
  z-index: 1000;
  background: #000000;
  padding: 16px 6px; /* Reduced padding */
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  pointer-events: auto;
  min-width: 44px; /* Smaller width */
  width: 44px;
}

/* Right Dock (FABs) */
.fab-container {
  right: 20px;
  bottom: 30px;
  flex-direction: column-reverse;
  /* Dock Panel Styles (Duplicated) */
  position: fixed;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1000;
  background: #050505;
  padding: 18px 6px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
  pointer-events: auto;
  width: 48px;
}

.fab {
  position: relative;
  width: 36px; /* Smaller icon button */
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s ease;
  opacity: 0.7;
}

.fab::before { display: none; }

.fab .icon svg {
  width: 20px; /* Smaller icon */
  height: 20px;
  stroke-width: 1.5;
  stroke: #ffffff;
  fill: none;
}

.fab:hover {
  transform: scale(1.15); /* Slightly less zoom */
  opacity: 1;
}

/* Tooltip Right */
.fab-label {
  position: absolute;
  right: calc(100% + 16px); /* Closer tooltip */
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 5px 10px; /* Compact padding */
  border-radius: 5px;
  font-size: 12px; /* Smaller font */
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.fab:hover .fab-label {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}


/* Left Dock (Social) */
.social-bubbles {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  position: fixed;
  display: flex;
  align-items: center;
  gap: 12px; /* Reduced gap */
  z-index: 1000;
  background: #050505;
  padding: 18px 6px; /* Tighter padding */
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
  pointer-events: auto;
  width: 48px; /* Slimmer dock */
}

.social-bubbles .bubble {
  position: relative;
  width: 36px; /* Smaller bubble */
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0.7;
  box-shadow: none;
}

.social-bubbles .bubble::before { display: none; }

.social-bubbles .bubble .ico {
  width: 18px; /* Smaller icon */
  height: 18px;
  filter: invert(1);
}

.social-bubbles .bubble:hover {
  transform: scale(1.15);
  opacity: 1;
  background: transparent;
  border: none;
}

/* Tooltip Left */
.social-bubbles .bubble .label {
  position: absolute;
  left: calc(100% + 16px); /* Closer tooltip */
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 5px 10px; /* Compact padding */
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.social-bubbles .bubble:hover .label {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* Mobile Dock Adjustments */
@media (max-width: 768px) {
  /* Social Dock on Mobile - Left Side */
  .social-bubbles {
    display: flex; /* Restore visibility */
    left: 12px;
    bottom: 24px;
    top: auto; /* Unset top centering */
    transform: none; /* Remove centering transform */
    width: 42px;
    padding: 12px 4px;
    gap: 10px;
    border-radius: 30px;
    background: rgba(5, 5, 5, 0.90);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .social-bubbles .bubble {
    width: 30px;
    height: 30px;
    opacity: 0.9;
  }
  
  .social-bubbles .bubble .ico {
    width: 18px;
    height: 18px;
  }

  /* Right FAB Dock for Mobile */
  .fab-container {
    right: 12px;
    bottom: 24px;
    width: 42px;
    padding: 12px 4px;
    gap: 10px;
    border-radius: 30px;
    background: rgba(5, 5, 5, 0.90);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .fab {
    width: 30px;
    height: 30px;
    opacity: 0.9;
  }

  .fab .icon svg {
    width: 18px;
    height: 18px;
  }

  /* Disable hover effects on mobile */
  .fab:hover, .social-bubbles .bubble:hover {
    transform: none;
    opacity: 0.9;
  }
  
  /* Hide tooltips completely on mobile */
  .fab-label, .social-bubbles .bubble .label {
    display: none !important;
  }
}

/* Modern About Section */
.about-intro-box {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}
.about-intro-box h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}
.intro-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 20px;
}
.intro-highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, rgba(195,163,67,0.1), rgba(195,163,67,0.02));
  border-left: 3px solid var(--accent);
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  color: var(--text);
  font-style: italic;
}

/* Stats Row (Minimal - No Icons) */
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 40px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 32px 0;
}
.stat-item {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}
.stat-item:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:hover {
  transform: translateY(-2px);
}
.stat-val { font-size: 32px; font-weight: 800; color: var(--text); line-height: 1; margin-bottom: 8px; letter-spacing: -0.5px; }
.stat-lbl { font-size: 13px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

@media (max-width: 900px) {
  .about-stats-row {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      background: transparent;
      border: none;
      padding: 0;
  }
  .stat-item {
      border-right: none !important;
      background: var(--card-bg);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      padding: 24px;
  }
}

/* Feature Grid (Minimal) */
.about-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 800px;
  margin: 0 auto 30px;
}
.feature-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: transform 0.2s;
}
.feature-box:hover {
  background: transparent;
  transform: translateX(6px);
}
.fb-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}
.fb-text {
  font-weight: 500;
  color: var(--muted);
  font-size: 15px;
}
.feature-box:hover .fb-text { color: var(--text); }
@media (max-width: 600px) {
  .about-stats-row { grid-template-columns: 1fr; }
  .about-features-grid { grid-template-columns: 1fr; }
}

.resv-modal-backdrop { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.55); backdrop-filter: none; display: none; align-items: center; justify-content: center; z-index: 1000; }
.resv-modal-backdrop.is-open { display: flex; }
.resv-modal { width: 92vw; max-width: 460px; background: var(--card-bg); color: #fff; border-radius: 14px; box-shadow: 0 18px 40px rgba(0,0,0,0.35); overflow: hidden; }
.resv-modal .modal-header { padding: 16px 18px; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: space-between; }
.resv-modal .modal-header h3 { margin: 0; font-size: 18px; }
.resv-modal .modal-body { padding: 18px; display: grid; gap: 12px; }
.resv-modal label { font-size: 14px; opacity: 0.85; }
.resv-modal .input { width: 100%; padding: 10px 12px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.06); color: #fff; outline: none; }
.resv-modal .input::placeholder { color: rgba(255,255,255,0.7); }
.resv-modal .modal-actions { padding: 14px 18px; display: flex; gap: 10px; justify-content: flex-end; border-top: 1px solid rgba(255,255,255,0.08); }

.resv-result { margin-top: 8px; min-height: 32px; }
.status-chip { display: inline-block; padding: 4px 10px; border-radius: 9999px; font-size: 14px; font-weight: 600; }
.status-chip.status-approved { background: rgba(46,204,113,0.18); border:1px solid rgba(46,204,113,0.35); }
.status-chip.status-pending { background: rgba(255,206,86,0.18); border:1px solid rgba(255,206,86,0.35); }
.status-chip.status-canceled { background: rgba(255,99,71,0.18); border:1px solid rgba(255,99,71,0.35); }

.resv-card { margin-top: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; overflow: hidden; }
.resv-card-top { display: flex; flex-wrap: wrap; gap: 8px 12px; align-items: center; padding: 12px 14px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.resv-card-top .resv-type { font-size: 13px; opacity: 0.85; }
.resv-card-top .resv-code { margin-left: auto; font-size: 13px; opacity: 0.8; }
.resv-grid { display: grid; grid-template-columns: 1fr; gap: 10px; padding: 12px 14px; }
.rg-row { display: grid; grid-template-columns: 120px 1fr; gap: 8px; align-items: center; }
.rg-label { font-size: 13px; opacity: 0.8; }
.rg-val { font-size: 14px; }
.resv-card-actions { display: flex; gap: 8px; justify-content: flex-end; padding: 12px 14px; border-top: 1px solid rgba(255,255,255,0.08); }

@media (min-width: 520px){
  .resv-grid { grid-template-columns: 1fr; }
}
.status-approved { background: #14532d; color: #dcfce7; }
.status-pending { background: #713f12; color: #fef9c3; }
.status-canceled { background: #7f1d1d; color: #fee2e2; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 14px; border-radius: 10px; font-weight: 600; text-decoration: none; cursor: pointer; border: none; }
.btn-primary { background: var(--accent); color: #121212; }
.btn-muted { background: rgba(255,255,255,0.1); color: #fff; }
.btn-primary:hover { filter: brightness(1.08); }
.btn-muted:hover { background: rgba(255,255,255,0.16); }
.modal-close { background: none; border: none; color: #fff; font-size: 20px; cursor: pointer; opacity: 0.8; }
.modal-close:hover { opacity: 1; }

/* Video modal */
.video-modal { width: 94vw; max-width: 860px; background: var(--card-bg); color: #fff; border-radius: 14px; box-shadow: 0 18px 40px rgba(0,0,0,0.35); overflow: hidden; }
.video-modal .modal-header { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: space-between; }

/* Theme override: remove glassmorphism and use solid dark surfaces */
.site-header, .topbar { backdrop-filter: none !important; }
.nav-toggle, .nav-link:hover, .topbar-select { background: var(--card-bg) !important; border-color: #2a2a2a !important; }
.hero-highlights li, .chip, .badge { backdrop-filter: none !important; background: var(--card-bg) !important; border-color: #2a2a2a !important; }
.booking-card, .detail-section, .feature-card, .xp-card, .metric, .promo-card, .about-highlight, .voucher, .resv-card { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; background: var(--card-bg) !important; border-color: #2a2a2a !important; }
.detail-meta .chip { backdrop-filter: none !important; background: var(--card-bg) !important; border-color: #2a2a2a !important; }
.modal-overlay { backdrop-filter: none !important; }
.reserve-form .input { background: var(--card-bg) !important; color: var(--text) !important; border-color: #2a2a2a !important; }
.btn:not(.btn-primary):not(.btn-accent) { background: var(--card-bg); border-color: #2a2a2a; }
.phone-intl .dial-item:hover { background: #222 !important; }
.video-modal .modal-body { padding: 0; }
.video-modal .modal-body video { display:block; width: 100%; height: auto; aspect-ratio: 16 / 9; }
.booking-form #ticket_group { display: none !important; }
/* Minimal Popular Places - Matching Stats Style */
.popular-places-minimal {
  padding: 60px 0;
  background: var(--page-bg);
}
.places-head-minimal {
  text-align: center;
  margin-bottom: 40px;
}
.places-head-minimal h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.places-head-minimal p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.places-grid-minimal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
}
.place-card-minimal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  transition: background 0.2s ease;
}
/* Remove right border for the last item in each row (4 items per row) */
.place-card-minimal:nth-child(4n) {
  border-right: none;
}
/* Remove bottom border for the last row (assuming 12 items or multiple of 4) */
/* It's safer to let the container clip or just have bottom border on all except truly last ones if count is known.
   For dynamic list, having bottom border is fine as container has border. */

.place-card-minimal:hover {
  background: rgba(255,255,255,0.04);
}
.pcm-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-right: 12px;
  opacity: 0.8;
}
.pcm-icon svg { width: 20px; height: 20px; stroke-width: 2; }
.pcm-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.pcm-title {
  font-weight: 600;
  color: var(--text);
  font-size: 15px;
}
.pcm-price {
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
  opacity: 0.9;
}
.pcm-arrow {
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.2s, color 0.2s;
  margin-left: 10px;
}
.place-card-minimal:hover .pcm-arrow {
  transform: translateX(4px);
  color: var(--accent);
}

@media (max-width: 900px) {
  .places-grid-minimal {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    background: transparent;
    border: none;
    overflow: visible;
  }
  .place-card-minimal {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    /* Reset separators */
    border-right: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  /* On mobile, we want normal cards, so no special border removal logic needed if we use gap and full border */
}



 
 / *   M o b i l e   F o o t e r   A d j u s t m e n t s   * /  
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {  
     / *   C e n t e r   a l i g n   T o p   L e v e l   ( B r a n d   &   S o c i a l )   * /  
     . f o o t e r - t o p - l e v e l   {  
         f l e x - d i r e c t i o n :   c o l u m n ;  
         t e x t - a l i g n :   c e n t e r ;  
         g a p :   2 0 p x ;  
     }  
      
     . f o o t e r - b r a n d   {  
         a l i g n - i t e m s :   c e n t e r ;   / *   C e n t e r   f l e x   i t e m s   * /  
     }  
      
     . b r a n d - d e s c   {  
         m a r g i n :   0   a u t o ;   / *   C e n t e r   t e x t   b l o c k   * /  
     }  
  
     / *   C e n t e r   S o c i a l   I c o n s   * /  
     . f o o t e r - s o c i a l   {  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
     }  
  
     / *   C e n t e r   G r i d   C o l u m n s   * /  
     . f o o t e r - g r i d - m o d e r n   {  
         g r i d - t e m p l a t e - c o l u m n s :   1 f r ;   / *   S t a c k   c o l u m n s   * /  
         t e x t - a l i g n :   c e n t e r ;  
         g a p :   3 0 p x ;  
     }  
  
     / *   C e n t e r   T i t l e s   * /  
     . m o d e r n - t i t l e   {  
         t e x t - a l i g n :   c e n t e r ;  
     }  
     . m o d e r n - t i t l e : : a f t e r   {  
         l e f t :   5 0 % ;  
         t r a n s f o r m :   t r a n s l a t e X ( - 5 0 % ) ;   / *   C e n t e r   t h e   u n d e r l i n e   * /  
     }  
  
     / *   C e n t e r   C o n t a c t   C a r d s   * /  
     . c o n t a c t - c a r d s   {  
         a l i g n - i t e m s :   c e n t e r ;   / *   C e n t e r   f l e x / g r i d   i t e m s   i f   c o l u m n   * /  
     }  
     . c o n t a c t - c a r d - i t e m   {  
         j u s t i f y - c o n t e n t :   c e n t e r ;   / *   C e n t e r   c o n t e n t   i n s i d e   c a r d   * /  
         t e x t - a l i g n :   l e f t ;   / *   K e e p   i n t e r n a l   t e x t   l e f t - a l i g n e d   f o r   r e a d a b i l i t y   * /  
         w i d t h :   1 0 0 % ;  
         m a x - w i d t h :   3 2 0 p x ;   / *   O p t i o n a l :   l i m i t   w i d t h   * /  
     }  
  
     / *   C e n t e r   M o d e r n   L i n k s   * /  
     . m o d e r n - l i n k s   {  
         a l i g n - i t e m s :   c e n t e r ;  
     }  
     . m o d e r n - l i n k s   l i   a   {  
         t e x t - a l i g n :   c e n t e r ;  
         w i d t h :   1 0 0 % ;  
     }  
     . m o d e r n - l i n k s   l i   a : h o v e r   {  
         p a d d i n g - l e f t :   1 2 p x ;   / *   R e s e t   p a d d i n g   s h i f t   * /  
         b o r d e r - l e f t :   2 p x   s o l i d   t r a n s p a r e n t ;   / *   R e m o v e   b o r d e r   s h i f t   * /  
         b a c k g r o u n d :   v a r ( - - c a r d - b g ) ;  
         b o r d e r :   1 p x   s o l i d   # 2 a 2 a 2 a ;  
         t r a n s f o r m :   s c a l e ( 1 . 0 2 ) ;  
     }  
  
     / *   C e n t e r   T a g s   * /  
     . f o o t e r - t a g s   {  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
     }  
      
     / *   C e n t e r   B o t t o m   S e c t i o n   * /  
     . f o o t e r - b o t t o m - m o d e r n   {  
         f l e x - d i r e c t i o n :   c o l u m n ;  
         t e x t - a l i g n :   c e n t e r ;  
         g a p :   2 0 p x ;  
     }  
      
     . f o o t e r - b a d g e s   {  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
     }  
 }  
 