/* ===========================================
   NFB Deutschland - Großhandel für Hygienemarkt
   Premium Design mit Hygiene-Effekten
   =========================================== */

/* CSS Variablen für NFB Farbschema */
:root {
  --primary-color: #0077B6;
  --primary-dark: #005f92;
  --primary-light: #0096c7;
  --accent-color: #00B4D8;
  --accent-light: #90E0EF;
  --accent-ultra-light: #CAF0F8;
  --text-dark: #1a365d;
  --text-light: #4a5568;
  --bg-light: #f0f9ff;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #0077B6 0%, #00B4D8 50%, #90E0EF 100%);
  --gradient-hero: linear-gradient(135deg, #023e8a 0%, #0077b6 25%, #0096c7 50%, #00b4d8 75%, #48cae4 100%);
  --shadow-soft: 0 4px 20px rgba(0, 119, 182, 0.15);
  --shadow-medium: 0 8px 30px rgba(0, 119, 182, 0.2);
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  background: var(--white);
  min-height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: -webkit-fill-available;
  position: relative;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Smooth Scroll & iOS Fix */
html {
  scroll-behavior: smooth;
  height: 100%;
  min-height: 100%;
  min-height: -webkit-fill-available;
  background: linear-gradient(135deg, #023e8a 0%, #0077b6 50%, #0096c7 100%);
}

html::before {
  content: '';
  position: fixed;
  top: -100px;
  left: 0;
  right: 0;
  bottom: -100px;
  background: linear-gradient(135deg, #023e8a 0%, #0077b6 50%, #0096c7 100%);
  z-index: -1;
}

/* ==========================================
   WASSER-WELLEN ANIMATION (Header & Footer)
   ========================================== */
.wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  overflow: hidden;
  z-index: 3;
  pointer-events: none;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C150,120 350,0 600,60 C850,120 1050,0 1200,60 L1200,120 L0,120 Z' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: 50% 100%;
  animation: waveMove 8s linear infinite;
}

.wave:nth-child(1) {
  opacity: 1;
  bottom: 0;
  animation-delay: 0s;
}

.wave:nth-child(2) {
  opacity: 0.6;
  bottom: 10px;
  animation: waveMove 12s linear infinite reverse;
  animation-delay: -2s;
}

.wave:nth-child(3) {
  opacity: 0.3;
  bottom: 20px;
  animation: waveMove 15s linear infinite;
  animation-delay: -4s;
}

@keyframes waveMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Schaum/Foam Effekt am Rand */
.wave-foam {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
  animation: foamPulse 3s ease-in-out infinite;
}

@keyframes foamPulse {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 0.6; transform: translateY(-5px); }
}

/* ==========================================
   BLASEN/BUBBLES ANIMATION
   ========================================== */
.bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.bubble {
  position: absolute;
  bottom: -100px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
  border-radius: 50%;
  opacity: 0.6;
  animation: rise 10s infinite ease-in;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.5);
}

.bubble:nth-child(1) { width: 40px; height: 40px; left: 10%; animation-duration: 8s; animation-delay: 0s; }
.bubble:nth-child(2) { width: 20px; height: 20px; left: 20%; animation-duration: 12s; animation-delay: 1s; }
.bubble:nth-child(3) { width: 50px; height: 50px; left: 35%; animation-duration: 10s; animation-delay: 2s; }
.bubble:nth-child(4) { width: 80px; height: 80px; left: 50%; animation-duration: 15s; animation-delay: 0s; }
.bubble:nth-child(5) { width: 35px; height: 35px; left: 55%; animation-duration: 9s; animation-delay: 3s; }
.bubble:nth-child(6) { width: 45px; height: 45px; left: 65%; animation-duration: 11s; animation-delay: 2s; }
.bubble:nth-child(7) { width: 25px; height: 25px; left: 75%; animation-duration: 13s; animation-delay: 4s; }
.bubble:nth-child(8) { width: 60px; height: 60px; left: 85%; animation-duration: 14s; animation-delay: 1s; }
.bubble:nth-child(9) { width: 30px; height: 30px; left: 90%; animation-duration: 10s; animation-delay: 3s; }
.bubble:nth-child(10) { width: 55px; height: 55px; left: 5%; animation-duration: 12s; animation-delay: 5s; }

@keyframes rise {
  0% {
    bottom: -100px;
    transform: translateX(0) scale(1);
    opacity: 0.6;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    bottom: 110%;
    transform: translateX(-50px) scale(0.5);
    opacity: 0;
  }
}

/* ==========================================
   WASSERTROPFEN ANIMATION
   ========================================== */
.water-drop {
  position: relative;
  display: inline-block;
}

.water-drop::after {
  content: '💧';
  position: absolute;
  top: -10px;
  right: -15px;
  font-size: 1.2rem;
  animation: droplet 2s ease-in-out infinite;
}

@keyframes droplet {
  0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
  50% { transform: translateY(5px) scale(0.9); opacity: 0.7; }
}

/* ==========================================
   GLANZ/SHINE EFFEKT
   ========================================== */
.shine-effect {
  position: relative;
  overflow: hidden;
}

.shine-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-25deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  20%, 100% { left: 150%; }
}

