/* ══════════════════════════════════════════════════
   Cogwheel Workshop – Carbon Fibre Theme
   ══════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────── */
:root {
  --bg:        #0e0e0e;
  --surface:   #181818;
  --surface2:  #212121;
  --border:    #2d2d2d;
  --gold:      #dc2020;       /* red accent */
  --gold-light:#ff4444;
  --gold-dark: #b01818;
  --text:      #e8e8e8;
  --text-muted:#828282;
  --red:       #dc2020;
  --radius:    8px;
  --radius-lg: 16px;
  --transition:0.3s ease;
  --shadow:    0 4px 30px rgba(0,0,0,0.75);
  /* Carbon-fibre weave: paired diagonal stripes at ±45° */
  --plate:
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.04) 0px,
      rgba(255,255,255,0.04) 2px,
      transparent              2px,
      transparent              8px,
      rgba(255,255,255,0.04) 8px,
      rgba(255,255,255,0.04) 10px,
      transparent             10px,
      transparent             16px
    ),
    repeating-linear-gradient(
      45deg,
      rgba(0,0,0,0.35)       0px,
      rgba(0,0,0,0.35)       2px,
      transparent              2px,
      transparent              8px,
      rgba(0,0,0,0.35)       8px,
      rgba(0,0,0,0.35)       10px,
      transparent             10px,
      transparent             16px
    );
  --plate-size: 16px 16px;
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--bg);
  background-image: var(--plate);
  background-size: var(--plate-size);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* ── Utility ────────────────────────────────────────── */
.gold        { color: var(--gold); }
.lv          { margin-bottom: 2px; }
.en          { color: var(--text-muted); font-size: 0.9em; font-style: italic; }
.container   { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Navbar ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(14, 14, 14, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.navbar.scrolled { background: rgba(14,14,14,0.98); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link { display: flex; align-items: center; }
.logo-text  {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-accent{ color: var(--gold); margin-left: 4px; }
.logo-img   { height: 40px; width: 40px; margin-right: 10px; flex-shrink: 0; object-fit: contain; }



.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Hero ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Hero background image – set your image here */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('images/hero.jpg') center center / cover no-repeat,
    linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  z-index: 0;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1.08); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 24px 60px;
}

.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease both;
}

.hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s 0.15s ease both;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  animation: fadeInDown 0.8s 0.3s ease both;
}
.hero-sub.lv { color: var(--text); font-weight: 500; }
.hero-sub.en { color: var(--text-muted); margin-bottom: 36px; }

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInDown 0.8s 0.45s ease both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220,32,32,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--gold);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Sections ───────────────────────────────────────── */
.section       { padding: 96px 0; }
.section-dark  { background-color: var(--surface); background-image: var(--plate); background-size: var(--plate-size); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  color: var(--gold);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text);
}
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-tagline {
  margin-top: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.section-tagline p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: center;
}
.section-tagline .en {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-style: normal;
}

/* ── Gallery Stats (embedded in gallery header) ─────── */
.gallery-stats {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  margin: 28px auto 0;
  padding: 20px 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.gs-item { text-align: center; }
.gs-num-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
}
.gs-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.gs-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 5px;
}
.gs-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Services ───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover { border-color: var(--gold-dark); transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.service-card p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 4px; }

/* ── Before / After ─────────────────────────────────── */
.before-after-wrap {
  max-width: 420px;
  margin: 0 auto 56px;
}

.before-after-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  cursor: col-resize;
  user-select: none;
  aspect-ratio: 9/16;
  max-height: 80vh;
  background: var(--surface2);
}

.ba-side {
  position: absolute;
  inset: 0;
}
.ba-before {
  z-index: 1;
  clip-path: inset(0 50% 0 0);
}
.ba-after {
  z-index: 0;
}

.ba-side img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 70%;
}

.ba-label {
  position: absolute;
  bottom: 12px;
  background: rgba(0,0,0,0.75);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  z-index: 20;
}
.ba-label-before { left: 12px; border-left: 2px solid var(--gold); }
.ba-label-after  { right: 12px; border-right: 2px solid var(--gold); }

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 0 0 4px rgba(220,32,32,0.35);
  z-index: 10;
  cursor: col-resize;
}
.ba-handle::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100vh;
  background: var(--gold);
  z-index: -1;
}

/* Placeholder shown when images are missing */
.ba-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--surface2);
  color: var(--text-muted);
  text-align: center;
  padding: 24px;
  z-index: 5;
}
.ba-placeholder i    { font-size: 2.5rem; color: var(--gold); opacity: 0.4; }
.ba-placeholder p    { font-size: 0.95rem; }
.ba-placeholder code {
  font-size: 0.8rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 10px;
  color: var(--gold);
}

