:root {
  --bg: #F3F6FA;
  --blue: #0B84C9;
  --blue-deep: #00BFFF;
  --silver: #C7D2DE;
  --steel: #22303F;
  --surface: #FFFFFF;
  --border: #DEE5ED;
  --text: #101A26;
  --muted: #5C6B7A;
  --dark: #0B0F14;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --radius: 10px;
  --mono: 'IBM Plex Mono', 'Consolas', monospace;
}

* { 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: #FFFFFF; }

/* Metallic текст: тъмна стомана на светло, хром в тъмните зони */
.metallic {
  background: linear-gradient(180deg, #3D4B5C 0%, #131E2B 50%, #46586B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.navbar .metallic,
.hero .metallic,
.mobile-menu .metallic,
.cta-strip .metallic,
.intro-overlay .metallic,
footer .metallic {
  background-image: linear-gradient(180deg, #FFFFFF 0%, #D5DEE8 38%, #93A3B5 52%, #E9EFF5 78%, #FFFFFF 100%);
}

/* ---------- LED tube divider — като лампите в студиото ---------- */
.trim {
  height: 2px;
  border: none;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(199, 210, 222, 0.6) 18%, #FFFFFF 50%, rgba(199, 210, 222, 0.6) 82%, transparent);
  box-shadow: 0 0 22px rgba(0, 191, 255, 0.5), 0 0 4px rgba(255, 255, 255, 0.9);
  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;
  overflow: hidden;
  padding: 170px 24px 70px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(11, 132, 201, 0.10), transparent 70%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='97' viewBox='0 0 56 97'%3E%3Cg fill='none' stroke='%232A3542' stroke-opacity='0.06'%3E%3Cpath d='M28 0L56 16v32L28 64 0 48V16z'/%3E%3Cpath d='M28 64l28 16v17M28 64L0 80v17'/%3E%3C/g%3E%3C/svg%3E");
  border-bottom: 1px solid var(--border);
}
/* LED отблясък като лампите в студиото */
.page-header::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 50%;
  width: 130%;
  height: 110px;
  transform: translateX(-50%) rotate(-5deg);
  background: linear-gradient(90deg, transparent, rgba(11, 132, 201, 0.08) 30%, rgba(255, 255, 255, 0.55) 50%, rgba(11, 132, 201, 0.08) 70%, transparent);
  filter: blur(22px);
  pointer-events: none;
}
/* Racing райета в ъгъла на header-а */
.page-header::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(115deg, transparent 48%, rgba(11, 132, 201, 0.10) 48% 51%, transparent 51% 58%, rgba(34, 48, 63, 0.07) 58% 60%, transparent 60%);
  pointer-events: none;
}
.page-header > * { position: relative; z-index: 1; }
.page-header .eyebrow {
  font-family: var(--mono);
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
  text-shadow: 0 0 14px rgba(0, 191, 255, 0.5);
}
.page-header .eyebrow::before { content: "// "; opacity: 0.7; }
.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: #E9EFF5;
  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: #56C8FF; }
.nav-links a.active {
  color: #56C8FF;
  border-bottom-color: #56C8FF;
  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 24px;
  border-radius: 6px;
  border: 1px solid #56C8FF;
  color: #56C8FF;
  transform: skewX(-8deg);
  transition: all 0.2s var(--ease);
}
.nav-cta:hover {
  background: #56C8FF;
  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: #E9EFF5;
  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;
  color: #E9EFF5;
  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: #56C8FF; }

/* ---------- 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;
  animation: heroZoom 24s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 130% 90% at 50% 45%, transparent 55%, rgba(3, 6, 12, 0.75)),
    linear-gradient(to bottom, rgba(5, 10, 18, 0.8), rgba(8, 22, 36, 0.35) 55%, rgba(5, 10, 18, 0.85));
}
.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 {
  font-family: var(--mono);
  color: #56C8FF;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 0 14px rgba(0, 191, 255, 0.5);
}
.hero-eyebrow::before { content: "// "; opacity: 0.7; }
.hero-title {
  font-size: clamp(46px, 9.5vw, 104px);
  font-weight: 700;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.55));
}
/* Периодичен хромов отблясък — светлина преминава през заглавието */
.hero-title.metallic {
  background-image:
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.95) 50%, transparent 58%),
    linear-gradient(180deg, #FFFFFF 0%, #D5DEE8 38%, #93A3B5 52%, #E9EFF5 78%, #FFFFFF 100%);
  background-size: 260% 100%, 100% 100%;
  background-repeat: no-repeat;
  /* входната анимация + периодичният отблясък едновременно */
  animation: heroIn 0.8s var(--ease) 0.45s forwards, chromeShine 5.5s ease-in-out 1.5s infinite;
}
@keyframes chromeShine {
  0%, 55% { background-position: 130% 0, 0 0; }
  100% { background-position: -130% 0, 0 0; }
}
.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: #56C8FF;
  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 — скосени racing бутони ---------- */
.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 38px;
  border-radius: 6px;
  border: 1px solid transparent;
  background: transparent;
  transform: skewX(-8deg);
  transition: all 0.2s var(--ease);
}
.btn:hover { transform: skewX(-8deg) translateY(-2px); }
.btn:active { transform: skewX(-8deg) scale(0.97); }

.btn-silver-outline {
  border-color: var(--steel);
  color: var(--steel);
}
.btn-silver-outline:hover {
  background: var(--steel);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(34, 48, 63, 0.3);
}
/* в тъмните зони (hero) — сребрист вариант */
.hero .btn-silver-outline {
  border-color: var(--silver);
  color: var(--silver);
}
.hero .btn-silver-outline:hover {
  background: var(--silver);
  color: #0B0F14;
}

.btn-blue-outline {
  border-color: var(--blue);
  color: var(--blue);
}
.btn-blue-outline:hover {
  background: var(--blue);
  color: #FFFFFF;
  box-shadow: 0 8px 28px rgba(11, 132, 201, 0.35);
}
.hero .btn-blue-outline,
.cta-strip .btn-blue-outline {
  border-color: #56C8FF;
  color: #56C8FF;
}
.hero .btn-blue-outline:hover,
.cta-strip .btn-blue-outline:hover {
  background: #56C8FF;
  color: #001220;
}

/* ---------- 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 {
  position: relative;
  text-align: center;
  padding: 110px 24px;
  margin: 30px 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(0, 191, 255, 0.12), transparent 70%),
    #0D1219;
  clip-path: polygon(0 7%, 100% 0, 100% 93%, 0 100%);
  overflow: hidden;
}
/* Racing райета в ъгъла */
.cta-strip::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(115deg, transparent 55%, rgba(86, 200, 255, 0.10) 55% 58%, transparent 58% 64%, rgba(199, 210, 222, 0.07) 64% 66%, transparent 66%);
  pointer-events: none;
}
.cta-strip > * { position: relative; }

