/* style.css - Zentrale Styles für HECTECH GmbH Website */

:root {
  /* Farbpalette */
  --primary: #000000;      /* Schwarz */
  --secondary: #FFD700;    /* Gelb */
  --light: #ffffff;        /* Weiß */
  --dark: #333333;         /* Dunkelgrau */
  --success: #28a745;      /* Grün für Erfolgsmeldungen */
  --error: #dc3545;        /* Rot für Fehler */
  
  /* Icon-Farben für Services */
  --battery: #B8860B;      /* Dunkelgelb für Akku */
  --water: #1E90FF;        /* Blau für Wasserschaden */
  --charging: #FF8C00;     /* Orange für Ladebuchse */
  --software: #DC143C;     /* Rot für Software */
  
  /* Schriftarten */
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  
  /* Abstände */
  --container-padding: 0 20px;
  --section-padding: 80px 0;
}

/* Basis-Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  color: var(--dark);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ===== HEADER STYLES ===== */
header {
  background: linear-gradient(to right, var(--primary), #1a1a1a);
  color: white;
  padding: 15px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  height: 100px;
  border-radius: 8px;
}

.logo-text h1 {
  font-size: 1.8rem;
  margin-bottom: 5px;
  color: var(--secondary);
}

.logo-text p {
  font-size: 0.9rem;
  opacity: 0.9;
  color: white;
  margin: 0;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Hauptnavigation */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 5px;
  margin: 0;
  padding: 0;
}

.main-nav .nav-link {
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.main-nav .nav-link:hover {
  background: rgba(255, 215, 0, 0.1);
  color: var(--secondary);
}

.main-nav .nav-link.highlight {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 600;
}

.main-nav .nav-link.highlight:hover {
  background: #e6c200;
  transform: translateY(-2px);
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 250px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover {
  background: #f8f9fa;
  color: var(--primary);
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

/* Kontakt Header */
.contact-header {
  display: flex;
  gap: 15px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 20px;
  background: rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.contact-link:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

.contact-link.whatsapp {
  background: rgba(37, 211, 102, 0.2);
}

.contact-link.whatsapp:hover {
  background: rgba(37, 211, 102, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 4px;
  padding: 10px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--primary);
  z-index: 1001;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-header h3 {
  color: var(--secondary);
  margin: 0;
}

.mobile-close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-list {
  list-style: none;
  padding: 20px;
  margin: 0;
}

.mobile-nav-list li {
  margin-bottom: 10px;
}

.mobile-nav-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  padding: 12px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-nav-list a:hover {
  background: rgba(255,255,255,0.1);
}

.mobile-highlight {
  background: var(--secondary) !important;
  color: var(--primary) !important;
  font-weight: 600;
}

.mobile-dropdown-toggle {
  justify-content: space-between !important;
}

.mobile-dropdown-menu {
  list-style: none;
  padding-left: 20px;
  margin: 10px 0;
  display: none;
}

.mobile-dropdown-menu.active {
  display: block;
}

.mobile-dropdown-menu a {
  padding: 10px 15px;
  font-size: 0.9rem;
}

.mobile-contact-info {
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-contact-info h4 {
  color: var(--secondary);
  margin-bottom: 15px;
}

.mobile-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.mobile-contact-link:hover {
  color: var(--secondary);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== MAIN CONTENT ===== */
main {
  flex: 1;
  padding: 40px 0;
}

/* Hero Section */
.hero {
  padding: var(--section-padding);
  text-align: center;
  background: url('https://images.unsplash.com/photo-1556655848-f3a79cc6d4a6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
  position: relative;
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-button {
  display: inline-block;
  padding: 14px 32px;
  background: var(--secondary);
  color: var(--primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.2rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--secondary);
}

.page-title {
  text-align: center;
  margin-bottom: 40px;
}

.page-title h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.page-title p {
  font-size: 1.2rem;
  color: var(--dark);
  max-width: 700px;
  margin: 0 auto;
}

/* Services Section */
.services {
  padding: var(--section-padding);
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--light);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  border: 1px solid #e0e0e0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark);
}

/* Spezifische Icon-Farben */
.icon-display {
  color: var(--primary);
}

.icon-battery {
  color: var(--battery);
}

.icon-water {
  color: var(--water);
}

.icon-charging {
  color: var(--charging);
}

.icon-software {
  color: var(--software);
}

.icon-accessories {
  color: var(--success);
}

/* Why Choose Us Section */
.why-us {
  padding: 80px 0;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--light);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.feature-card p {
  color: var(--dark);
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: var(--section-padding);
  background: #f5f5f5;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.contact-info {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border: 1px solid #e0e0e0;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary);
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 10px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-icon {
  font-size: 1.2rem;
  color: var(--primary);
  margin-right: 15px;
  margin-top: 5px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.info-icon {
  font-size: 1.2rem;
  color: var(--primary);
  margin-right: 15px;
  margin-top: 5px;
  min-width: 20px;
}

/* Buttons */
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 25px;
  background: var(--success);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  background: #219e3d;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(33, 158, 61, 0.3);
}

/* Map Section */
.map {
  padding: 0 0 80px;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 400px;
  border: 1px solid #e0e0e0;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Formulare */
.appointment-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.form-container {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border: 1px solid #e0e0e0;
}

.form-container h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary);
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 10px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark);
}

.form-group label::after {
  content: " *";
  color: var(--error);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.time-slot {
  display: flex;
  align-items: center;
  gap: 8px;
}

.time-slot input {
  width: auto;
}

.time-slot label {
  margin: 0;
  font-weight: normal;
}

.submit-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.submit-btn:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.info-box {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border: 1px solid #e0e0e0;
  height: fit-content;
}

.required-note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 20px;
  text-align: center;
}

.required-note span {
  color: var(--error);
}

/* Rechtliche Seiten */
.legal-container {
  background: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 40px;
}

.legal-container h1 {
  color: var(--primary);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--secondary);
}

.legal-container h2 {
  color: var(--primary);
  margin: 30px 0 15px;
  font-size: 1.5rem;
}

.legal-container h3 {
  color: var(--dark);
  margin: 20px 0 10px;
  font-size: 1.2rem;
}

.legal-container p {
  margin-bottom: 15px;
}

.legal-container ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.legal-container li {
  margin-bottom: 8px;
}

.highlight {
  background-color: #fff3cd;
  padding: 15px;
  border-left: 4px solid #ffc107;
  margin: 20px 0;
  font-weight: bold;
}

/* ===== FOOTER STYLES ===== */
footer {
  background: var(--primary);
  color: white;
  padding: 40px 0 20px;
  margin-top: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-logo img {
  border-radius: 8px;
}

.footer-contact {
  margin: 20px 0;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #ccc;
}

.footer-contact-item i {
  color: var(--secondary);
  width: 20px;
}

.footer-links, .footer-services {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li, .footer-services li {
  margin-bottom: 10px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary);
  transform: translateX(5px);
}

.footer-services li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
}

.footer-services i {
  color: var(--secondary);
  width: 20px;
}

.opening-hours {
  margin: 20px 0;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hours-item:last-child {
  border-bottom: none;
}

.footer-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--secondary);
  color: var(--primary);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.footer-btn:hover {
  background: #e6c200;
  transform: translateY(-2px);
}

.footer-btn.whatsapp {
  background: #25D366;
  color: white;
}

.footer-btn.whatsapp:hover {
  background: #1ebe57;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-legal a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--secondary);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  color: white;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: #aaa;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .header-right {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .appointment-container {
    grid-template-columns: 1fr;
  }
  
  .page-title h1 {
    font-size: 2rem;
  }
  
  .page-title p {
    font-size: 1rem;
  }
  
  .legal-container {
    padding: 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .logo {
    flex-direction: column;
    gap: 10px;
  }
  
  .logo img {
    height: 60px;
  }
}

/* Neue Process Section */
.process {
  padding: 80px 0;
  background: #f5f5f5;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.process-step {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-10px);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.step-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.process-step h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.process-step p {
  color: var(--dark);
  line-height: 1.6;
}

.process-cta {
  text-align: center;
}

.cta-button-large {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 40px;
  background: var(--secondary);
  color: var(--primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.cta-button-large:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Brands Section */
.brands {
  padding: 80px 0;
  background: white;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 30px 20px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.brand-item:hover {
  background: var(--secondary);
  transform: translateY(-5px);
}

.brand-item i {
  font-size: 3rem;
  color: var(--primary);
}

.brand-item:hover i {
  color: var(--primary);
}

.brand-item span {
  font-weight: 600;
  color: var(--dark);
}

.brand-item:hover span {
  color: var(--primary);
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .cta-button-large {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
}


/* ===== KONTAKT SEITE STYLES ===== */
.contact-page-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 80px;
}

.contact-info-large {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-info-large h2 {
  color: var(--primary);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--secondary);
}

.contact-details {
  margin-bottom: 30px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #f0f0f0;
}

.contact-detail-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-detail-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-detail-icon i {
  font-size: 1.3rem;
  color: var(--primary);
}

.contact-detail-content h3 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.contact-detail-content p {
  color: var(--dark);
  line-height: 1.6;
}

.contact-detail-content a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail-content a:hover {
  color: var(--secondary);
}

.opening-hours-large {
  margin-top: 10px;
}

.opening-hour {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  padding: 5px 0;
}

.opening-hour:last-child {
  margin-bottom: 0;
}

.contact-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contact-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: var(--secondary);
  color: var(--primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 200px;
  justify-content: center;
}

.contact-action-btn:hover {
  background: #e6c200;
  transform: translateY(-2px);
}

.contact-action-btn.whatsapp {
  background: #25D366;
  color: white;
}

.contact-action-btn.whatsapp:hover {
  background: #1ebe57;
}

.contact-action-btn.primary {
  background: var(--primary);
  color: white;
}

.contact-action-btn.primary:hover {
  background: #333;
}

/* Map Container */
.map-container-large {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-container-large h2 {
  color: var(--primary);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--secondary);
}

.map-wrapper {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.directions-info h3 {
  color: var(--primary);
  margin-bottom: 20px;
}

.transport-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.transport-option {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}

.transport-option i {
  font-size: 1.5rem;
  color: var(--secondary);
  width: 40px;
  text-align: center;
}

.transport-option h4 {
  color: var(--primary);
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.transport-option p {
  color: var(--dark);
  margin: 0;
  font-size: 0.9rem;
}

/* Quick Contact Section */
.quick-contact {
  background: linear-gradient(135deg, var(--primary) 0%, #1a1a1a 100%);
  color: white;
  padding: 60px 0;
  border-radius: 15px;
  margin-bottom: 80px;
}

.quick-contact-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.quick-contact-content h2 {
  color: var(--secondary);
  margin-bottom: 15px;
}

.quick-contact-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.quick-contact-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.quick-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: rgba(255,255,255,0.1);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.quick-contact-btn:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px);
}

.quick-contact-btn.whatsapp {
  background: rgba(37, 211, 102, 0.2);
  border-color: #25D366;
}

.quick-contact-btn.whatsapp:hover {
  background: #25D366;
}

.quick-contact-btn.primary {
  background: rgba(255, 215, 0, 0.2);
  border-color: var(--secondary);
}

.quick-contact-btn.primary:hover {
  background: var(--secondary);
}

/* Responsive Design für Kontakt-Seite */
@media (max-width: 968px) {
  .contact-page-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-info-large,
  .map-container-large {
    padding: 30px;
  }
  
  .contact-actions {
    flex-direction: column;
  }
  
  .contact-action-btn {
    min-width: auto;
  }
  
  .quick-contact-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .quick-contact-btn {
    min-width: 250px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .contact-detail-item {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-detail-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .transport-option {
    flex-direction: column;
    text-align: center;
  }
}