/* ===========================
   CLEAN ONE — Car Detailing
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800&family=Syne:wght@600;700;800&display=swap');

:root {
  --black: #050810;
  --deep-black: #02040a;
  --navy: #0a1428;
  --blue-1: #0066ff;
  --blue-2: #1e90ff;
  --blue-glow: #00b4ff;
  --blue-deep: #002b6b;
  --white: #ffffff;
  --grey-1: #e8eef7;
  --grey-2: #8b95a8;
  --grey-3: #2a3142;
  --accent: #00d4ff;

  --font-display: 'Syne', sans-serif;
  --font-condensed: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;

  --ease: cubic-bezier(0.65, 0.05, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Background atmosphere */
.bg-atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(0, 102, 255, 0.15), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(0, 180, 255, 0.08), transparent 50%),
    var(--black);
}
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(30, 144, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 144, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s var(--ease);
  background: transparent;
}
.nav.scrolled {
  background: rgba(5, 8, 16, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(30, 144, 255, 0.15);
  padding: 16px 5vw;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--blue-1), var(--accent));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-condensed);
  font-size: 1.2rem;
  color: var(--black);
  font-weight: 800;
  position: relative;
  overflow: hidden;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
}
.logo:hover .logo-mark::after { transform: translateX(100%); }

.logo span { color: var(--accent); }

.logo-img {
  height: 100px;
  width: auto;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s var(--ease);
}
.logo:hover .logo-img {
  transform: scale(1.05);
}
.nav.scrolled .logo-img {
  height: 90px;
}
.footer .logo-img {
  height: 150px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  color: var(--grey-1);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a:hover::after, .nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 10px 22px;
  background: var(--accent);
  color: var(--black);
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  border: 1px solid var(--accent);
}
.nav-cta:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; height: 100vh;
    background: rgba(2, 4, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    transition: right 0.4s var(--ease);
    border-left: 1px solid rgba(30, 144, 255, 0.2);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; }
  .nav-cta { display: none; }
  .menu-toggle { display: block; z-index: 101; }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5vw 80px;
  position: relative;
  overflow: hidden;
}
.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.hero-text { position: relative; z-index: 2; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 30px;
  background: rgba(0, 212, 255, 0.05);
  animation: fadeUp 0.8s var(--ease) both;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero h1 .word {
  display: inline-block;
  animation: fadeUp 0.8s var(--ease) both;
}
.hero h1 .word:nth-child(1) { animation-delay: 0.1s; }
.hero h1 .word:nth-child(2) { animation-delay: 0.2s; }
.hero h1 .word:nth-child(3) { animation-delay: 0.3s; }
.hero h1 .gradient {
  background: linear-gradient(135deg, var(--blue-glow), var(--accent), var(--white));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--grey-2);
  max-width: 500px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s var(--ease) 0.5s both;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease) 0.6s both;
}

.btn-primary, .btn-secondary {
  padding: 18px 36px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s var(--ease);
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: var(--black);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-glow), var(--accent));
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
}
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}
.btn-primary:hover::before { transform: translateX(0); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

.arrow {
  transition: transform 0.3s var(--ease);
}
.btn-primary:hover .arrow, .btn-secondary:hover .arrow {
  transform: translateX(4px);
}

/* Hero visual — interactive car silhouette + photo zone */
.hero-visual {
  position: relative;
  height: 520px;
  animation: fadeUp 1s var(--ease) 0.4s both;
}
.photo-frame {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--navy), var(--deep-black));
  border: 1px solid rgba(30, 144, 255, 0.2);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(0, 102, 255, 0.15) inset;
}
.photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(0, 180, 255, 0.2), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(0, 102, 255, 0.15), transparent 60%);
  z-index: 1;
}
.photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  padding: 30px;
}
.photo-placeholder-icon {
  width: 64px; height: 64px;
  border: 2px dashed rgba(0, 212, 255, 0.4);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: var(--accent);
}
.photo-placeholder-label {
  font-family: var(--font-condensed);
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 8px;
}
.photo-placeholder-hint {
  font-size: 0.8rem;
  color: var(--grey-2);
  letter-spacing: 0.05em;
  font-family: 'Courier New', monospace;
}
.photo-placeholder-hint code {
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 4px;
}

