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

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  overflow-x: hidden;
  background: #ffffff;
  opacity: 0;
  animation: fadeInPage 0.8s ease-in forwards;
}

@keyframes fadeInPage {
  to {
    opacity: 1;
  }
}

/* Page Load Animations */

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navigation */

nav {
  position: fixed;
  top: 2rem;
  left: 0;
  right: 0;
  z-index: 1000;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeInDown 0.6s ease 0.3s forwards;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 300;
  color: #1a1a1a;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  padding-right: 3rem;
  margin-right: 3rem;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

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

.nav-links a {
  color: #666;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #1a1a1a;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Mobile Menu Toggle */

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

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: #1a1a1a;
  transition: all 0.3s ease;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Animierte Partikel im Hintergrund */

.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: radial-gradient(circle, #d4af37 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s infinite ease-in-out;
  opacity: 0;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  50% {
    transform: translateY(-100vh) translateX(50px) scale(1.5);
    opacity: 0.4;
  }
  90% {
    opacity: 0.2;
  }
}

/* Hauptinhalt */

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  max-width: 1200px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

.logo {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeInDown 1.2s ease forwards;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.1;
  opacity: 0;
  animation: fadeInUp 1.2s ease 0.3s forwards;
  position: relative;
  font-family: 'Montserrat', sans-serif;
}

.highlight {
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4af37 0%, #f4e5c3 100%);
  animation: expandLine 1.5s ease 1s forwards;
}

@keyframes expandLine {
  to {
    width: 100%;
  }
}

.subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #444;
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  opacity: 0;
  animation: fadeInUp 1.2s ease 0.6s forwards;
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif;
}

.description {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: #666;
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 0.3px;
  opacity: 0;
  animation: fadeInUp 1.2s ease 0.75s forwards;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Montserrat', sans-serif;
}

.cta-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1.2s ease 0.9s forwards;
}

.btn {
  padding: 1.2rem 3rem;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.btn-primary {
  background: #1a1a1a;
  color: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
}

.btn-secondary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #1a1a1a;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.btn-secondary:hover::after {
  width: 300%;
  height: 400%;
}

.btn-secondary:hover {
  color: #ffffff;
  border-color: #1a1a1a;
}

/* Diamant-Animation */

.diamond {
  position: absolute;
  width: 120px;
  height: 120px;
  top: 20%;
  right: 15%;
  opacity: 0;
  animation: diamondFloat 3s ease 1.5s forwards, rotate 20s linear 2s infinite;
}

.diamond-shape {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #e0e0e0 100%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
}

.diamond-shape::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.6) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes diamondFloat {
  to {
    opacity: 0.6;
  }
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.5;
  }
}

/* Scroll-Indikator */

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeIn 1.5s ease 2s forwards;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, #d4af37, transparent);
  margin: 0 auto 1rem;
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: #d4af37;
  animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(60px);
    opacity: 0;
  }
}

.scroll-text {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

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

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

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

/* Services Section */

.services {
  padding: 6rem 2rem;
  background: #ffffff;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 5rem;
}

.services-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

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

.service-card {
  background: #fafafa;
  padding: 3rem 2.5rem;
  border-radius: 0;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #d4af37 0%, #f4e5c3 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.service-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
}

.service-card-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: transparent;
  color: #1a1a1a;
  border: 1px solid #d4af37;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #d4af37;
  transition: left 0.3s ease;
  z-index: -1;
}

.service-btn:hover::before {
  left: 0;
}

.service-btn:hover {
  color: #ffffff;
  border-color: #d4af37;
}

/* Story Section */

