:root {
  --bg: #0B0F14;
  --blue: #56C8FF;
  --blue-deep: #00BFFF;
  --silver: #C7D2DE;
  --surface: #11161D;
  --border: #232B36;
  --text: #FFFFFF;
  --muted: #9FAAB8;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Russo One', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--blue); color: #001220; }

/* Metallic chrome text — like the badge */
.metallic {
  background: linear-gradient(180deg, #FFFFFF 0%, #D5DEE8 38%, #93A3B5 52%, #E9EFF5 78%, #FFFFFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Chrome trim divider with blue glow ---------- */
.trim {
  height: 1px;
  border: none;
  background: linear-gradient(90deg, transparent, var(--silver) 20%, #FFFFFF 50%, var(--silver) 80%, transparent);
  box-shadow: 0 0 14px rgba(0, 191, 255, 0.65), 0 0 4px rgba(86, 200, 255, 0.8);
  margin: 0 auto;
  max-width: 1100px;
  width: 90%;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Section heading clip-path wipe */
.section-heading {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  margin-bottom: 12px;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s var(--ease);
}
.reveal.visible .section-heading,
.section-heading.visible { clip-path: inset(0 0 0 0); }

.heading-underline {
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--silver));
  border-radius: 2px;
  margin-bottom: 20px;
  box-shadow: 0 0 12px rgba(0, 191, 255, 0.55);
}
.centered .heading-underline { margin-left: auto; margin-right: auto; }

.section {
  padding: 90px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-lead {
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 56px;
}
.centered { text-align: center; }
.centered .section-lead { margin-left: auto; margin-right: auto; }

/* ---------- Page header (subpages) ---------- */
.page-header {
  position: relative;
  padding: 170px 24px 70px;
  text-align: center;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(0, 191, 255, 0.12), transparent 70%);
  border-bottom: 1px solid rgba(35, 43, 54, 0.8);
}
.page-header .eyebrow {
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 14px;
  text-shadow: 0 0 14px rgba(0, 191, 255, 0.5);
}
.page-header h1 {
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 700;
  margin-bottom: 14px;
}
.page-header .heading-underline { margin: 0 auto 18px; }
.page-header .lead {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

/* Staggered page-load entrance (hero + page headers) */
.hero-anim {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 0.8s var(--ease) forwards;
}
.hero-anim:nth-child(1) { animation-delay: 0.15s; }
.hero-anim:nth-child(2) { animation-delay: 0.3s; }
.hero-anim:nth-child(3) { animation-delay: 0.45s; }
.hero-anim:nth-child(4) { animation-delay: 0.6s; }
.hero-anim:nth-child(5) { animation-delay: 0.75s; }
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 32px;
  background: transparent;
  transition: background 0.3s var(--ease), padding 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.navbar.scrolled,
.navbar--solid {
  background: #0B0F14CC;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.navbar.scrolled {
  padding: 10px 32px;
  box-shadow: 0 1px 0 rgba(86, 200, 255, 0.3);
}
.navbar--solid { box-shadow: 0 1px 0 rgba(86, 200, 255, 0.18); }
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.nav-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 8px rgba(0, 191, 255, 0.4));
}
.nav-logo {
  font-family: 'Russo One', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.15em;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), text-shadow 0.2s var(--ease);
}
.nav-links a:hover { color: var(--blue); }
.nav-links a.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
  text-shadow: 0 0 12px rgba(0, 191, 255, 0.5);
}
.nav-cta {
  white-space: nowrap;
  font-family: 'Russo One', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--blue);
  color: var(--blue);
  transition: all 0.2s var(--ease);
}
.nav-cta:hover {
  background: var(--blue);
  color: #001220;
  box-shadow: 0 0 18px rgba(0, 191, 255, 0.45);
}