.ba-caption {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 12px;
  letter-spacing: 0.5px;
}

/* ── Gallery Grid ────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface2);
  border: 1px solid var(--border);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  font-size: 1.5rem;
  color: var(--gold);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── Video ───────────────────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.video-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.video-card video {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.video-caption {
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* 16:9 wrapper for iframes (YouTube etc.) */
.video-wrapper {
  position: relative;
  padding-top: 56.25%;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.video-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 24px;
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
}
.video-placeholder i { font-size: 3rem; color: var(--gold); margin-bottom: 16px; opacity: 0.5; }
.video-placeholder p { margin-bottom: 4px; }

/* ── Video Strip ─────────────────────────────────────── */
.video-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.video-strip-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 9/16;
  background: var(--surface2);
  border: 1px solid var(--border);
  position: relative;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.video-strip-item:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.55);
}
.video-strip-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.video-strip-item:hover video {
  transform: scale(1.04);
}
.video-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 110px 16px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.7) 40%, transparent 100%);
  color: #fff;
}
.vl-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 11px;
  font-size: 0.88rem;
  color: #fff;
}
.vl-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 8px;
}
.vl-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.58);
  letter-spacing: 0.01em;
  line-height: 1.55;
  text-transform: none;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Language Switcher ───────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
}
.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 5px 9px;
  border-radius: 4px;
  transition: all var(--transition);
}
.lang-btn:hover { color: var(--gold); }
.lang-btn.active {
  color: var(--gold);
  background: rgba(255,255,255,0.06);
}

/* ── Language Visibility ─────────────────────────────── */
/* RU hidden by default; EN shows as subtitle in default LV mode */
.ru { display: none; }

/* LV mode (explicit) */
body.lang-lv .en,
body.lang-lv .ru { display: none; }

/* EN mode */
body.lang-en .lv,
body.lang-en .ru { display: none; }
body.lang-en .en {
  display: block;
  color: var(--text);
  font-size: 1rem;
  font-style: normal;
}
body.lang-en .contact-tagline blockquote p.en {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  font-style: normal;
  margin-bottom: 8px;
}

/* RU mode */
body.lang-ru .lv,
body.lang-ru .en { display: none; }
body.lang-ru .ru {
  display: block;
  color: var(--text);
  font-size: 1rem;
}
body.lang-ru .contact-tagline blockquote p.ru {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 8px;
}

/* ── Contact ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  width: 100%;
  height: 280px;
  margin-bottom: 28px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-item i { font-size: 1.3rem; margin-top: 3px; }
.contact-item strong { display: block; color: var(--text); margin-bottom: 2px; }
.contact-item p, .contact-item a { color: var(--text-muted); font-size: 0.95rem; }
.contact-item a:hover { color: var(--gold); }

.contact-tagline blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin-bottom: 32px;
}
.contact-tagline blockquote p.lv {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 8px;
}
.contact-tagline blockquote p.en {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
}

.socials { display: flex; gap: 16px; }
.socials a {
  width: 44px; height: 44px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-3px);
}

/* ── Footer ─────────────────────────────────────────── */
.footer {
  background-color: #080808;
  background-image: var(--plate);
  background-size: var(--plate-size);
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-logo { font-size: 1.1rem; }
.footer p { color: var(--text-muted); font-size: 0.85rem; }

/* ── Lightbox ────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition);
}
.lightbox-close:hover { color: var(--gold); }

/* ── Animations ─────────────────────────────────────── */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Dot-grid section background ─────────────────────── */
.section-dotgrid {
  background-color: var(--bg);
  background-image: var(--plate);
  background-size: var(--plate-size);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── Nav Book Button ────────────────────────────────── */
.btn-nav-book {
  padding: 7px 18px;
  font-size: 0.88rem;
  margin-left: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Booking Form ────────────────────────────────────── */
.booking-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.booking-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.form-input {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.06);
}

.form-input::placeholder {
  color: rgba(136,136,136,0.45);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.booking-submit {
  align-self: flex-start;
}

.booking-success {
  display: none;
  text-align: center;
  padding: 72px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.booking-success i {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.booking-success h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.booking-success p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: rgba(14,14,14,0.98);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    display: block;
    padding: 14px 24px;
    border-bottom: 1px solid var(--border);
  }

  .contact-grid { grid-template-columns: 1fr; }
  .stats-inner  { gap: 40px; }

  .before-after-slider { aspect-ratio: 9/16; max-height: 70vh; }

  .video-strip { grid-template-columns: repeat(2, 1fr); }

  .lang-switcher { gap: 0; }

  .btn-nav-book { display: none; }

  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 28px 20px; }
  .booking-submit { align-self: stretch; justify-content: center; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
}
