/* ════════════════════════════════════════════════════
   CSS-VARIABLEN  (Light / Dark)
════════════════════════════════════════════════════ */
:root {
  --bg:       #ffffff;
  --bg2:      #f8f8f8;
  --bg3:      #f1f1f1;
  --txt:      #111111;
  --txt2:     #374151;
  --txt3:     #6b7280;
  --border:   rgba(0,0,0,.08);
  --red:      #dc2626;
  --red-glow: rgba(220,38,38,.35);
  --nav-bg:   rgba(255,255,255,.92);
}
[data-theme="dark"] {
  --bg:       #080808;
  --bg2:      #141414;
  --bg3:      #1c1c1c;
  --txt:      #f3f4f6;
  --txt2:     #d1d5db;
  --txt3:     #9ca3af;
  --border:   rgba(255,255,255,.07);
  --red:      #ef4444;
  --red-glow: rgba(239,68,68,.35);
  --nav-bg:   rgba(8,8,8,.94);
}

/* ════════════════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html   { scroll-behavior: smooth; }
body   { font-family: 'Barlow', sans-serif; background: var(--bg); color: var(--txt); overflow-x: hidden; transition: background .4s, color .4s; }
img    { display: block; max-width: 100%; }
a      { text-decoration: none; color: inherit; }
ul     { list-style: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }

/* ════════════════════════════════════════════════════
   SHARED UTILITIES
════════════════════════════════════════════════════ */
.container    { max-width: 1140px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.section      { padding: 96px 0; position: relative; overflow: hidden; }
.grad         { background: linear-gradient(90deg, #dc2626, #f87171); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.red          { color: var(--red); }

/* Blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; opacity: 1; }
.bl-tr { width: 380px; height: 380px; top: -60px;  right: -80px;  background: rgba(220,38,38,.04); }
.bl-bl { width: 300px; height: 300px; bottom:-40px; left: -60px;  background: rgba(220,38,38,.04); }
.bl-tl { width: 320px; height: 320px; top: -40px;  left: -80px;  background: rgba(220,38,38,.04); }
.bl-br { width: 280px; height: 280px; bottom:-40px; right:-60px;  background: rgba(220,38,38,.04); }
[data-theme="dark"] .blob { background: rgba(239,68,68,.07) !important; }

/* Section heading */
.sec-head           { text-align: center; margin-bottom: 56px; }
.sec-head h2        { font-size: clamp(24px,3.5vw,38px); font-weight: 900; color: var(--txt); margin-bottom: 10px; }
.sec-head h3        { font-size: clamp(20px,2.5vw,28px); font-weight: 900; color: var(--txt); }
.eyebrow            { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.sec-desc           { font-size: 15px; color: var(--txt3); margin-top: 8px; }
.divider-row        { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 20px; }
.d-line             { width: 48px; height: 1px; background: rgba(220,38,38,.35); }
.d-dot              { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }

/* Scroll animations */
.anim                { opacity: 0; transform: translateY(28px); transition: opacity .5s ease, transform .5s ease; }
.anim.visible        { opacity: 1; transform: none; }

/* ════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════ */
#navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; }

/* Logo row (visible only when not scrolled) */
#logo-row {
  display: flex;
  justify-content: center;
  padding: 30px 0;
  transition: max-height .5s ease, padding .5s ease, opacity .5s ease;
  max-height: 120px;
  overflow: hidden;
}

#logo-row img {
    border-radius: 14px;
    overflow: hidden;
}

#navbar.scrolled #logo-row { max-height: 0; padding: 0; opacity: 0; }
#main-logo { height: 72px; object-fit: contain; }
[data-theme="dark"] #main-logo,
[data-theme="dark"] #scrolled-logo { filter: brightness(1) invert(1); }

/* Nav bar row */
#nav-bar { width: 100%; }
.nav-inner {
  max-width: 100%;
  padding: 0 20px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .4s, backdrop-filter .4s;
}
#navbar.scrolled .nav-inner {
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* Scrolled logo (hidden until scrolled) */
.nav-logo-scrolled { display: none; margin-right: 16px; }
#navbar.scrolled .nav-logo-scrolled { display: block; }
#scrolled-logo { height: 36px; object-fit: contain; }

/* Nav links */
#nav-links { display: flex; align-items: center; flex: 1; justify-content: center; flex-wrap: wrap; gap: 0; }
.nav-link {
  padding: 14px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255,255,255,.85);
  transition: color .2s;
  position: relative;
  white-space: nowrap;
}
#navbar.scrolled .nav-link { color: var(--txt2); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width .3s;
}
.nav-link:hover,
.nav-link.active            { color: var(--red) !important; }
.nav-link:hover::after,
.nav-link.active::after     { width: 70%; }
.sep { color: rgba(255,255,255,.2); font-size: 11px; line-height: 1; }
#navbar.scrolled .sep { color: rgba(0,0,0,.12); }
[data-theme="dark"] #navbar.scrolled .sep { color: rgba(255,255,255,.1); }