/* ==========================================
   SPARKLE/GLITZER EFFEKT
   ========================================== */
.sparkle {
  position: relative;
}

.sparkle::before,
.sparkle::after {
  content: '✨';
  position: absolute;
  animation: sparkle 2s ease-in-out infinite;
}

.sparkle::before {
  top: -5px;
  left: -10px;
  animation-delay: 0s;
}

.sparkle::after {
  bottom: -5px;
  right: -10px;
  animation-delay: 1s;
}

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 1; transform: scale(1); }
}

/* ==========================================
   HEADER
   ========================================== */
header {
  background: rgba(255, 255, 255, 0.95);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem clamp(16px, 4vw, 48px);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.logo-container {
  display: flex;
  align-items: center;
  margin-left: -20px;
}

.nav-logo {
  height: 100px;
  width: auto;
  margin-right: 15px;
  margin-top: -20px;
  margin-bottom: -20px;
  filter: drop-shadow(0 4px 8px rgba(0, 119, 182, 0.3));
  transition: transform 0.3s ease;
  object-fit: contain;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.6rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  display: block;
}

.nav-links a:hover {
  color: var(--white);
  background: var(--gradient-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
}

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.burger div {
  width: 28px;
  height: 3px;
  background: var(--primary-color);
  margin: 4px;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.burger.active .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.active .line2 {
  opacity: 0;
}

.burger.active .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  background: url('startseite.jpg') no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

.hero.hero-subpage {
  min-height: 70vh;
  background: var(--gradient-hero);
}

.hero.hero-grosshandel {
  background: url('grosshandel-hero.jpg') no-repeat center center;
  background-size: cover;
}

.hero.hero-transport {
  background: url('transport-hero.jpg') no-repeat center center;
  background-size: cover;
}

.hero.hero-kontakt {
  background: url('kontakt-hero.jpg') no-repeat center center;
  background-size: cover;
}

/* Dunkler Overlay über dem Bild für bessere Lesbarkeit */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 35, 82, 0.7) 0%, rgba(0, 119, 182, 0.5) 100%);
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='2' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E");
  background-size: 30px 30px;
  animation: float 20s linear infinite;
  opacity: 0.5;
}

@keyframes float {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-20px) translateX(10px); }
  100% { transform: translateY(0) translateX(0); }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 20px;
  margin-top: 80px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  line-height: 1.5;
  animation: fadeInUp 1s ease-out 0.6s both;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--white);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out 0.9s both;
  position: relative;
  overflow: hidden;
  z-index: 10;
  cursor: pointer;
}

.hero .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 119, 182, 0.1), transparent);
  transition: left 0.5s ease;
}

.hero .btn:hover::before {
  left: 100%;
}

.hero .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  background: var(--accent-ultra-light);
}