/* ---------- Движеща се лента с услугите ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid #1B2430;
  border-bottom: 1px solid #1B2430;
  background: #080C11;
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.mq-item {
  font-family: 'Russo One', sans-serif;
  font-size: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(199, 210, 222, 0.55);
}
.mq-sep {
  color: #56C8FF;
  font-size: 12px;
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.6);
}
@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}

/* ---------- Прогрес лента при скрол ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 201;
  background: linear-gradient(90deg, var(--blue-deep), #FFFFFF);
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.7);
  pointer-events: none;
}
.cta-strip h2 {
  font-size: clamp(28px, 4.5vw, 44px);
  margin-bottom: 14px;
}
.cta-strip p {
  color: #9FAAB8;
  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); }

/* Светлинен sweep при hover — отблясък като върху полиран лак */
.service-card::before,
.teaser-card::before,
.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -80%;
  width: 55%;
  background: linear-gradient(100deg, transparent, rgba(11, 132, 201, 0.08), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.service-card:hover::before,
.teaser-card:hover::before,
.review-card:hover::before { left: 125%; }
.review-card {
  position: relative;
  overflow: hidden;
}

.service-head {
  display: flex;
  align-items: center;
  gap: 20px;
}
.service-desc {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  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: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid rgba(86, 200, 255, 0.35);
  border-radius: 6px;
  padding: 5px 12px;
}

.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(--blue);
  box-shadow: 0 2px 10px rgba(11, 132, 201, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.service-info { flex: 1; }
.service-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}
.service-price {
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--blue);
  white-space: nowrap;
}