/* Nav controls */
.nav-controls { display: flex; align-items: center; gap: 12px; }

/* Theme toggle */
#theme-toggle {
  width: 52px; height: 26px; border-radius: 13px; padding: 3px;
  display: flex; align-items: center;
  background: rgba(255,255,255,.15);
  transition: background .4s;
}
#navbar.scrolled #theme-toggle { background: #e5e7eb; }
[data-theme="dark"] #navbar.scrolled #theme-toggle { background: #1f1f2e; }
.toggle-track { display: flex; align-items: center; width: 100%; }
.toggle-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: #facc15;
  display: flex; align-items: center; justify-content: center;
  transition: transform .4s;
}
[data-theme="dark"] .toggle-thumb { transform: translateX(26px); background: #facc15; }
.toggle-thumb i { font-size: 11px; color: #1a1a1a; }

/* Hamburger */
#hamburger { display: none; color: rgba(255,255,255,.9); font-size: 24px; padding: 4px; }
#navbar.scrolled #hamburger { color: var(--txt); }

/* Mobile menu */
#mobile-menu {
  display: none;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  transition: max-height .4s ease;
}
#mobile-menu.open   { max-height: 400px; }
.mob-link {
  display: block;
  padding: 14px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--txt2);
  border-bottom: 1px solid var(--border);
  transition: color .2s;
  text-align: center;
}
.mob-link:hover { color: var(--red); }

/* ════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 1860px;
  overflow: hidden;
}

/* Slides */
.hero-slides { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: top center;
  opacity: 0;
  transition: opacity 1.5s ease;
  transform: scale(1);
  transition: opacity 1.5s ease, transform 6s ease-out;
}
.slide.active { opacity: 1; transform: scale(1.04); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.7) 0%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.8) 100%);
}

.hero-line {
  position: absolute; left: 0; width: 100%; height: 2px;
  background: linear-gradient(to right, transparent, rgba(220,38,38,.7), transparent);
}
.hero-line.top    { top: 0; }
.hero-line.bottom { bottom: 0; opacity: .4; }

/* Content */
.hero-content {
  position: relative; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; z-index: 10; padding: 30px 24px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.hero-content.loaded { opacity: 1; transform: none; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(220,38,38,.2);
  border: 1px solid rgba(220,38,38,.5);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255, 150, 150, .95);
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.badge-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  animation: pulse 1.8s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

.hero-h1 {
  font-size: clamp(56px, 8vw, 100px);
  font-weight: 900; line-height: 1;
  color: #fff; letter-spacing: -.01em;
  margin-bottom: 4px;
}
.hero-h2 {
  font-size: clamp(22px, 3.5vw, 44px);
  font-weight: 700; color: rgba(255,255,255,.9);
  letter-spacing: .2em; margin-bottom: 20px;
}
.hero-divider {
  width: 96px; height: 2px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
  margin: 0 auto 20px;
}
.hero-p {
  font-size: clamp(14px, 1.8vw, 18px);
  color: rgba(255,255,255,.85);
  max-width: 500px; line-height: 1.6;
  margin-bottom: 36px;
}
.hero-sub { font-size: .75em; color: rgba(255,255,255,.55); }

.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--red); color: #fff;
  padding: 13px 32px; border-radius: 999px;
  font-size: 13px; font-weight: 700; white-space: nowrap;
  transition: background .25s, transform .25s, box-shadow .25s;
}
.btn-primary:hover { background: #b91c1c; transform: scale(1.05); box-shadow: 0 0 22px var(--red-glow); }
.btn-outline {
  border: 1px solid rgba(255,255,255,.5); color: #fff;
  padding: 13px 32px; border-radius: 999px;
  font-size: 13px; font-weight: 700; white-space: nowrap;
  transition: border-color .25s, background .25s, transform .25s;
  backdrop-filter: blur(4px);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); transform: scale(1.05); }