.story {
  padding: 6rem 2rem;
  background: #f5f5f5;
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.story-content {
  padding: 2rem 0;
}

.story-label {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 1.5rem;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

.story-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 2rem;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.3;
}

.story-text {
  font-size: 1rem;
  line-height: 1.9;
  color: #666;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1.5rem;
}

.story-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: transparent;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.story-btn:hover {
  background: #1a1a1a;
  color: #ffffff;
}

/* Testimonials Section */

.testimonials {
  padding: 6rem 2rem;
  background: #ffffff;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.testimonials-label {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 1rem;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

.testimonials-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: #1a1a1a;
  font-family: 'Montserrat', sans-serif;
}

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

.testimonial-card {
  background: #fafafa;
  padding: 3rem 2.5rem;
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4af37 0%, #f4e5c3 100%);
  transition: width 0.4s ease;
}

.testimonial-card:hover::before {
  width: 100%;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.9;
  color: #666;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  font-family: 'Montserrat', sans-serif;
  text-align: right;
}

/* Vermittlung Section */

.vermittlung {
  padding: 6rem 2rem;
  background: #fafafa;
}

.vermittlung-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.vermittlung-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 2rem;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.vermittlung-text {
  font-size: 1rem;
  line-height: 1.9;
  color: #666;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1.5rem;
}

.vermittlung-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.vermittlung-btn {
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: transparent;
  color: #1a1a1a;
  border: 2px solid #d4af37;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.vermittlung-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #d4af37;
  transition: left 0.3s ease;
  z-index: -1;
}

.vermittlung-btn:hover::before {
  left: 0;
}

.vermittlung-btn:hover {
  color: #ffffff;
  border-color: #d4af37;
}

/* Locations Section */

.locations {
  padding: 6rem 2rem;
  background: #ffffff;
}

.locations-container {
  max-width: 1200px;
  margin: 0 auto;
}

.locations-subtitle {
  font-size: 0.9rem;
  font-weight: 400;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.locations-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 4rem;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 4rem;
}

.location-card {
  background: #fafafa;
  padding: 3rem;
  border-left: 3px solid #d4af37;
  transition: all 0.3s ease;
}

.location-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.location-name {
  font-size: 1.5rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 2rem;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.location-icon {
  width: 24px;
  height: 24px;
  color: #d4af37;
  flex-shrink: 0;
}

.location-detail {
  display: flex;
  flex-direction: column;
}

.location-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
  font-family: 'Montserrat', sans-serif;
}

.location-value {
  font-size: 1rem;
  font-weight: 300;
  color: #1a1a1a;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
}

.location-value a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.location-value a:hover {
  color: #d4af37;
}

.location-map {
  margin-top: 2rem;
  width: 100%;
  height: 250px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Edelmetall Section */

.edelmetall {
  padding: 12rem 2rem 8rem;
  background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
  position: relative;
  overflow: hidden;
}

.edelmetall::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #d4af37 50%, transparent 100%);
}

.edelmetall-container {
  max-width: 1200px;
  margin: 0 auto;
}

.edelmetall-header {
  text-align: center;
  margin-bottom: 5rem;
}

.edelmetall-label {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 1.5rem;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

.edelmetall-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 2rem;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.edelmetall-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
  max-width: 800px;
  margin: 0 auto;
}

.edelmetall-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 5rem;
}

.edelmetall-feature {
  background: #ffffff;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
  border-top: 3px solid transparent;
}

.edelmetall-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-top-color: #d4af37;
}

.edelmetall-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  color: #d4af37;
}

.edelmetall-feature-title {
  font-size: 1.3rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.edelmetall-feature-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #666;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
}