.lang-btn {
  font-family: 'Russo One', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--silver);
  cursor: pointer;
  margin-left: 14px;
  flex-shrink: 0;
  transition: all 0.2s var(--ease);
}
.lang-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 0 12px rgba(0, 191, 255, 0.25);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 102;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  margin: 6px auto;
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 101;
  background: rgba(11, 15, 20, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: 'Russo One', sans-serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), color 0.2s var(--ease);
}
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--blue); }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 10, 18, 0.75), rgba(8, 22, 36, 0.45));
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}
.hero-badge {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
  filter: drop-shadow(0 0 24px rgba(0, 191, 255, 0.45));
}
.hero-eyebrow {
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 0 14px rgba(0, 191, 255, 0.5);
}
.hero-title {
  font-size: 84px;
  font-weight: 700;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.55));
}
.hero-subtitle {
  font-size: 24px;
  color: #C8D3DF;
  margin-bottom: 40px;
  font-weight: 400;
}
.hero-ctas {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--blue);
  opacity: 0;
  animation: heroIn 0.8s var(--ease) 1.1s forwards;
}
.scroll-indicator svg {
  animation: bounce 1.8s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ---------- Buttons — blue outline style ---------- */
.btn {
  display: inline-block;
  font-family: 'Russo One', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: transparent;
  transition: all 0.2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(0.97); }

.btn-silver-outline {
  border-color: var(--silver);
  color: var(--silver);
}
.btn-silver-outline:hover {
  background: var(--silver);
  color: #0B0F14;
  box-shadow: 0 8px 24px rgba(199, 210, 222, 0.3);
}

.btn-blue-outline {
  border-color: var(--blue);
  color: var(--blue);
}
.btn-blue-outline:hover {
  background: var(--blue);
  color: #001220;
  box-shadow: 0 8px 28px rgba(0, 191, 255, 0.45);
}

/* ---------- Home teasers ---------- */
.teaser-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.teaser-card {
  display: block;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.teaser-card:hover {
  transform: translateY(-8px);
  border-color: rgba(86, 200, 255, 0.55);
  box-shadow: 0 20px 40px rgba(0, 191, 255, 0.16);
}
.teaser-card .service-icon { margin-bottom: 20px; }
.teaser-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.teaser-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 18px;
}
.teaser-link {
  font-family: 'Russo One', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}
.teaser-link::after {
  content: " →";
  transition: margin-left 0.2s var(--ease);
}
.teaser-card:hover .teaser-link::after { margin-left: 6px; }

.cta-strip {
  text-align: center;
  padding: 90px 24px;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(0, 191, 255, 0.1), transparent 70%);
}
.cta-strip h2 {
  font-size: clamp(28px, 4.5vw, 44px);
  margin-bottom: 14px;
}
.cta-strip p {
  color: var(--muted);
  margin-bottom: 32px;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.services-col h3 {
  font-size: 24px;
  margin-bottom: 24px;
  padding-left: 14px;
  border-left: 3px solid var(--blue);
}
.service-card {
  position: relative;
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin-bottom: 18px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), rgba(199, 210, 222, 0.25));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(86, 200, 255, 0.55);
  box-shadow: 0 20px 40px rgba(0, 191, 255, 0.16);
}
.service-card:hover::after { transform: scaleX(1); }

.service-head {
  display: flex;
  align-items: center;
  gap: 20px;
}
.service-desc {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(35, 43, 54, 0.7);
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}
.service-desc + .service-desc {
  margin-top: 10px;
  padding-top: 0;
  border-top: none;
}
.service-duration {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Russo One', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid rgba(86, 200, 255, 0.35);
  border-radius: 20px;
  padding: 5px 14px;
}

.service-icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(199, 210, 222, 0.55);
  background: linear-gradient(160deg, rgba(233, 239, 245, 0.16), rgba(147, 163, 181, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  box-shadow: 0 0 12px rgba(0, 191, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.service-info { flex: 1; }
.service-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}
.service-price {
  font-family: 'Russo One', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--blue);
  white-space: nowrap;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.gallery-item:hover {
  border-color: rgba(86, 200, 255, 0.4);
  box-shadow: 0 0 24px rgba(0, 191, 255, 0.12);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 20px 18px;
  background: linear-gradient(to top, rgba(5, 10, 18, 0.92), transparent);
  color: var(--text);
  font-family: 'Russo One', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }
.gallery-note {
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
  text-align: center;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.feature {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}
.feature-check {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--blue);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 191, 255, 0.07);
  box-shadow: 0 0 12px rgba(0, 191, 255, 0.2);
}
.feature h4 {
  font-size: 19px;
  margin-bottom: 4px;
  color: var(--text);
}
.feature p { color: var(--muted); font-size: 15px; }

.about-image {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 191, 255, 0.1);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s var(--ease);
}
.about-image:hover img { transform: scale(1.03); }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 72px;
  text-align: center;
}
.stat-number {
  font-family: 'Russo One', sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--blue);
  line-height: 1;
  text-shadow: 0 0 20px rgba(0, 191, 255, 0.4);
}
.stat-label {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ---------- Booking ---------- */
.booking-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: 0 -1px 20px rgba(0, 191, 255, 0.08);
}
.form-group { margin-bottom: 22px; text-align: left; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #0C1117;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.15);
}
.form-group input.error,
.form-group select.error {
  border-color: #E5484D;
}
.form-error {
  display: none;
  color: #E5484D;
  font-size: 13px;
  margin-top: 6px;
}
.form-group.has-error .form-error { display: block; }
.form-group select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2356C8FF' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-group input[type="date"] { color-scheme: dark; }