/* Scroll indicator */
.scroll-ind {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: bounce 2.2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-6px)} }
.scroll-label { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.35); }
.scroll-track {
  width: 20px; height: 34px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: flex-start; justify-content: center; padding: 4px;
}
.scroll-thumb {
  width: 4px; height: 8px; border-radius: 2px;
  background: var(--red);
  animation: scrollThumb 1.6s infinite;
}
@keyframes scrollThumb { 0%{opacity:1;transform:translateY(0)} 100%{opacity:0;transform:translateY(16px)} }

/* Slide dots */
.slide-dots { position: absolute; bottom: 28px; right: 28px; display: flex; gap: 8px; z-index: 10; }
.dot {
  height: 3px; border-radius: 2px;
  transition: width .4s, background .4s;
  width: 12px; background: rgba(255,255,255,.35);
}
.dot.active { width: 28px; background: var(--red); }

/* ════════════════════════════════════════════════════
   ÜBER UNS
════════════════════════════════════════════════════ */
.about-section { background: var(--bg); }

.about-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-bottom: 72px;
}
.about-lead {
  font-size: 18px; font-weight: 700; color: var(--txt);
  margin-bottom: 14px; line-height: 1.55;
}
.about-body { font-size: 14px; color: var(--txt3); line-height: 1.8; margin-bottom: 12px; text-align: justify; }
.about-checks { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.about-checks li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--txt2); }
.check-icon {
  min-width: 20px; height: 20px; border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.check-icon i { color: #fff; font-size: 11px; }

.about-img-wrap { position: relative; }
.about-img-box { position: relative; border-radius: 18px; overflow: hidden; width: 100%; height: 420px; }
.about-img-box img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.about-img-ov { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(185,28,28,.25) 0%, transparent 60%); }
.about-badge-fl {
  position: absolute; bottom: -18px; left: -16px;
  background: var(--red); color: #fff;
  border-radius: 14px; padding: 14px 22px;
}
.ab-num { display: block; font-size: 28px; font-weight: 900; line-height: 1; }
.ab-lbl { display: block; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; opacity: .9; margin-top: 3px; }

/* Stats */
.about-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 64px; }
.stat-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 24px 16px; border-radius: 14px;
  background: var(--bg2); border: 1px solid var(--border);
  transition: border-color .3s, transform .3s;
}
.stat-card:hover { border-color: rgba(220,38,38,.4); transform: translateY(-4px); }
.stat-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(220,38,38,.07);
  display: flex; align-items: center; justify-content: center; margin-bottom: 10px;
}
[data-theme="dark"] .stat-icon { background: rgba(239,68,68,.12); }
.stat-icon i { font-size: 20px; color: var(--red); }
.stat-val   { font-size: 26px; font-weight: 900; color: var(--txt); line-height: 1; }
.stat-lbl   { font-size: 11px; color: var(--txt3); margin-top: 5px; font-weight: 500; }