.edelmetall-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.edelmetall-cta-title {
  font-size: 1.8rem;
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.edelmetall-cta-text {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

.edelmetall-btn {
  padding: 1.2rem 3.5rem;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: #1a1a1a;
  color: #ffffff;
  border: 2px solid #1a1a1a;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.edelmetall-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #d4af37;
  transition: left 0.3s ease;
  z-index: -1;
}

.edelmetall-btn:hover::before {
  left: 0;
}

.edelmetall-btn:hover {
  border-color: #d4af37;
  color: #ffffff;
}

/* Beratung Section */

.beratung {
  padding: 12rem 2rem 8rem;
  background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
  position: relative;
  overflow: hidden;
}

.beratung::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #d4af37 50%, transparent 100%);
}

.beratung-container {
  max-width: 1200px;
  margin: 0 auto;
}

.beratung-header {
  text-align: center;
  margin-bottom: 5rem;
}

.beratung-subtitle {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 1.5rem;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

.beratung-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 2rem;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.beratung-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
  max-width: 800px;
  margin: 0 auto;
}

.beratung-content {
  background: #ffffff;
  padding: 4rem 3.5rem;
  margin-bottom: 5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.beratung-text {
  font-size: 1rem;
  line-height: 1.9;
  color: #666;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1.8rem;
}

.beratung-text:last-of-type {
  margin-bottom: 0;
}

.beratung-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 5rem;
}

.beratung-feature {
  background: #ffffff;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
  border-top: 3px solid transparent;
}

.beratung-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-top-color: #d4af37;
}

.beratung-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  color: #d4af37;
}

.beratung-feature-title {
  font-size: 1.3rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.beratung-feature-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #666;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
}

.beratung-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.beratung-cta-title {
  font-size: 1.8rem;
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.beratung-cta-text {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

.beratung-btn {
  padding: 1.2rem 3.5rem;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: #1a1a1a;
  color: #ffffff;
  border: 2px solid #1a1a1a;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.beratung-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #d4af37;
  transition: left 0.3s ease;
  z-index: -1;
}

.beratung-btn:hover::before {
  left: 0;
}

.beratung-btn:hover {
  border-color: #d4af37;
  color: #ffffff;
}

/* Geschichte Section */

.geschichte {
  padding: 12rem 2rem 8rem;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.geschichte::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #d4af37 50%, transparent 100%);
}

.geschichte-container {
  max-width: 1200px;
  margin: 0 auto;
}

.geschichte-header {
  text-align: center;
  margin-bottom: 5rem;
}

.geschichte-subtitle {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 1.5rem;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

.geschichte-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 2rem;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.geschichte-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
  max-width: 800px;
  margin: 0 auto;
}

.geschichte-content {
  background: #ffffff;
  padding: 5rem 4rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  margin-bottom: 5rem;
}

.geschichte-text {
  font-size: 1rem;
  line-height: 1.9;
  color: #666;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1.8rem;
  text-align: center;
}

.geschichte-text:last-of-type {
  margin-bottom: 0;
}

.geschichte-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 5rem;
}

.timeline-item {
  background: #ffffff;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
  border-top: 3px solid transparent;
  position: relative;
}

.timeline-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-top-color: #d4af37;
}

.timeline-year {
  font-size: 2.5rem;
  font-weight: 300;
  color: #d4af37;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.timeline-title {
  font-size: 1.2rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #666;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
}

.geschichte-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: #f5f5f5;
  border-radius: 8px;
}

.geschichte-cta-title {
  font-size: 1.8rem;
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.geschichte-cta-text {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

.geschichte-btn {
  padding: 1.2rem 3.5rem;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: #1a1a1a;
  color: #ffffff;
  border: 2px solid #1a1a1a;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.geschichte-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #d4af37;
  transition: left 0.3s ease;
  z-index: -1;
}

.geschichte-btn:hover::before {
  left: 0;
}

.geschichte-btn:hover {
  border-color: #d4af37;
  color: #ffffff;
}

/* Reparatur Section */

.reparatur {
  padding: 12rem 2rem 8rem;
  background: linear-gradient(135deg, #f8f8f8 0%, #fafafa 100%);
  position: relative;
  overflow: hidden;
}

.reparatur::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #d4af37 50%, transparent 100%);
}

.reparatur-container {
  max-width: 1200px;
  margin: 0 auto;
}

.reparatur-header {
  text-align: center;
  margin-bottom: 5rem;
}

.reparatur-subtitle {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 1.5rem;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

.reparatur-title {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 2rem;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.reparatur-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
  max-width: 900px;
  margin: 0 auto;
}

.reparatur-content {
  background: #ffffff;
  padding: 4rem 3.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  margin-bottom: 5rem;
}

.reparatur-text {
  font-size: 1rem;
  line-height: 1.9;
  color: #666;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1.8rem;
  text-align: center;
}

.reparatur-text:last-of-type {
  margin-bottom: 0;
}

.reparatur-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 5rem;
}

.reparatur-service {
  background: #ffffff;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
  border-top: 3px solid transparent;
}

.reparatur-service:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-top-color: #d4af37;
}

.reparatur-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  color: #d4af37;
}

