/* Custom Styles für ASD Hausservice - Modern & Professional */

:root {
  --primary-green: #2d5016;
  --secondary-yellow: #ffc107;
  --light-green: #4a7c2a;
  --dark-green: #1a3009;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
}

* {
  scroll-behavior: smooth;
}

html {
  scroll-padding-top: 50px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #333;
  overflow-x: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Modern Glassmorphism Navbar */
.navbar {
  background: rgba(45, 80, 22, 0.95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar.scrolled {
  background: rgba(45, 80, 22, 0.98) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
  font-family: 'Luckiest Guy', 'Bebas Neue', 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  color: white !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: transform 0.3s ease;
}

.navbar-brand .asd-text {
  color: #000000 !important;
  background: #ffffff;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
  font-family: 'Luckiest Guy', 'Bebas Neue', 'Roboto', sans-serif;
  font-weight: 400;
  text-shadow: none;
  -webkit-text-stroke: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-brand .dot-yellow {
  color: #F2C200;
}

.navbar-brand .dot-blue {
  color: #00A0D6;
}

.navbar-brand .dot-green {
  color: #5FB84B;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: 500;
  font-size: 1rem;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--secondary-yellow);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::before {
  width: 70%;
}

.navbar-nav .nav-link:hover {
  color: var(--secondary-yellow) !important;
  background: rgba(255, 255, 255, 0.1);
}

/* Hero Section - Modern und vereinfacht */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #1a4d1a 0%, #2d6a2d 100%);
  color: white;
  padding: 180px 0 140px;
  text-align: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(255, 237, 78, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(0, 160, 214, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 70% 45% at 80% 20%, rgba(95, 184, 75, 0.15) 0%, transparent 70%);
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, rgba(255, 237, 78, 0.2) 0%, rgba(0, 160, 214, 0.2) 50%, rgba(95, 184, 75, 0.2) 100%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  animation: floatCircle 20s ease-in-out infinite;
}

@keyframes floatCircle {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  33% {
    transform: translate(-30px, 30px) scale(1.1);
    opacity: 0.8;
  }
  66% {
    transform: translate(30px, -20px) scale(0.9);
    opacity: 0.7;
  }
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-family: 'Luckiest Guy', 'Bebas Neue', 'Roboto', sans-serif;
  font-size: 4.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.2;
  color: white;
  position: relative;
  z-index: 3;
}

.hero-section h1 .asd-text {
  color: #000000 !important;
  background: #ffffff;
  padding: 8px 18px;
  border-radius: 10px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-family: 'Luckiest Guy', 'Bebas Neue', 'Roboto', sans-serif;
  font-weight: 400;
  text-shadow: none;
  -webkit-text-stroke: none;
  margin-right: 1rem;
}

.hero-section h1 .hausservice-text {
  display: inline-block;
  margin-left: 0.5rem;
}

.hero-section h1 .dot-yellow {
  color: #F2C200;
  text-shadow: 0 0 10px rgba(242, 194, 0, 0.6);
}

.hero-section h1 .dot-blue {
  color: #00A0D6;
  text-shadow: 0 0 10px rgba(0, 160, 214, 0.6);
}

.hero-section h1 .dot-green {
  color: #5FB84B;
  text-shadow: 0 0 10px rgba(95, 184, 75, 0.6);
}

.hero-section .lead {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.2s both;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-section p {
  font-size: 1.1rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease 0.4s both;
  line-height: 1.7;
}

.hero-section .cta-buttons + p {
  margin-top: 3.5rem;
  margin-bottom: 0;
}

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

/* CTA Buttons Container */
.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease 0.6s both;
}

/* Modern CTA Button */
.cta-button {
  background: linear-gradient(135deg, var(--secondary-yellow) 0%, #ffb300 100%);
  color: var(--dark-green);
  padding: 18px 50px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  display: inline-block;
  margin-top: 0;
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 193, 7, 0.5);
  color: var(--dark-green);
}

.cta-button:active {
  transform: translateY(-2px) scale(1.02);
}

/* Service Sections mit modernen Cards */
.service-section {
  padding: 100px 0;
  position: relative;
  scroll-margin-top: 50px;
}

.service-section .row {
  align-items: stretch !important;
  display: flex;
}

.service-section .col-lg-6 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.service-section:nth-child(even):not(.garten-section):not(.gebaeude-section):not(.allround-section) {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* Allround Section */
.allround-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
  scroll-margin-top: 50px;
}

.allround-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  display: block;
}

/* Garten Section - Angepasst an Flyer Design (Grün) */
.garten-section {
  background: linear-gradient(135deg, #1a4d1a 0%, #2d6a2d 50%, #3d7a3d 100%);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.garten-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.garten-section .service-content-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  flex: 1 1 auto;
}

.garten-section .service-title {
  color: #ffed4e !important;
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  font-weight: 900;
  transform: rotate(2deg);
  display: inline-block;
}

.garten-section .service-title::after {
  background: linear-gradient(90deg, #ffed4e 0%, rgba(255, 237, 78, 0.5) 100%);
  width: 120px;
  height: 5px;
  transform: rotate(-2deg);
}

.garten-section .service-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.5rem;
}

.garten-section .benefits-list li {
  color: rgba(255, 255, 255, 0.95);
  border-left-color: rgba(255, 255, 255, 0.3);
}

.garten-section .benefits-list li:hover {
  border-left-color: white;
  color: white;
}

.garten-section .benefits-list li::before {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.garten-section .benefits-list li:hover::before {
  background: white;
  color: var(--primary-green);
  border-color: white;
}

/* Gebäude Section - Angepasst an Flyer Design (Gelb) */
.gebaeude-section {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #fff176 100%);
  color: #1a1a1a;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.gebaeude-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><rect x="0" y="0" width="40" height="40" fill="none" stroke="rgba(0,0,0,0.05)" stroke-width="1"/></svg>');
  opacity: 0.4;
}

.gebaeude-section .service-content-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 0, 0, 0.1);
  color: #1a1a1a;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  flex: 1 1 auto;
}

.gebaeude-section .service-title {
  color: #1a1a1a;
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 2rem;
  font-weight: 900;
  transform: rotate(-2deg);
  display: inline-block;
}

.gebaeude-section .service-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 5px;
  background: linear-gradient(90deg, #1a1a1a 0%, rgba(0, 0, 0, 0.5) 100%);
  border-radius: 2px;
  transform: rotate(2deg);
}

.gebaeude-section .benefits-list li {
  color: #333;
  border-left-color: rgba(0, 0, 0, 0.2);
  font-weight: 500;
}

.gebaeude-section .benefits-list li:hover {
  border-left-color: #1a1a1a;
  color: #1a1a1a;
}

.gebaeude-section .benefits-list li::before {
  background: rgba(0, 0, 0, 0.1);
  color: #1a1a1a;
  border: 2px solid rgba(0, 0, 0, 0.2);
  font-weight: 900;
}

.gebaeude-section .benefits-list li:hover::before {
  background: #1a1a1a;
  color: var(--secondary-yellow);
  border-color: #1a1a1a;
}

.service-image {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  display: block;
}

.service-section .col-lg-6:first-child {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 0;
  padding-bottom: 0;
  align-items: stretch;
}

.service-section .col-lg-6:first-child .service-image {
  flex: 0 0 auto;
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
}

.service-section .col-lg-6:first-child,
.service-section .col-lg-6:last-child {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.service-section .col-lg-6:first-child > img:last-child {
  margin-bottom: 0;
}

.service-section .col-lg-6:first-child {
  gap: 1.5rem;
  padding-top: 0;
  padding-bottom: 0;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.service-section .col-lg-6:last-child {
  justify-content: flex-start;
  padding-top: 0;
  padding-bottom: 0;
  align-items: stretch;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.service-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-image:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.service-image:hover::after {
  opacity: 1;
}

/* Service Content Cards */
.service-content-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(45, 80, 22, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  flex: 1 1 auto;
  width: 100%;
  align-self: stretch;
}

.service-content-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.service-title {
    font-size: 1.75rem;
  }

  .garten-section .service-title,
  .gebaeude-section .service-title {
    font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  font-size: 2.8rem;
  position: relative;
  padding-bottom: 1rem;
}

.service-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green) 0%, var(--secondary-yellow) 100%);
  border-radius: 2px;
}

.service-text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

/* Modern Benefits List */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.benefits-list li {
  padding: 1rem 0 1rem 3rem;
  position: relative;
  font-size: 1.2rem;
  color: #444;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  padding-left: 3.5rem;
  line-height: 1.6;
}

.benefits-list li:hover {
  border-left-color: var(--primary-green);
  padding-left: 4rem;
  color: var(--primary-green);
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1rem;
  color: var(--primary-green);
  font-weight: bold;
  font-size: 1.8rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 80, 22, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.benefits-list li:hover::before {
  background: var(--primary-green);
  color: white;
  transform: scale(1.1) rotate(360deg);
}

/* Trust Section mit Glassmorphism */
.trust-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
}

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

.trust-section .container {
  position: relative;
  z-index: 2;
}

.trust-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.trust-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.trust-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: all 0.4s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.trust-card:hover .trust-icon {
  transform: scale(1.2) rotate(360deg);
  background: var(--secondary-yellow);
  color: var(--dark-green);
  border-color: var(--secondary-yellow);
}

.trust-card h4 {
  color: var(--secondary-yellow);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.trust-card p {
  opacity: 0.95;
  line-height: 1.8;
}

/* Stats Section */
.stats-section {
  background: white;
  padding: 80px 0;
}

.stat-item {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-green);
  display: block;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.1rem;
  color: #666;
  font-weight: 500;
}

/* Modern Footer */
.footer {
  background: linear-gradient(180deg, var(--dark-green) 0%, #0f1f05 100%);
  color: white;
  padding: 60px 0 30px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 193, 7, 0.5) 50%, transparent 100%);
}

.footer h5 {
  color: var(--secondary-yellow);
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 1.3rem;
}

.footer p {
  opacity: 0.9;
  line-height: 1.8;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer a:hover {
  color: var(--secondary-yellow);
  transform: translateX(5px);
}

/* Floating Action Elements */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Contact Cards */
.contact-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(45, 80, 22, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--primary-green);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(45, 80, 22, 0.3);
}

.contact-card h4 {
  color: var(--primary-green);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.contact-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

.contact-link {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-link:hover {
  color: var(--light-green);
  transform: translateX(3px);
}

.rating-stars {
  font-size: 1.2rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.5rem;
}

/* Opening Hours */
.opening-hours {
  text-align: left;
}

.opening-hours .contact-icon {
  margin: 0 auto 1.5rem;
}

.opening-hours h4 {
  text-align: center;
  margin-bottom: 2rem;
}

.opening-hours-table {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.opening-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(45, 80, 22, 0.1);
  transition: all 0.3s ease;
}

.opening-hours-row:last-child {
  border-bottom: none;
}

.opening-hours-row:hover {
  background: rgba(45, 80, 22, 0.05);
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 8px;
}

.opening-hours-row.closed {
  opacity: 0.6;
}

.opening-hours-row .day {
  font-weight: 600;
  color: #333;
  font-size: 1.05rem;
}

.opening-hours-row .time {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 1.05rem;
}

.opening-hours-row.closed .time {
  color: #999;
}

.emergency-notice {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(45, 80, 22, 0.2);
  text-align: center;
}

.emergency-notice p {
  margin: 0;
  color: var(--primary-green);
  font-weight: 600;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 30px;
  }
  
  .service-section,
  .allround-section {
    scroll-margin-top: 30px;
  }
  
  .hero-section {
    padding: 120px 0 80px;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
    line-height: 1.3;
  }
  
  .hero-section h1 .asd-text {
    margin-right: 0.5rem;
    padding: 3px 8px;
    font-size: 0.9em;
  }
  
  .hero-section h1 .hausservice-text {
    margin-left: 0.3rem;
    display: block;
    margin-top: 0.5rem;
  }
  
  .hero-section .lead {
    font-size: 1.1rem;
    line-height: 1.4;
  }
  
  .hero-section p {
    font-size: 1rem;
    line-height: 1.6;
    word-spacing: 0.1em;
  }
  
  .hero-section p .desktop-only {
    display: none;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 300px;
    padding: 16px 40px;
    font-size: 1rem;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 1.5px;
  }
  
  .navbar-brand .asd-text {
    padding: 1px 4px;
    font-size: 0.9em;
  }
  
  .service-title {
    font-size: 1.75rem;
  }
  
  .service-content-card {
    margin-top: 3rem;
  }
  
  .google-review-badge {
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    margin: 1.5rem auto;
  }
  
  .review-stars {
    font-size: 1.2rem;
  }
  
  .review-text {
    font-size: 0.85rem;
  }
  
  .review-source {
    font-size: 0.75rem;
  }

  .garten-section .service-title,
  .gebaeude-section .service-title {
    font-size: 1.75rem;
  }
  
  .service-title {
    font-size: 1.75rem;
  }

  .garten-section .service-title {
    font-size: 1.75rem;
    color: #ffed4e !important;
  }

  .gebaeude-section .service-title {
    font-size: 1.3rem;
  }

  .gebaeude-section .service-title {
    font-size: 1.3rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .contact-card {
    padding: 1.5rem 1rem;
    min-height: auto;
  }
  
  .contact-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  .contact-card p {
    font-size: 1.4rem;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .contact-link {
    word-break: break-all;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }
  
  .contact-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .opening-hours-table {
    max-width: 100%;
  }
  
  .opening-hours-row {
    padding: 0.75rem 0;
    flex-wrap: wrap;
  }
  
  .opening-hours-row .day,
  .opening-hours-row .time {
    font-size: 0.9rem;
    white-space: nowrap;
  }
  
  .emergency-notice {
    margin-top: 1rem;
    padding-top: 1rem;
    font-size: 0.9rem;
  }
  
  .emergency-notice p {
    font-size: 0.9rem;
  }
  
  .benefits-list li {
    padding-left: 3.5rem;
    padding-right: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .benefits-list li::before {
    left: 0.5rem;
    width: 2rem;
    height: 2rem;
    font-size: 1.4rem;
  }
}

  
  /* Zusätzliche Sicherheit gegen Überlappungen */
  .service-content-card,
  .contact-card,
  .trust-card,
  .opening-hours {
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
    overflow: hidden;
  }
  
  .service-content-card *,
  .contact-card *,
  .trust-card *,
  .opening-hours * {
    max-width: 100%;
    box-sizing: border-box;
  }
  
  /* Text in allen Cards - weniger Umbrüche */
  p, span, a, li, td, th {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: manual;
    max-width: 100%;
  }
  
  /* Spezifische Anpassungen für weniger Umbrüche */
  .service-content-card p,
  .service-content-card .service-text,
  .garten-section .service-text,
  .gebaeude-section .service-text {
    font-size: 1.3rem;
    line-height: 1.5;
  }
  
  .trust-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  /* E-Mail und Telefon Links */
  a[href^="tel:"],
  a[href^="mailto:"] {
    word-break: break-all;
    display: inline-block;
    max-width: 100%;
  }
  
  /* Col-Klassen für bessere Kontrolle */
  [class*="col-"] {
    max-width: 100%;
    box-sizing: border-box;
  }
  
  /* Body overflow verhindern */
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }

/* Skip to content link for accessibility */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary-green);
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  z-index: 10000;
  font-weight: 600;
  border-radius: 0 0 8px 0;
  transition: top 0.3s ease;
}

.skip-to-content:focus {
  top: 0;
  outline: 3px solid var(--secondary-yellow);
  outline-offset: 2px;
}

/* Google Review Badge */
.google-review-badge {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 1rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease 0.3s both;
}

.review-stars {
  color: #ffc107;
  font-size: 1.5rem;
  line-height: 1;
}

.review-text {
  font-weight: 600;
  color: #333;
  font-size: 1rem;
}

.review-source {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-green);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  font-size: 1.5rem;
  text-decoration: none;
}

.back-to-top:hover,
.back-to-top:focus {
  background: var(--light-green);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  outline: 3px solid var(--secondary-yellow);
  outline-offset: 2px;
}

.back-to-top.visible {
  display: flex;
}

/* Touch Targets - Minimum 44x44px */
.nav-link,
.cta-button,
button,
a[role="button"] {
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .nav-link {
    padding: 1rem !important;
    min-height: 48px;
  }
  
  .cta-button {
    min-height: 48px;
    padding: 14px 30px;
  }
}

/* Contact Form Styles */
.contact-form {
  margin-top: 1.5rem;
}

.contact-form .form-control {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  min-height: 44px;
  width: 100%;
}

.contact-form .form-control:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

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

.contact-form .cta-button {
  margin-top: 0.5rem;
}