/* Werte */
.about-val-head { text-align: center; margin-bottom: 28px; }
.about-val-head h3 { font-size: clamp(20px,2.5vw,28px); font-weight: 900; color: var(--txt); margin-top: 6px; }
.about-values { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.val-card {
  padding: 24px 20px; border-radius: 14px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: var(--bg2); border: 1px solid var(--border);
  transition: border-color .3s, transform .3s, box-shadow .3s;  
}
.val-card:hover { border-color: rgba(220,38,38,.45); transform: translateY(-6px); box-shadow: 0 0 22px var(--red-glow); }
.val-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(220,38,38,.07);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
  transition: background .3s, box-shadow .3s;
}
[data-theme="dark"] .val-icon { background: rgba(239,68,68,.12); }
.val-card:hover .val-icon { background: var(--red); box-shadow: 0 0 14px var(--red-glow); }
.val-icon i { font-size: 18px; color: var(--red); transition: color .3s; }
.val-card:hover .val-icon i { color: #fff; }
.val-card h4 { font-size: 13px; font-weight: 700; color: var(--txt); margin-bottom: 8px; }
.val-card p  { font-size: 12px; color: var(--txt3); line-height: 1.65; }

/* ════════════════════════════════════════════════════
   LEISTUNGEN
════════════════════════════════════════════════════ */
.services-section { background: var(--bg2); }

.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.svc-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 24px 16px; border-radius: 16px;
  background: var(--bg); border: 1px solid var(--border);
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.svc-card:hover { border-color: rgba(220,38,38,.4); transform: translateY(-6px); box-shadow: 0 0 20px var(--red-glow); }
.svc-icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: rgba(220,38,38,.07);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  font-size: 22px; color: var(--red);
  transition: background .3s, color .3s, box-shadow .3s;
}
[data-theme="dark"] .svc-icon { background: rgba(239,68,68,.12); }
.svc-card:hover .svc-icon { background: var(--red); color: #fff; box-shadow: 0 0 14px var(--red-glow); }
.svc-card p { font-size: 13px; font-weight: 600; color: var(--txt2); line-height: 1.45; transition: color .3s; }
.svc-card:hover p { color: var(--txt); }

/* ════════════════════════════════════════════════════
   GALERIE
════════════════════════════════════════════════════ */
.gallery-section { background: var(--bg); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.gal-item {
  position: relative; overflow: hidden; border-radius: 10px;
  height: 200px; cursor: pointer;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .7s ease; }
.gal-item:hover img { transform: scale(1.1); }
.gal-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 60%);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.gal-item:hover .gal-ov { opacity: 1; }
.gal-ov i { font-size: 24px; color: #fff; }
.gal-tl {
  position: absolute; top: 0; left: 0;
  width: 0; height: 2px; background: var(--red);
  transition: width .5s ease;
}
.gal-item:hover .gal-tl { width: 100%; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.96); z-index: 200;
  display: flex; align-items: center; justify-content: center;
}
.lightbox[hidden] { display: none; }
.lb-backdrop { position: absolute; inset: 0; }
.lb-counter {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
  border-radius: 999px; padding: 6px 16px;
  color: #fff; font-size: 13px; font-weight: 600; z-index: 1;
}
.lb-img { max-height: 82vh; max-width: 86vw; object-fit: contain; border-radius: 10px; position: relative; z-index: 1; }
.lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff; font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; z-index: 1;
}
.lb-btn:hover { background: var(--red); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-close {
  position: absolute; top: 16px; right: 16px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; z-index: 1;
}
.lb-close:hover { background: var(--red); }
#lb-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 1; }
.lb-dot {
  width: 10px; height: 3px; border-radius: 2px; background: rgba(255,255,255,.3);
  transition: width .3s, background .3s;
}
.lb-dot.active { width: 20px; background: var(--red); }

/* ════════════════════════════════════════════════════
   ÖFFNUNGSZEITEN
════════════════════════════════════════════════════ */
.hours-section { background: var(--bg2); }

.hours-card {
  max-width: 400px; margin: 0 auto;
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
}
.hr-row {
  display: flex; justify-content: space-between;
  padding: 13px 24px; font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.hr-row.last  { border-bottom: none; }
.hr-day       { font-weight: 600; color: var(--txt); }
.hr-time      { color: var(--txt3); }
.hr-time.muted { font-style: normal; }
.hr-day.closed,
.hr-time.closed { color: rgba(220,38,38,.6); }

/* ════════════════════════════════════════════════════
   KONTAKT
════════════════════════════════════════════════════ */
.contact-section { background: var(--bg); }

.contact-layout {
  display: grid; grid-template-columns: 5fr 7fr; gap: 28px; align-items: start;
}
.contact-map { display: flex; flex-direction: column; gap: 10px; }
.map-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--txt2);
}
.map-icon-bg {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(220,38,38,.1); display: flex; align-items: center; justify-content: center;
}
.map-icon-bg i { color: var(--red); font-size: 13px; }
.map-frame {
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border); height: 300px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

.form-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 18px; padding: 28px;
}
.form-heading {
  font-size: 15px; font-weight: 700; color: var(--txt);
  display: flex; align-items: center; gap: 8px; margin-bottom: 20px;
}
.form-icon-bg {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(220,38,38,.1); display: flex; align-items: center; justify-content: center;
}
.form-icon-bg i { color: var(--red); font-size: 12px; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.fg { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.fg label {
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--txt3);
}
.fg input, .fg textarea {
  width: 100%; padding: 10px 14px; border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg); color: var(--txt);
  font-family: inherit; font-size: 13px;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--txt3); }
.fg input:focus, .fg textarea:focus {
  border-color: rgba(220,38,38,.5);
  box-shadow: 0 0 0 3px rgba(220,38,38,.1);
}
.fg-ta { position: relative; }
.fg textarea { resize: none; }
.char-info {
  position: absolute; bottom: 10px; right: 12px;
  font-size: 10px; color: var(--txt3);
}
.form-footer { display: flex; justify-content: flex-end; }
#submit-btn {
  background: var(--red); color: #fff;
  padding: 10px 28px; border-radius: 8px;
  font-size: 13px; font-weight: 700; white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
  transition: background .2s, transform .2s, box-shadow .2s;
}
#submit-btn:hover:not(:disabled) { background: #b91c1c; transform: scale(1.04); box-shadow: 0 0 18px var(--red-glow); }
#submit-btn:disabled { opacity: .55; cursor: not-allowed; }