.btn-submit {
  width: 100%;
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  font-family: 'Russo One', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px;
  margin-top: 6px;
  transition: all 0.2s var(--ease);
}
.btn-submit:hover {
  background: var(--blue);
  color: #001220;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 191, 255, 0.4);
}
.btn-submit:active { transform: scale(0.97); }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 0 16px;
}
.form-success.show { display: block; }
.form-success .check-circle {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 2px solid #46C078;
  color: #46C078;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popIn 0.3s var(--ease);
}
@keyframes popIn {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.form-success p {
  font-size: 18px;
  color: var(--text);
}

/* ---------- Contact ---------- */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-bottom: 44px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  font-size: 17px;
}
.contact-item svg { color: var(--blue); flex-shrink: 0; filter: drop-shadow(0 0 6px rgba(0, 191, 255, 0.4)); }
.contact-item a { transition: color 0.2s var(--ease); }
.contact-item a:hover { color: var(--blue); }

.social-row {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--silver);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.social-btn:hover { transform: scale(1.15); }
.social-btn.instagram:hover {
  color: #E1306C;
  border-color: #E1306C;
  box-shadow: 0 0 18px rgba(225, 48, 108, 0.4);
}
.social-btn.tiktok:hover {
  color: #00F2EA;
  border-color: #00F2EA;
  box-shadow: 0 0 18px rgba(0, 242, 234, 0.4);
}
.social-btn.email:hover {
  color: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 18px rgba(0, 191, 255, 0.4);
}

/* ---------- Footer ---------- */
footer {
  background: #070A0E;
  border-top: 1px solid rgba(86, 200, 255, 0.35);
  box-shadow: 0 -1px 16px rgba(0, 191, 255, 0.08);
  text-align: center;
  padding: 56px 24px 40px;
}
.footer-logo {
  font-family: 'Russo One', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-tagline {
  color: var(--muted);
  margin: 8px 0 24px;
  font-size: 15px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-nav a {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s var(--ease);
}
.footer-nav a:hover { color: var(--blue); }
.footer-copy {
  color: #5C6773;
  font-size: 13px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1023px) {
  .nav-right { display: none; }
  .hamburger { display: block; }
}
@media (max-width: 767px) {
  .hero-title { font-size: 40px; }
  .hero-subtitle { font-size: 18px; }
  .hero-badge { width: 96px; height: 96px; }
  .section { padding: 70px 20px; }
  .page-header { padding: 130px 20px 50px; }
  .booking-card { padding: 32px 22px; }
}
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1.2fr 1fr; }
  .teaser-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .mobile-menu { display: none; }
}
@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Intro overlay (само първо зареждане) ---------- */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #070A0E;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  animation: introFade 0.5s ease 1.4s forwards;
}
.intro-overlay .intro-badge {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 26px rgba(0, 191, 255, 0.5));
  opacity: 0;
  animation: introIn 0.7s var(--ease) 0.05s forwards;
}
.intro-overlay .intro-logo {
  font-family: 'Russo One', sans-serif;
  font-size: clamp(28px, 6vw, 54px);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: introIn 0.7s var(--ease) 0.15s forwards;
}
.intro-overlay .intro-line {
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--silver));
  box-shadow: 0 0 14px rgba(0, 191, 255, 0.7);
  animation: introLine 0.9s var(--ease) 0.5s forwards;
}
@keyframes introIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
@keyframes introLine { to { width: min(340px, 70vw); } }
@keyframes introFade { to { opacity: 0; visibility: hidden; } }