.reparatur-service-title {
  font-size: 1.3rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reparatur-service-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #666;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
}

.reparatur-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.reparatur-cta-title {
  font-size: 1.8rem;
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.reparatur-cta-text {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

.reparatur-btn {
  padding: 1.2rem 3.5rem;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: #1a1a1a;
  color: #ffffff;
  border: 2px solid #1a1a1a;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.reparatur-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #d4af37;
  transition: left 0.3s ease;
  z-index: -1;
}

.reparatur-btn:hover::before {
  left: 0;
}

.reparatur-btn:hover {
  border-color: #d4af37;
  color: #ffffff;
}

/* Reinigung Section */

.reinigung {
  padding: 12rem 2rem 8rem;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  position: relative;
  overflow: hidden;
}

.reinigung::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #d4af37 50%, transparent 100%);
}

.reinigung-container {
  max-width: 1200px;
  margin: 0 auto;
}

.reinigung-header {
  text-align: center;
  margin-bottom: 5rem;
}

.reinigung-subtitle {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 1.5rem;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

.reinigung-title {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 2rem;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.reinigung-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
  max-width: 900px;
  margin: 0 auto;
}

.reinigung-content {
  background: #ffffff;
  padding: 4rem 3.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  margin-bottom: 5rem;
}

.reinigung-text {
  font-size: 1rem;
  line-height: 1.9;
  color: #666;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1.8rem;
  text-align: center;
}

.reinigung-text:last-of-type {
  margin-bottom: 0;
}

.reinigung-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 5rem;
}

.reinigung-benefit {
  background: #ffffff;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
  border-top: 3px solid transparent;
}

.reinigung-benefit:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-top-color: #d4af37;
}

.reinigung-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  color: #d4af37;
}

.reinigung-benefit-title {
  font-size: 1.3rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reinigung-benefit-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #666;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
}

.reinigung-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: #f5f5f5;
  border-radius: 8px;
}

.reinigung-cta-title {
  font-size: 1.8rem;
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.reinigung-cta-text {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

.reinigung-btn {
  padding: 1.2rem 3.5rem;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: #1a1a1a;
  color: #ffffff;
  border: 2px solid #1a1a1a;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.reinigung-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #d4af37;
  transition: left 0.3s ease;
  z-index: -1;
}

.reinigung-btn:hover::before {
  left: 0;
}

.reinigung-btn:hover {
  border-color: #d4af37;
  color: #ffffff;
}

/* Sonderanfertigungen Section */

.sonderanfertigungen {
  padding: 12rem 2rem 8rem;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  position: relative;
}

.sonderanfertigungen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.sonderanfertigungen-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sonderanfertigungen-header {
  text-align: center;
  margin-bottom: 6rem;
}

.sonderanfertigungen-subtitle {
  color: #999;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.sonderanfertigungen-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.sonderanfertigungen-intro {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.sonderanfertigungen-content {
  background: white;
  padding: 4rem;
  border-radius: 2px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  margin-bottom: 5rem;
}

.sonderanfertigungen-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #666;
  margin-bottom: 1.5rem;
}

.sonderanfertigungen-text:last-child {
  margin-bottom: 0;
}

.sonderanfertigungen-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 5rem;
}

.sonderanfertigungen-feature {
  background: white;
  padding: 3rem 2rem;
  border-radius: 2px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid transparent;
}

.sonderanfertigungen-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-top-color: #d4af37;
}

.sonderanfertigungen-icon {
  width: 60px;
  height: 60px;
  color: #d4af37;
  margin-bottom: 1.5rem;
}