/* Каталожен код на услугата — като продуктовите кодове на Koch-Chemie */
.service-code {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  border: 1px solid rgba(199, 210, 222, 0.3);
  border-left: 3px solid var(--blue);
  background: linear-gradient(160deg, rgba(233, 239, 245, 0.08), rgba(147, 163, 181, 0.02));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.service-code b {
  color: var(--blue);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-shadow: 0 0 10px rgba(0, 191, 255, 0.4);
}

/* ---------- 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: #FFFFFF;
  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: var(--mono);
  font-size: clamp(38px, 5.5vw, 58px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--blue);
  line-height: 1;
  text-shadow: 0 0 20px rgba(0, 191, 255, 0.4);
}
.stat-label {
  font-family: var(--mono);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 10px;
}

/* ---------- 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: #FAFCFE;
  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='%230B84C9' 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: light; }

.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: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(11, 132, 201, 0.35);
}
.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(--steel);
  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: #9FAAB8;
  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: #9FAAB8;
  transition: color 0.2s var(--ease);
}
.footer-nav a:hover { color: #56C8FF; }
.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; }

  /* Навигация на телефон — да се побере логото, езикът, акаунтът и хамбургерът */
  .navbar,
  .navbar.scrolled { padding: 12px 16px; }
  .nav-logo { font-size: 15px; letter-spacing: 0.06em; }
  .nav-badge { width: 34px; height: 34px; }
  .nav-brand { gap: 8px; min-width: 0; }
  .lang-btn { margin-left: 8px; padding: 7px 10px; font-size: 11px; }
  .nav-account { width: 34px; height: 34px; margin-left: 8px; }
  .hamburger { width: 34px; height: 40px; }
}
@media (max-width: 359px) {
  /* Много тесни екрани — скриваме езиковия бутон от лентата (има го в менюто) */
  .lang-btn { display: none; }
}
@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;
}
/* Панорамен режим: влаченето плъзга кадъра от „преди" (0%) към „след" (100%) */
.ba-before { background-position: var(--pos, 50%) 50%; }
.ba-after { display: none; }
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  width: 2px;
  margin-left: -1px;
  background: #56C8FF;
  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 #56C8FF;
  background: rgba(11, 15, 20, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #56C8FF;
}
.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: #FFFFFF;
  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(--muted);
  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 {
  font-family: var(--mono);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Каталожен код в галерията */
.ba-code {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: #56C8FF;
  margin-right: 12px;
  text-shadow: 0 0 8px rgba(0, 191, 255, 0.5);
}

/* ---------- 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: var(--mono);
  font-weight: 600;
  color: var(--blue);
  font-size: 14px;
  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: var(--mono);
  font-size: 30px;
  font-weight: 600;
  color: var(--blue);
  text-shadow: 0 0 16px rgba(0, 191, 255, 0.4);
}
.calc-note { color: #5C6773; font-size: 12px; margin-top: 14px; }

/* ---------- Отзиви — форма и звезди ---------- */
.review-form-card {
  max-width: 600px;
  margin: 60px auto 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: left;
}
.review-form-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}
.star-input {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
}
.star-input button {
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  color: #C9D5E1;
  cursor: pointer;
  padding: 2px;
  transition: color 0.15s var(--ease), transform 0.15s var(--ease);
}
.star-input button.on {
  color: var(--blue);
  text-shadow: 0 0 12px rgba(0, 191, 255, 0.6);
}
.star-input button:hover { transform: scale(1.2); }

/* ---------- Акаунт — вход / регистрация ---------- */
.account-card {
  max-width: 460px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: left;
}
.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 26px;
}
.auth-tab {
  font-family: 'Russo One', sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  transition: all 0.2s var(--ease);
}
.auth-tab.active {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(0, 191, 255, 0.06);
}
.account-hello {
  text-align: center;
  padding: 10px 0;
}
.account-hello .avatar {
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 1px solid var(--blue);
  background: rgba(0, 191, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Russo One', sans-serif;
  font-size: 26px;
  color: var(--blue);
  text-shadow: 0 0 12px rgba(0, 191, 255, 0.5);
}
.account-hello h3 { font-size: 24px; margin-bottom: 6px; }
.account-hello p { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
/* −5% отстъпка за регистрирани */
.discount-badge {
  display: inline-block;
  margin: 2px 0 18px;
  padding: 8px 18px;
  border-radius: 20px;
  background: rgba(11, 132, 201, 0.08);
  border: 1px solid rgba(11, 132, 201, 0.35);
  color: var(--blue);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.05em;
}
.register-note {
  margin-bottom: 20px;
  padding: 11px 14px;
  border: 1px dashed rgba(11, 132, 201, 0.45);
  border-radius: 8px;
  background: rgba(11, 132, 201, 0.05);
  color: var(--blue);
  font-size: 13.5px;
  text-align: center;
}
.calc-discount {
  margin: -12px 0 18px;
  font-family: var(--mono);
  font-size: 13px;
  color: #1D9A55;
}
.calc-discount.hint { color: var(--muted); }
.calc-discount.hint a { color: var(--blue); text-decoration: underline; }

.demo-note {
  margin-top: 26px;
  padding: 14px 18px;
  border: 1px solid rgba(86, 200, 255, 0.25);
  border-radius: var(--radius);
  background: rgba(0, 191, 255, 0.05);
  color: var(--muted);
  font-size: 13px;
}
.nav-account {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--silver);
  margin-left: 12px;
  flex-shrink: 0;
  transition: all 0.2s var(--ease);
}
.nav-account:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 0 12px rgba(0, 191, 255, 0.3);
}

/* ---------- Плаващ бутон (мобилно) ---------- */
.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: #FFFFFF;
  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(11, 132, 201, 0.4);
  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; }
  .hero video { animation: none; }
  .hero-title.metallic { animation: fadeOnly 0.5s ease forwards; }
  .marquee-track { animation: none; }
  .service-card::before, .teaser-card::before, .review-card::before { display: none; }
  @keyframes fadeOnly { from { opacity: 0; } to { opacity: 1; } }
}