/* Floating decorative elements around hero photo */
.deco-card {
  position: absolute;
  background: rgba(10, 20, 40, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(30, 144, 255, 0.2);
  border-radius: 16px;
  padding: 16px 20px;
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}
.deco-card-1 {
  top: 30px; left: -40px;
  animation-delay: 0s;
}
.deco-card-2 {
  bottom: 50px; right: -30px;
  animation-delay: 2s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.deco-card-label {
  font-size: 0.7rem;
  color: var(--grey-2);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}
.deco-card-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

@media (max-width: 1000px) {
  .hero-content { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { height: 400px; }
  .deco-card-1 { left: 10px; }
  .deco-card-2 { right: 10px; }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%; height: 50%;
  background: var(--white);
  animation: scrollDown 2s linear infinite;
}
@keyframes scrollDown {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ===== SECTIONS ===== */
.section {
  padding: 120px 5vw;
  position: relative;
}
.section-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.section-tag {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-tag::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--accent);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  max-width: 700px;
}
.section-title .italic {
  font-style: italic;
  color: var(--accent);
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: linear-gradient(180deg, rgba(10, 20, 40, 0.6), rgba(2, 4, 10, 0.8));
  border: 1px solid rgba(30, 144, 255, 0.15);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
}
.service-card:hover::before { transform: translateX(0); }
.service-num {
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  color: var(--grey-2);
  margin-bottom: 24px;
  letter-spacing: 0.2em;
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.8rem;
  transition: transform 0.5s var(--ease);
}
.service-card:hover .service-icon {
  transform: rotate(-8deg) scale(1.1);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-card p {
  color: var(--grey-2);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-features li {
  font-size: 0.85rem;
  color: var(--grey-1);
  padding-left: 22px;
  position: relative;
}
.service-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 1px;
  background: var(--accent);
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--deep-black));
  border: 1px solid rgba(30, 144, 255, 0.15);
  transition: all 0.5s var(--ease);
}
.gallery-item:nth-child(1) { grid-column: span 6; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 3; grid-row: span 1; }
.gallery-item:nth-child(3) { grid-column: span 3; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 3; grid-row: span 1; }
.gallery-item:nth-child(5) { grid-column: span 4; grid-row: span 1; }
.gallery-item:nth-child(6) { grid-column: span 4; grid-row: span 1; }
.gallery-item:nth-child(7) { grid-column: span 4; grid-row: span 1; }

.gallery-item:hover {
  transform: scale(1.02);
  border-color: var(--accent);
  z-index: 2;
}

.gallery-item .photo-placeholder-icon {
  width: 48px; height: 48px;
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.gallery-item .photo-placeholder-label { font-size: 0.95rem; }

@media (max-width: 800px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
}

/* ===== STATS ===== */
.stats-section {
  padding: 80px 5vw;
  border-top: 1px solid rgba(30, 144, 255, 0.15);
  border-bottom: 1px solid rgba(30, 144, 255, 0.15);
  background: linear-gradient(180deg, transparent, rgba(0, 102, 255, 0.04), transparent);
}
.stats-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}
.stat {
  text-align: center;
  position: relative;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--white), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-2);
}

/* ===== PROCESS ===== */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-item {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid rgba(30, 144, 255, 0.15);
  align-items: start;
  transition: all 0.4s var(--ease);
  position: relative;
}
.process-item:last-child { border-bottom: 1px solid rgba(30, 144, 255, 0.15); }
.process-item:hover {
  padding-left: 20px;
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.05), transparent);
}
.process-num {
  font-family: var(--font-condensed);
  font-size: 3rem;
  color: var(--accent);
  line-height: 0.9;
  letter-spacing: 0.05em;
}
.process-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.process-desc {
  color: var(--grey-2);
  font-size: 0.95rem;
}
@media (max-width: 700px) {
  .process-item {
    grid-template-columns: 80px 1fr;
  }
  .process-desc { grid-column: 2; }
}

