/* Reset und globale Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HTML- und Body-Einstellungen für volle Höhe */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Flexbox-Layout für Footer unten */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Hauptinhalt */
.content {
  flex: 1;
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
}

.navbar-nav .nav-link {
  font-size: 1rem;
  margin-left: 20px;
  color: #333;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #007bff;
}

/* Hero-Bereich */
.hero-section {
  position: relative;
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('Images/RA-Logistik.jpg') center/cover no-repeat;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

/* Statistiken-Bereich */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #007bff, #00d4ff);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-box {
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease-in-out;
}

.stat-box:hover {
  transform: translateY(-10px);
}

.stat-box h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 10px 0;
}

.stat-box p {
  font-size: 1.2rem;
  font-weight: 500;
}

/* Dienste-Bereich */
.services-section {
  padding: 80px 0;
  background-color: #fff;
}

.service-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.service-card img {
  height: 220px;
  object-fit: cover;
}

/* Vorteile-Bereich Styling */
.advantages-section {
  padding: 80px 0;
  background: #f8f9fa;
  text-align: center;
}

.advantages-section h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 40px;
}

.advantage-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.advantage-box:hover {
  transform: translateY(-10px);
}

.advantage-box img.advantage-icon {
  max-width: 80px;
  height: auto;
  margin-bottom: 15px;
}

.advantage-box h4 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.advantage-box p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.advantage-box a {
  color: #007bff;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.advantage-box a:hover {
  color: #0056b3;
}

/* Partners Section */
.partners-section {
  padding: 5rem 0;
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 3rem;
  font-size: 1.25rem;
}

.partner-item {
  text-align: center;
  margin: 2rem 0;
  padding: 15px;
  transition: all 0.3s ease;
}

.partner-logo {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  padding: 15px;
}

.partner-logo img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  transition: all 0.3s ease;
 
}

.partner-item h4 {
  color: #333;
  font-size: 1.1rem;
  margin-top: 1rem;
}

.placeholder-logo {
  width: 120px;
  height: 60px;
  background: #f8f9fa;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #666;
}


.partner-item {
  flex-shrink: 0;
  margin: 0 2rem;
}

/* Hover Effects */
.partner-item:hover img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .partner-logo {
    height: 80px;
  }
  
  .partner-logo img {
    max-height: 50px;
  }
  
  .partner-item h4 {
    font-size: 1rem;
  }
}

/* Kundenmeinungen-Bereich Styling */
        /* Customer Reviews Section */
        .customer-reviews-section {
          padding: 5rem 0;
          background: #f8f9fa;
        }

        .section-title {
          text-align: center;
          font-size: 2.5rem;
          margin-bottom: 4rem;
          color: #2d3436;
        }

        .review-card {
          background: white;
          border-radius: 1rem;
          padding: 2rem;
          margin: 1rem;
          box-shadow: 0 10px 30px rgba(0,0,0,0.08);
          transition: transform 0.3s ease;
          border: 1px solid rgba(0,0,0,0.05);
        }

        .review-header {
          display: flex;
          justify-content: space-between;
          align-items: center;
          margin-bottom: 1.5rem;
        }

        .user-info {
          display: flex;
          align-items: center;
          gap: 1rem;
        }

        .review-avatar {
          width: 4rem;
          height: 4rem;
          border-radius: 50%;
          object-fit: cover;
        }

        .user-meta h4 {
          margin: 0;
          font-size: 1.1rem;
          color: #2d3436;
        }

        .review-date {
          color: #636e72;
          font-size: 0.9rem;
          margin: 0;
        }

        .review-platform {
          width: 2rem;
          height: auto;
        }

        .rating {
          color: #ffc107;
          font-size: 1.4rem;
          margin-bottom: 1rem;
        }

        .review-text {
          color: #636e72;
          line-height: 1.6;
          margin: 0;
          font-size: 1rem;
        }

        /* Swiper Customization */
        .swiper {
          padding: 2rem 0;
        }

        .swiper-button-next,
        .swiper-button-prev {
          color: #2d3436 !important;
          background: white;
          width: 3rem;
          height: 3rem;
          border-radius: 50%;
          box-shadow: 0 5px 15px rgba(0,0,0,0.1);
          transition: all 0.3s ease;
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
          font-size: 1.2rem !important;
        }

        .swiper-pagination-bullet-active {
          background: #2d3436 !important;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
          .section-title {
            font-size: 2rem;
          }
          
          .review-card {
            margin: 0.5rem;
            padding: 1.5rem;
          }
          
          .swiper-button-next,
          .swiper-button-prev {
            display: none;
          }
        }

        @media (max-width: 480px) {
          .review-header {
            flex-wrap: wrap;
            gap: 1rem;
          }
          
          .user-meta h4 {
            font-size: 1rem;
          }
          
          .review-text {
            font-size: 0.9rem;
          }
        }


  /* Contact Section (for contact page) */

/* Contact Section */
/* Contact Section Styling */
.contact-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
  position: relative;
 
}

.section-title {
  text-align: center;
  font-size: 2.75rem;
  margin-bottom: 4rem;
  color: #2d3436;
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.form-title, .info-title, .social-title {
  font-size: 1.5rem;
  color: #2d3436;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #007bff;
}

/* Form Styling */
.modern-form .form-group {
  margin-bottom: 1.5rem;
}

.modern-form label {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: #495057;
  margin-bottom: 0.5rem;
}

.modern-form label i {
  color: #007bff;
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

.modern-form input,
.modern-form textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid #e9ecef;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.modern-form input:focus,
.modern-form textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
  outline: none;
}

.submit-btn {
  background: #007bff;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) ;
}

.submit-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

.submit-btn i {
  font-size: 1.2rem;
}

/* Contact Info Styling */
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.info-icon {
  width: 3rem;
  height: 3rem;
  background: #007bff1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon i {
  color: #007bff;
  font-size: 1.25rem;
}

.info-content h4 {
  margin: 0 0 0.25rem;
  color: #2d3436;
  font-size: 1.1rem;
}

.info-content p {
  margin: 0;
  color: #636e72;
  line-height: 1.5;
}

/* Social Links Styling */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
}

.facebook { background: #1877f2; }
.instagram { background: #e4405f; }
.linkedin { background: #0a66c2; }
.twitter { background: #1da1f2; }

/* Responsive Design */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
  
  .contact-card {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .submit-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-card {
    padding: 1.5rem;
  }
  
  .info-item {
    flex-direction: column;
    align-items: flex-start;
  }
}



/* Footer should always be at the bottom */
.footer-section {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
    width: 100%;
    margin-top: auto; /* Pushes footer to the bottom */
}

.footer-section p {
    margin: 0;
}

.footer-section .social-media a {
    font-size: 1.5rem;
    color: #fff;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-section .social-media a:hover {
    color: #007bff;
}
  
  /* WhatsApp Floating Button */
  .whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
  }
  /* Floating animation for WhatsApp button */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}
  
  .whatsapp-float:hover {
    background-color: #128c7e;
  }
  
  /* Utility Classes */
  .mt-80 { margin-top: 80px; }
  .mb-80 { margin-bottom: 80px; }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .navbar-nav .nav-link {
      margin-left: 10px;
    }
    .hero-section {
      height: 70vh;
    }
    .service-card img {
      height: 180px;
    }
  }
  