.sonderanfertigungen-feature-title {
  font-size: 1.3rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.sonderanfertigungen-feature-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
}

.sonderanfertigungen-cta {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 5rem 3rem;
  border-radius: 2px;
  text-align: center;
  color: white;
}

.sonderanfertigungen-cta-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.sonderanfertigungen-cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.sonderanfertigungen-btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: transparent;
  color: white;
  text-decoration: none;
  border: 2px solid white;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.sonderanfertigungen-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #d4af37;
  transition: left 0.3s ease;
  z-index: -1;
}

.sonderanfertigungen-btn:hover {
  border-color: #d4af37;
  color: white;
}

.sonderanfertigungen-btn:hover::before {
  left: 0;
}

/* Vermittlung Section */

.vermittlung {
  padding: 12rem 2rem 8rem;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  position: relative;
}

.vermittlung::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.vermittlung-container {
  max-width: 1200px;
  margin: 0 auto;
}

.vermittlung-header {
  text-align: center;
  margin-bottom: 6rem;
}

.vermittlung-subtitle {
  color: #999;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.vermittlung-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.vermittlung-intro {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.vermittlung-content {
  background: white;
  padding: 4rem;
  border-radius: 2px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  margin-bottom: 5rem;
  text-align: center;
}

.vermittlung-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #666;
  margin-bottom: 1.5rem;
}

.vermittlung-text:last-child {
  margin-bottom: 0;
}

.vermittlung-cta {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 5rem 3rem;
  border-radius: 2px;
  text-align: center;
  color: white;
}

.vermittlung-cta-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.vermittlung-cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.vermittlung-btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: transparent;
  color: white;
  text-decoration: none;
  border: 2px solid white;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.vermittlung-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #d4af37;
  transition: left 0.3s ease;
  z-index: -1;
}

.vermittlung-btn:hover {
  border-color: #d4af37;
  color: white;
}

.vermittlung-btn:hover::before {
  left: 0;
}

/* Kontakt Section */

.kontakt {
  padding: 12rem 2rem 8rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  position: relative;
  color: white;
}

.kontakt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.kontakt-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.kontakt-header {
  margin-bottom: 6rem;
}

.kontakt-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.kontakt-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  color: white;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.kontakt-intro {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.kontakt-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.kontakt-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 3.5rem;
  background: transparent;
  color: white;
  text-decoration: none;
  border: 2px solid white;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-size: 1rem;
}

.kontakt-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #d4af37;
  transition: left 0.3s ease;
  z-index: -1;
}

.kontakt-btn:hover {
  border-color: #d4af37;
  color: white;
}

.kontakt-btn:hover::before {
  left: 0;
}

.kontakt-btn svg {
  width: 24px;
  height: 24px;
}

.kontakt-info {
  margin-top: 6rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.kontakt-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.kontakt-info-item {
  text-align: center;
}

.kontakt-info-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1.5rem;
  color: #d4af37;
}

.kontakt-info-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.kontakt-info-value {
  font-size: 1.1rem;
  color: white;
  font-weight: 300;
}

.kontakt-info-value a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.kontakt-info-value a:hover {
  color: #d4af37;
}

/* Responsive */

@media (max-width: 968px) {
  nav {
    top: 1rem;
    left: 1rem;
    right: 1rem;
  }
}

@media (max-width: 968px) {
  .nav-container {
    padding: 1rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-radius: 20px;
    width: 100%;
  }
}

@media (max-width: 968px) {
  .nav-logo {
    margin-right: 0;
    margin-bottom: 0;
    padding-right: 0;
    border-right: none;
  }
}

@media (max-width: 968px) {
  .menu-toggle {
    display: flex;
    position: absolute;
    right: 1.5rem;
    top: 1.1rem;
  }
}

@media (max-width: 968px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 968px) {
  .nav-links.active {
    display: flex;
  }
}