.feedback {
  margin-top: 14px; padding: 12px 14px; border-radius: 8px;
  font-size: 13px; display: flex; align-items: center; gap: 8px;
}
.feedback.ok  { background: rgba(22,163,74,.1); border: 1px solid rgba(22,163,74,.25); color: #16a34a; }
.feedback.err { background: rgba(220,38,38,.08); border: 1px solid rgba(220,38,38,.2);  color: var(--red); }
[data-theme="dark"] .feedback.ok  { color: #4ade80; }

/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
.site-footer {
  position: relative; overflow: hidden;
  background: #111111;
  padding: 56px 0 24px;
  border-top: 1px solid rgba(255,255,255,.06);
}
[data-theme="light"] .site-footer { background: #1a1a1a; }
.ft-top-line {
  position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(to right, transparent, rgba(220,38,38,.6), transparent);
}
.ft-glow {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 160px;
  background: rgba(180,0,0,.08); border-radius: 50%; filter: blur(60px);
  pointer-events: none;
}

.ft-logo-wrap { display: flex; justify-content: center; margin-bottom: 40px; }
.ft-logo { height: 60px; object-fit: contain; filter: brightness(0) invert(1); opacity: .8; }

.ft-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }

.ft-tagline { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.6; margin-bottom: 18px; }
.ft-socials { display: flex; gap: 10px; }
.soc-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); font-size: 15px;
  transition: background .2s, color .2s;
}
.soc-btn:hover { background: var(--red); color: #fff; }

.ft-heading {
  font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-bottom: 18px;
  display: flex; align-items: center; gap: 8px;
}
.ft-hl { display: inline-block; width: 12px; height: 2px; background: var(--red); flex-shrink: 0; }
.ft-small { font-size: 11px; color: rgba(255,255,255,.25); margin-bottom: 6px; }
.ft-addr { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.7; margin-bottom: 14px; }
.ft-link {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: rgba(255,255,255,.5);
  transition: color .2s; margin-bottom: 6px;
}
.ft-link i { color: var(--red); font-size: 12px; }
.ft-link:hover { color: rgba(255,255,255,.8); }
.ft-nav li { margin-bottom: 8px; }
.ft-nav a {
  font-size: 13px; color: rgba(255,255,255,.4);
  display: flex; align-items: center; gap: 4px;
  transition: color .2s;
}
.ft-nav a i { color: var(--red); font-size: 14px; }
.ft-nav a:hover { color: rgba(255,255,255,.75); }

.ft-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 18px;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 6px;
}
.ft-bottom p { font-size: 11px; color: rgba(255,255,255,.22); }
.ft-loc { font-size: 11px; color: rgba(255,255,255,.2); }

/* ════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════ */
@media(max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4,1fr); }
  .about-values  { grid-template-columns: repeat(2,1fr); }
}

@media(max-width: 900px) {
  .about-layout  { grid-template-columns: 1fr; gap: 40px; }
  .about-img-box { height: 300px; }
  .about-badge-fl{ bottom: -12px; left: -8px; }
  .about-stats   { grid-template-columns: repeat(2,1fr); }
  .about-values  { grid-template-columns: repeat(2,1fr); }
  .gallery-grid  { grid-template-columns: repeat(3,1fr); }
  .contact-layout{ grid-template-columns: 1fr; }
  .ft-grid       { grid-template-columns: 1fr 1fr; }
}

@media(max-width: 768px) {
  #hamburger   { display: flex; }
  #nav-links   { display: none; }
  #mobile-menu { display: flex; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .form-row-2    { grid-template-columns: 1fr; }
  .ft-grid       { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: repeat(2,1fr); }
  .lb-prev       { left: 6px; }
  .lb-next       { right: 6px; }
}

@media(max-width: 480px) {
  .hero-h1   { font-size: 52px; }
  .about-stats { grid-template-columns: repeat(2,1fr); }
  .about-values { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
}

/* Spinner for submit button */
@keyframes spin { to { transform: rotate(360deg); } }
.ri-loader-4-line { display: inline-block; animation: spin .8s linear infinite; }