/* Hero mit Hintergrundbild */
.leistungen-hero, .contact-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  background: var(--gradient-hero);
  overflow: hidden;
}

.contact-hero.hero-kontakt {
  background: url('kontakt-hero.jpg') no-repeat center center;
  background-size: cover;
}

.contact-hero.hero-kontakt::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 119, 182, 0.6);
  z-index: 1;
}

.leistungen-hero .hero-content,
.contact-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  margin-top: 80px;
}

.leistungen-hero .hero-content h1,
.contact-hero .hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.leistungen-hero .hero-content p,
.contact-hero .hero-content p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   ÜBER UNS SECTION
   ========================================== */
.about {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.about-image {
  flex: 1;
  max-width: 45%;
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
  transition: transform 0.3s ease;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.2;
}

/* ==========================================
   FEATURES/VORTEILE SECTION
   ========================================== */
.features {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='20' cy='20' r='1.5' fill='%230077B6' opacity='0.1'/%3E%3Ccircle cx='80' cy='40' r='1' fill='%2300B4D8' opacity='0.1'/%3E%3Ccircle cx='40' cy='80' r='2' fill='%2390E0EF' opacity='0.1'/%3E%3C/svg%3E");
  background-size: 100px 100px;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
  display: inline-block;
  text-align: left;
}

.feature-list li {
  padding: 0.5rem 0;
  padding-left: 1.8rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.about-list li {
  padding: 0.6rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-list li i {
  color: var(--accent-color);
  width: 20px;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 119, 182, 0.3);
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ==========================================
   STATISTIKEN/ZAHLEN SECTION
   ========================================== */
.stats {
  padding: 5rem 2rem;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 300;
}

/* ==========================================
   LEISTUNGEN CONTENT
   ========================================== */
.leistungen-content {
  padding: 5rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.leistungen-container {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.leistungen-container h2 {
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
}

.leistungen-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light);
}

.leistungen-text h3 {
  color: var(--primary-color);
  margin: 2.5rem 0 1.2rem;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.leistungen-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.leistungen-text ul li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid rgba(0, 119, 182, 0.1);
  transition: all 0.3s ease;
}

.leistungen-text ul li:hover {
  padding-left: 2.5rem;
  background: var(--bg-light);
  border-radius: 8px;
}

.leistungen-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.2rem;
}

/* ==========================================
   KONTAKT SECTION
   ========================================== */
.contact {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.contact-info p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.contact-info a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.contact-info a:hover {
  color: var(--accent-color);
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.contact-info ul li {
  padding: 0.5rem 0;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.contact-detail:hover {
  transform: translateX(5px);
}

.contact-detail-icon {
  min-width: 50px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  min-height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

#maps-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--bg-light);
  padding: 2rem;
  text-align: center;
}

#maps-placeholder button {
  padding: 12px 24px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

#maps-placeholder button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Kontaktformular */
.contact-form-container {
  max-width: 600px;
  margin: 3rem auto 0;
  padding: 2.5rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.contact-form-container h2 {
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.1);
}

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

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 119, 182, 0.3);
}

/* ==========================================
   IMPRESSUM & DATENSCHUTZ
   ========================================== */
.impressum {
  padding: 5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 80px;
}

.impressum-container {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.impressum h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.impressum h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.impressum h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.impressum p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.impressum a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.impressum a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.impressum ul {
  list-style: none;
  padding: 0;
}

.impressum ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
}

.impressum ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
  background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
  color: var(--white);
  text-align: center;
  padding: 2.5rem;
  margin-top: 0;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
}

footer p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

footer a {
  color: var(--accent-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

footer .credits {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 1rem;
}

/* ==========================================
   LADEANIMATION
   ========================================== */
#loading-animation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: -webkit-fill-available;
  background: var(--gradient-hero);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  /* Statt CSS-Animation übernimmt JavaScript das Ausblenden,
     um Flackern beim Seiten-Neuladung zu vermeiden. */
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.loading-content {
  text-align: center;
  position: relative;
}

.nav-logo-animation {
  height: 120px;
  width: auto;
  animation: logoFloat 2s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.loading-text {
  color: var(--white);
  font-size: 1.2rem;
  margin-top: 1.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ==========================================
   FLOATING BUTTONS (WhatsApp & Call)
   ========================================== */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 1000;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: fadeIn 0.5s ease-out 2s both;
  text-decoration: none;
}

.whatsapp-btn img {
  width: 35px;
  height: 35px;
}

.whatsapp-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.call-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  background: var(--gradient-primary);
  border-radius: 30px;
  padding: 0 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0, 119, 182, 0.4);
  transition: all 0.3s ease;
  animation: fadeIn 0.5s ease-out 2s both;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  height: 55px;
  white-space: nowrap;
}

.call-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 119, 182, 0.5);
}

.call-btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(0, 180, 216, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 180, 216, 0); }
}