@media (max-width: 968px) {
  .nav-links a {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .logo {
    margin-bottom: 2rem;
    letter-spacing: 2px;
    font-size: 0.65rem;
  }
}

@media (max-width: 768px) {
  .subtitle {
    letter-spacing: 0.5px;
  }
}

@media (max-width: 768px) {
  .description {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .cta-container {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .btn {
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .diamond {
    width: 80px;
    height: 80px;
    right: 5%;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .services-header {
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .service-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .story {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .story-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .story-image {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .vermittlung {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .vermittlung-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .vermittlung-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .locations {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .locations-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .location-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .edelmetall {
    padding: 8rem 1.5rem 6rem;
  }
}

@media (max-width: 768px) {
  .edelmetall-header {
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .edelmetall-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .edelmetall-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .edelmetall-feature {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 768px) {
  .edelmetall-cta {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .edelmetall-cta-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .edelmetall-btn {
    padding: 1rem 2.5rem;
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .beratung {
    padding: 8rem 1.5rem 6rem;
  }
}

@media (max-width: 768px) {
  .beratung-header {
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .beratung-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .beratung-content {
    padding: 3rem 2rem;
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .beratung-features {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .beratung-feature {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 768px) {
  .beratung-cta {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .beratung-cta-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .beratung-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .geschichte {
    padding: 8rem 1.5rem 6rem;
  }
}

@media (max-width: 768px) {
  .geschichte-header {
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .geschichte-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .geschichte-content {
    padding: 3rem 2rem;
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .geschichte-timeline {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .timeline-item {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 768px) {
  .timeline-year {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .geschichte-cta {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .geschichte-cta-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .geschichte-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .reparatur {
    padding: 8rem 1.5rem 6rem;
  }
}

@media (max-width: 768px) {
  .reparatur-header {
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .reparatur-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .reparatur-content {
    padding: 3rem 2rem;
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .reparatur-services {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .reparatur-service {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 768px) {
  .reparatur-cta {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .reparatur-cta-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .reparatur-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .reinigung {
    padding: 8rem 1.5rem 6rem;
  }
}

@media (max-width: 768px) {
  .reinigung-header {
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .reinigung-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .reinigung-content {
    padding: 3rem 2rem;
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .reinigung-benefits {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .reinigung-benefit {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 768px) {
  .reinigung-cta {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .reinigung-cta-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .reinigung-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .sonderanfertigungen {
    padding: 8rem 1.5rem 6rem;
  }
}

@media (max-width: 768px) {
  .sonderanfertigungen-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .sonderanfertigungen-content {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .sonderanfertigungen-features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .sonderanfertigungen-feature {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .sonderanfertigungen-cta {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .sonderanfertigungen-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .vermittlung {
    padding: 8rem 1.5rem 6rem;
  }
}

@media (max-width: 768px) {
  .vermittlung-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .vermittlung-content {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .vermittlung-cta {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .vermittlung-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .kontakt {
    padding: 8rem 1.5rem 6rem;
  }
}

@media (max-width: 768px) {
  .kontakt-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .kontakt-buttons {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .kontakt-btn {
    width: 100%;
    max-width: 350px;
    padding: 1.2rem 2rem;
  }
}

@media (max-width: 768px) {
  .kontakt-info-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Footer Section */

.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  color: white;
  padding: 6rem 2rem 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
  text-align: left;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 600;
  color: #d4af37;
  margin-bottom: 1.5rem;
  letter-spacing: 3px;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #d4af37;
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #d4af37;
  transform: translateX(5px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-contact-icon {
  width: 24px;
  height: 24px;
  color: #d4af37;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-info {
  flex: 1;
}

.footer-contact-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
  display: block;
}

.footer-contact-value {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-contact-value a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-value a:hover {
  color: #d4af37;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2rem;
}

.footer-copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-copyright a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-copyright a:hover {
  color: white;
}

.footer-legal {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #d4af37;
}

@media (max-width: 768px) {
  .footer {
    padding: 4rem 1.5rem 2rem;
  }
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-legal {
    justify-content: center;
  }
}