/* ===== CTA BANNER ===== */
.cta-banner {
  margin: 80px 5vw;
  padding: 80px 60px;
  background:
    linear-gradient(135deg, var(--blue-deep), var(--navy)),
    radial-gradient(circle at top right, var(--accent), transparent);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(0, 212, 255, 0.3), transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(0, 102, 255, 0.2), transparent 50%);
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.cta-banner p {
  color: var(--grey-1);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
  padding: 80px 5vw 40px;
  background: var(--deep-black);
  border-top: 1px solid rgba(30, 144, 255, 0.15);
}
.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p {
  color: var(--grey-2);
  font-size: 0.9rem;
  max-width: 320px;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: var(--font-condensed);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  color: var(--grey-1);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s, padding 0.3s;
}
.footer-col a:hover {
  color: var(--accent);
  padding-left: 6px;
}
.footer-col p {
  color: var(--grey-2);
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(30, 144, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--grey-2);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  padding: 180px 5vw 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.breadcrumb {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-2);
  margin-bottom: 30px;
}
.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
  margin-right: 8px;
}
.breadcrumb span { margin: 0 8px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.page-hero h1 .italic {
  font-style: italic;
  color: var(--accent);
}
.page-hero p {
  font-size: 1.15rem;
  color: var(--grey-2);
  max-width: 600px;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5vw 120px;
}
@media (max-width: 1000px) {
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
}

.contact-info-block {
  margin-bottom: 36px;
}
.contact-info-label {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.contact-info-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
}
.contact-info-value a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
.contact-info-value a:hover { color: var(--accent); }

.hours-list {
  list-style: none;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(30, 144, 255, 0.1);
  font-size: 0.95rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: var(--grey-1); }
.hours-list .time { color: var(--accent); font-family: 'Courier New', monospace; }

.map-frame {
  margin-top: 40px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(30, 144, 255, 0.2);
  height: 320px;
  filter: grayscale(0.5) contrast(1.1) hue-rotate(180deg) invert(0.85);
}
.map-frame iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: invert(1) hue-rotate(180deg);
}

/* Contact form */
.contact-form {
  background: linear-gradient(180deg, rgba(10, 20, 40, 0.5), rgba(2, 4, 10, 0.7));
  border: 1px solid rgba(30, 144, 255, 0.15);
  border-radius: 24px;
  padding: 48px 40px;
}
.contact-form h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 8px;
}
.contact-form .form-sub {
  color: var(--grey-2);
  margin-bottom: 32px;
  font-size: 0.95rem;
}
.form-group {
  margin-bottom: 24px;
  position: relative;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-2);
  margin-bottom: 10px;
  font-weight: 500;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(5, 8, 16, 0.6);
  border: 1px solid rgba(30, 144, 255, 0.2);
  border-radius: 12px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s var(--ease);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0, 212, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-body);
}
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2300d4ff' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; padding-right: 40px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
}
.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--accent);
  color: var(--black);
  border: none;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  margin-top: 12px;
  position: relative;
  overflow: hidden;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}
.form-message {
  margin-top: 20px;
  padding: 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  display: none;
}
.form-message.show { display: block; }
.form-message.success {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--accent);
  color: var(--accent);
}

/* ===== LEGAL PAGES (Impressum & Datenschutz) ===== */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 5vw 120px;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 50px 0 20px;
  color: var(--white);
  position: relative;
  padding-left: 24px;
}
.legal-content h2::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 2px;
  transform: rotate(45deg);
}
.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 32px 0 14px;
  color: var(--accent);
}
.legal-content p, .legal-content li {
  color: var(--grey-1);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-content ul { padding-left: 24px; margin-bottom: 18px; }
.legal-content a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 212, 255, 0.3);
  transition: border-color 0.3s;
}
.legal-content a:hover { border-bottom-color: var(--accent); }
.legal-content strong { color: var(--white); }
.legal-content .info-block {
  background: linear-gradient(180deg, rgba(10, 20, 40, 0.5), rgba(2, 4, 10, 0.5));
  border: 1px solid rgba(30, 144, 255, 0.15);
  border-radius: 16px;
  padding: 28px 32px;
  margin: 24px 0;
}
.legal-content .info-block p:last-child { margin-bottom: 0; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 999;
  box-shadow:
    0 8px 24px rgba(37, 211, 102, 0.4),
    0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: whatsappPulse 2.5s infinite;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(-8deg);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  animation-play-state: paused;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float::before {
  content: 'WhatsApp Chat';
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--black);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  border: 1px solid rgba(37, 211, 102, 0.4);
}

.whatsapp-float:hover::before {
  opacity: 1;
}

@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
  }
  .whatsapp-float::before { display: none; }
}