/* ==========================================
   COOKIE BANNER
   ========================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.98) 0%, rgba(45, 55, 72, 0.98) 100%);
  color: white;
  z-index: 9999;
  padding: 25px;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
  display: none;
  backdrop-filter: blur(10px);
  animation: slideUp 0.5s ease-out;
}

.cookie-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.cookie-content h2 {
  color: var(--accent-light);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.cookie-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  line-height: 1.6;
}

.cookie-content a {
  color: var(--accent-light);
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.cookie-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  cursor: pointer;
  font-size: 0.95rem;
}

.cookie-options input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--accent-color);
  cursor: pointer;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 12px 28px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
}

#accept-cookies {
  background: var(--gradient-primary);
  color: white;
}

#accept-cookies:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 180, 216, 0.4);
}

#reject-cookies {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

#reject-cookies:hover {
  background: rgba(255, 255, 255, 0.2);
}

#save-cookies {
  background: transparent;
  color: var(--accent-light);
  border: 1px solid var(--accent-light);
}

#save-cookies:hover {
  background: var(--accent-light);
  color: var(--text-dark);
}

/* ==========================================
   ANIMATIONEN
   ========================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  0% { opacity: 1; }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Scroll-Animation für Elemente */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Große Bildschirme (ab 1600px) */
@media (min-width: 1600px) {
  nav {
    max-width: 1800px;
    padding: 0.5rem clamp(48px, 5vw, 100px);
  }
  
  .logo-container {
    margin-left: -40px;
  }
}

/* Sehr große Bildschirme (ab 2000px) */
@media (min-width: 2000px) {
  nav {
    max-width: 2200px;
    padding: 0.5rem 120px;
  }
  
  .logo-container {
    margin-left: -60px;
  }
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    position: absolute;
    top: 100%;
    left: 0;
    padding: 1.5rem;
    z-index: 1001;
    border-top: 1px solid rgba(0, 119, 182, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    gap: 0;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(0, 119, 182, 0.1);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 1rem;
    border-radius: 0;
  }

  .nav-links a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    box-shadow: none;
    transform: none;
  }
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .about-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-image {
    max-width: 80%;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .map-container {
    min-height: 300px;
    max-width: 100%;
  }

  /* Kontakt-Bereich auf Mobile anpassen */
  .contact {
    padding: 3rem 1rem;
  }

  .contact-info {
    padding: 1.5rem;
    max-width: 100%;
    overflow: hidden;
  }

  .contact-detail {
    padding: 0.8rem;
    align-items: center;
  }

  .contact-detail-icon {
    min-width: 40px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    flex-shrink: 0;
  }

  .contact-detail > div:last-child {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .whatsapp-btn {
    width: 55px;
    height: 55px;
    bottom: 20px;
    left: 20px;
  }

  .call-btn {
    bottom: 20px;
    right: 20px;
    padding: 0 18px;
    font-size: 0.85rem;
    height: 50px;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }

  /* Hero Subpage (Großhandel, Kontakt) auf Tablets größer machen */
  .hero.hero-subpage,
  .contact-hero,
  .leistungen-hero {
    min-height: 60vh;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 0 15px;
  }

  .hero .btn {
    padding: 14px 28px;
    font-size: 1rem;
  }

  /* Hero Subpage (Großhandel, Kontakt) auf Mobile größer machen */
  .hero.hero-subpage,
  .contact-hero,
  .leistungen-hero {
    min-height: 65vh;
  }

  /* Kontakt-Bereich auf kleinsten Bildschirmen */
  .contact {
    padding: 2.5rem 0.75rem;
  }

  .contact-info {
    padding: 1.25rem;
  }

  .contact-detail {
    padding: 0.75rem;
    gap: 0.75rem;
    align-items: center;
  }

  .contact-detail-icon {
    min-width: 36px;
    width: 36px;
    height: 36px;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .contact-info h2 {
    font-size: 1.3rem;
  }

  .about {
    padding: 4rem 1rem;
  }

  .features {
    padding: 4rem 1rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .impressum-container,
  .leistungen-container,
  .contact-form-container {
    padding: 2rem 1.5rem;
  }

  .bubble:nth-child(4) { width: 50px; height: 50px; }
  .bubble:nth-child(8) { width: 40px; height: 40px; }
}

/* ==========================================
   PARTNER & LÄNDER SEKTION
   ========================================== */
.country-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.25) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.partners-section a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3) !important;
}