/* ---------- Преди/след слайдер ---------- */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .ba-grid { grid-template-columns: repeat(2, 1fr); }
}
.ba-slider {
  position: relative;
  aspect-ratio: 12 / 13;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.ba-slider:hover {
  border-color: rgba(86, 200, 255, 0.4);
  box-shadow: 0 0 24px rgba(0, 191, 255, 0.12);
}
.ba-before, .ba-after {
  position: absolute;
  inset: 0;
  background-size: 200% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}
.ba-before { background-position: 0% 50%; }
.ba-after {
  background-position: 100% 50%;
  clip-path: inset(0 0 0 var(--pos, 50%));
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  width: 2px;
  margin-left: -1px;
  background: var(--blue);
  box-shadow: 0 0 14px rgba(0, 191, 255, 0.8);
  pointer-events: none;
}
.ba-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--blue);
  background: rgba(11, 15, 20, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.ba-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 16px 12px;
  background: linear-gradient(to top, rgba(5, 10, 18, 0.85), transparent);
  color: var(--text);
  font-family: 'Russo One', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  pointer-events: none;
}
.ba-hint {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-top: 20px;
}
.ba-hint b { color: var(--blue); font-weight: 600; }

/* ---------- Отзиви ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: left;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.review-card:hover {
  border-color: rgba(86, 200, 255, 0.5);
  box-shadow: 0 16px 36px rgba(0, 191, 255, 0.12);
}
.review-stars {
  color: var(--blue);
  letter-spacing: 4px;
  font-size: 17px;
  margin-bottom: 14px;
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}
.review-text {
  color: var(--silver);
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
}
.review-author {
  font-family: 'Russo One', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.review-car {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}
.faq-item.open { border-color: rgba(86, 200, 255, 0.5); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Russo One', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: left;
  padding: 20px 24px;
  transition: color 0.2s var(--ease);
}
.faq-q:hover { color: var(--blue); }
.faq-q .faq-icon {
  flex-shrink: 0;
  color: var(--blue);
  transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}
.faq-a p {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ---------- Ценови калкулатор ---------- */
.calc-card {
  max-width: 600px;
  margin: 0 auto 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--silver);
  border-radius: var(--radius);
  padding: 36px 40px;
  text-align: left;
}
.calc-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
}
.calc-card .calc-sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 22px;
}
.calc-services { margin-bottom: 22px; }
.calc-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.calc-row:hover { border-color: rgba(86, 200, 255, 0.4); }
.calc-row.checked {
  border-color: var(--blue);
  background: rgba(0, 191, 255, 0.06);
}
.calc-row input {
  accent-color: var(--blue);
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
.calc-row .calc-name { flex: 1; font-size: 15px; }
.calc-row .calc-price {
  font-family: 'Russo One', sans-serif;
  font-weight: 700;
  color: var(--blue);
  font-size: 16px;
  white-space: nowrap;
}
.calc-size-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.calc-sizes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
.calc-size {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: none;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  padding: 10px 6px;
  transition: all 0.2s var(--ease);
}
.calc-size.active {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(0, 191, 255, 0.06);
}
.calc-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin-bottom: 20px;
}
.calc-total span { color: var(--muted); font-size: 14px; }
.calc-total b {
  font-family: 'Russo One', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--blue);
  text-shadow: 0 0 16px rgba(0, 191, 255, 0.4);
}
.calc-note { color: #5C6773; font-size: 12px; margin-top: 14px; }

/* ---------- Плаващ бутон (мобилно) ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  text-align: center;
  padding: 15px;
  border-radius: var(--radius);
  background: var(--blue);
  color: #001220;
  font-family: 'Russo One', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 8px 28px rgba(0, 191, 255, 0.45);
  transform: translateY(90px);
  transition: transform 0.3s var(--ease);
}
.mobile-cta.show { transform: translateY(0); }
@media (max-width: 767px) {
  .mobile-cta { display: block; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transform: none; transition: opacity 0.4s ease; }
  .reveal.visible { transform: none; }
  .section-heading { clip-path: none; transition: none; }
  .hero-anim { animation: fadeOnly 0.5s ease forwards; transform: none; }
  .scroll-indicator { animation: fadeOnly 0.5s ease 0.5s forwards; }
  .scroll-indicator svg { animation: none; }
  .btn:hover, .btn-submit:hover, .service-card:hover, .teaser-card:hover, .social-btn:hover { transform: none; }
  .gallery-item:hover img { transform: none; }
  .about-image:hover img { transform: none; }
  .gallery-caption { transform: none; opacity: 0; transition: opacity 0.3s ease; }
  .gallery-item:hover .gallery-caption { opacity: 1; }
  .intro-overlay { display: none; }
  .mobile-cta { transform: none; transition: none; }
  .review-card:hover { transform: none; }
  @keyframes fadeOnly { from { opacity: 0; } to { opacity: 1; } }
}