/* CSS Flaggen */
.flag {
  width: 60px;
  height: 40px;
  border-radius: 6px;
  margin: 0 auto 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  overflow: hidden;
  position: relative;
}

/* Deutschland - Schwarz Rot Gold (horizontal) */
.flag-de {
  background: linear-gradient(to bottom, #000000 33.33%, #DD0000 33.33%, #DD0000 66.66%, #FFCC00 66.66%);
}

/* Österreich - Rot Weiß Rot (horizontal) */
.flag-at {
  background: linear-gradient(to bottom, #ED2939 33.33%, #FFFFFF 33.33%, #FFFFFF 66.66%, #ED2939 66.66%);
}

/* Schweiz - Rot mit weißem Kreuz */
.flag-ch {
  background: #FF0000;
}
.flag-ch::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 20%;
  background: white;
}
.flag-ch::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20%;
  height: 60%;
  background: white;
}

/* Niederlande - Rot Weiß Blau (horizontal) */
.flag-nl {
  background: linear-gradient(to bottom, #AE1C28 33.33%, #FFFFFF 33.33%, #FFFFFF 66.66%, #21468B 66.66%);
}

/* Belgien - Schwarz Gelb Rot (vertikal) */
.flag-be {
  background: linear-gradient(to right, #000000 33.33%, #FAE042 33.33%, #FAE042 66.66%, #ED2939 66.66%);
}

/* Frankreich - Blau Weiß Rot (vertikal) */
.flag-fr {
  background: linear-gradient(to right, #002395 33.33%, #FFFFFF 33.33%, #FFFFFF 66.66%, #ED2939 66.66%);
}

/* Polen - Weiß Rot (horizontal) */
.flag-pl {
  background: linear-gradient(to bottom, #FFFFFF 50%, #DC143C 50%);
}

/* Tschechien - Weiß Rot mit blauem Dreieck */
.flag-cz {
  background: linear-gradient(to bottom, #FFFFFF 50%, #D7141A 50%);
}
.flag-cz::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 30px solid #11457E;
}

/* Türkei - wird als SVG in HTML eingebettet */
.flag-tr {
  background: #E30A17;
}

/* Barrierefreiheit */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .bubble {
    display: none;
  }
}

/* Force Mobile Navigation */
body.force-mobile .nav-links {
  display: none;
  flex-direction: column;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  position: absolute;
  top: 100%;
  left: 0;
  padding: 1.5rem;
  z-index: 1001;
}

body.force-mobile .nav-links.active {
  display: flex;
}

body.force-mobile .burger {
  display: flex;
}
