/* ===== RESET & BASE STYLES ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #F8F1E9; /* Weiches Cremeweiß für Lesbarkeit */
  background-color: #1B4332; /* Dunkles, warmes Grün */
  overflow-x: hidden;
}

/* ===== VARIABLES ===== */
:root {
  --primary-bg: #1B4332; /* Dunkles Grün */
  --primary-text: #F8F1E9; /* Weiches Cremeweiß */
  --accent-primary: #6C8294; /* Sanftes Grau-Blau */
  --accent-secondary: #B0B8C1; /* Helles Silber */
  --accent-hover: #7D93A5; /* Helleres Grau-Blau für Hover */
  --glass-bg: rgba(255, 255, 255, 0.1); /* Subtiler transparenter Hintergrund */
  --glass-border: 1px solid rgba(255, 255, 255, 0.15); /* Sanfter Rand */
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* Dezenter Schatten */
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --border-radius: 12px;
  --max-width: 1400px;
}

/* ===== SCROLL PROGRESS BAR (GARDEN THEME) ===== */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 100vh;
    background: linear-gradient(to bottom, 
        rgba(248, 241, 233, 0.2) 0%, 
        rgba(248, 241, 233, 0.1) 100%);
    z-index: 999;
    border-right: 1px solid rgba(248, 241, 233, 0.3);
    overflow: hidden;
}

.scroll-progress-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%; /* Wird durch JS aktualisiert */
    background: linear-gradient(to bottom, 
        #B0B8C1 0%, /* Helles Silber */
        #7D93A5 100%); /* Helleres Grau-Blau */
    transition: height 0.2s ease-out;
    box-shadow: 0 0 10px rgba(176, 184, 193, 0.6);
    border-radius: 0 0 5px 0;
    overflow: hidden;
}

/* Gras-Blätter als Dekoration */
.grass-blade {
    position: absolute;
    bottom: 0;
    width: 2px;
    height: 10px;
    background: #4a7c59; /* Garten-Grün */
    border-radius: 1px 1px 0 0;
    opacity: 0.8;
    animation: grassSway 3s ease-in-out infinite;
}

.blade-1 {
    left: 1px;
    height: 8px;
    transform: rotate(5deg);
    animation-delay: 0s;
}

.blade-2 {
    left: 3px;
    height: 12px;
    transform: rotate(-3deg);
    animation-delay: 0.6s;
}

.blade-3 {
    left: 5px;
    height: 10px;
    transform: rotate(2deg);
    animation-delay: 1.2s;
}

.blade-4 {
    left: 7px;
    height: 9px;
    transform: rotate(-5deg);
    animation-delay: 1.8s;
}

.blade-5 {
    left: 9px;
    height: 11px;
    transform: rotate(4deg);
    animation-delay: 2.4s;
}

@keyframes grassSway {
    0%, 100% { transform: rotate(var(--initial-rotation, 0deg)); }
    50% { transform: rotate(calc(var(--initial-rotation, 0deg) + 3deg)); }
}

/* Hover-Effekt für bessere Sichtbarkeit */
.scroll-progress-bar:hover .scroll-progress-indicator {
    width: 12px;
    left: -1px;
    box-shadow: 0 0 15px rgba(176, 184, 193, 0.8);
    transition: width 0.3s ease, left 0.3s ease, box-shadow 0.3s ease;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .scroll-progress-bar {
        width: 8px;
    }
    
    .scroll-progress-bar:hover .scroll-progress-indicator {
        width: 10px;
    }
    
    .grass-blade {
        height: 8px;
    }
}

/* Accessibility: Hoher Kontrast */
@media (prefers-contrast: high) {
    .scroll-progress-bar {
        background: rgba(248, 241, 233, 0.4);
        border-right: 2px solid rgba(248, 241, 233, 0.6);
    }
    
    .scroll-progress-indicator {
        background: #FFFFFF; /* Weiß für maximalen Kontrast */
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
    .grass-blade {
        animation: none;
    }
    
    .scroll-progress-indicator {
        transition: none;
    }
}
/* ===== UTILITY CLASSES ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: var(--accent-primary);
  color: var(--primary-text);
  box-shadow: var(--shadow);
  min-height: 44px; /* Touch-friendly */
  min-width: 44px;
}

.btn:hover {
  transform: translateY(-3px);
  background-color: var(--accent-hover); /* Helleres Grau-Blau */
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

/* Secondary Button */
.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--accent-primary);
  color: var(--accent-primary);
}

.btn-secondary:hover {
  background-color: var(--accent-primary);
  color: var(--primary-text);
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* ===== GLASSMORPHISM EFFECT ===== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: var(--glass-border);
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--accent-primary);
  color: var(--primary-text);
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 6px;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.8s ease;
}

.loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loading-animation {
  text-align: center;
}

.leaf-loader {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.leaf {
  width: 14px;
  height: 14px;
  background-color: var(--accent-primary);
  border-radius: 50%;
  animation: leaf-pulse 2s infinite ease-in-out;
}

.leaf:nth-child(1) {
  animation-delay: 0s;
}

.leaf:nth-child(2) {
  animation-delay: 0.2s;
}

.leaf:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes leaf-pulse {
  0%, 100% {
    transform: scale(0.6);
    opacity: 0.6;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}

.loading-text {
  color: var(--primary-text);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(27, 67, 50, 0.4); /* Sehr transparentes dunkles Grün */
  backdrop-filter: blur(20px); /* Sehr starker Blur für Glassmorphism */
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtiler Glas-Rand */
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 18px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Minimaler Schatten */
}

.site-header.scrolled {
  padding: 12px 0; /* Reduzierte Höhe beim Scrollen */
  background: rgba(27, 67, 50, 0.5); /* Etwas weniger transparent beim Scrollen */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  transition: all 0.3s ease;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--accent-secondary); /* Helles Silber */
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.08);
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-secondary); /* Helles Silber */
  letter-spacing: 0.3px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--primary-text); /* Weiches Cremeweiß */
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px; /* Dünnere Unterstreichung für Minimalismus */
  background-color: var(--accent-hover); /* Helleres Grau-Blau */
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-hover); /* Helleres Grau-Blau für Hover und Aktiv */
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--primary-text); /* Weiches Cremeweiß */
  position: relative;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background-color: var(--primary-text); /* Weiches Cremeweiß */
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  bottom: -6px;
}

.nav-toggle.active .hamburger {
  background-color: transparent;
}

.nav-toggle.active .hamburger::before {
  transform: translateY(6px) rotate(45deg);
  background-color: var(--accent-hover); /* Helleres Grau-Blau */
}

.nav-toggle.active .hamburger::after {
  transform: translateY(-6px) rotate(-45deg);
  background-color: var(--accent-hover); /* Helleres Grau-Blau */
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--primary-bg);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(27, 67, 50, 0.5) 0%, rgba(27, 67, 50, 0.8) 100%);
  z-index: -1;
}

.hero-content {
  color: var(--primary-text);
  max-width: 900px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  font-weight: 300;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}



/* ===== SIMPLE REASONS SECTION FOR KLEINGEWERBE ===== */
.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 60px;
}

.reason-item {
  padding: 25px;
  transition: var(--transition);
  border-radius: var(--border-radius);
}

.reason-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.reason-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
  text-align: center;
}

.reason-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent-secondary);
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
  text-align: center;
}

.reason-item p {
  font-size: 0.95rem;
  color: var(--primary-text);
  line-height: 1.6;
  opacity: 0.9;
  text-align: center;
}

/* Portfolio Call-to-Action */
.portfolio-cta {
  text-align: center;
  margin-top: 50px;
}

.cta-content {
  padding: 30px 20px;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent-secondary);
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}

.cta-content p {
  font-size: 1rem;
  color: var(--primary-text);
  margin-bottom: 25px;
  line-height: 1.6;
  opacity: 0.9;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .reasons-list {
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
  }
  
  .reason-item {
    padding: 20px 15px;
  }
  
  .reason-icon {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .reason-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .reason-item p {
    font-size: 0.9rem;
  }
  
  .portfolio-cta {
    margin-top: 30px;
  }
  
  .cta-content {
    padding: 25px 15px;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
}
/* ===== SECTIONS ===== */
.services-section,
.about-section,
.contact-section,
.portfolio-section,
.testimonials-section,
.faq-section,
.service-area-section {
  padding: 120px 0;
}

.services-section,
.about-section,
.contact-section,
.portfolio-section,
.testimonials-section,
.faq-section,
.service-area-section {
  background-color: var(--primary-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  color: var(--accent-secondary);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-primary);
}

.section-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--primary-text);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

/* ===== SERVICES SECTION ===== */
.services-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.service-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0 auto;
  width: 90%;
  max-width: 800px;
  transition: var(--transition);
}

.service-item:nth-child(even) {
  flex-direction: column-reverse;
  margin-left: auto;
  margin-right: 10%;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-image-wrapper {
  position: relative;
  height: 300px;
  width: 80%;
  margin: 0 auto;
}

.service-image-wrapper.reverse {
  margin-left: auto;
  margin-right: 0;
}

.service-image {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.6s ease;
  border: 1px solid var(--accent-secondary);
}

.service-item:hover .service-image {
  transform: scale(1.03);
}

.image-frame {
  position: absolute;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border: 2px solid var(--accent-secondary);
  border-radius: var(--border-radius);
  pointer-events: none;
  z-index: 1;
}

.service-content {
  padding: 30px;
  flex: 1;
  border-radius: var(--border-radius);
  position: relative;
  z-index: 2;
  margin-top: -50px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  background: var(--glass-bg);
}

.service-item:nth-child(even) .service-content {
  margin-top: -50px;
  margin-bottom: 0;
}

.service-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-secondary);
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}

.service-content p {
  color: var(--primary-text);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* Service Features */
.service-features {
  list-style: none;
  margin-top: 20px;
}

.service-features li {
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
  color: var(--primary-text);
  font-size: 0.9rem;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: bold;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-image-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.portfolio-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(27, 67, 50, 0.9));
  color: var(--primary-text);
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-overlay h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--accent-secondary);
}

.portfolio-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.testimonial-item {
  padding: 30px;
  text-align: center;
}

.stars {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.testimonial-item blockquote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--primary-text);
}

.testimonial-item cite {
  display: block;
  font-style: normal;
}

.testimonial-item cite strong {
  color: var(--accent-secondary);
  display: block;
  margin-bottom: 5px;
}

.testimonial-item cite span {
  color: var(--primary-text);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* ===== FAQ SECTION ===== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--primary-text);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 20px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--accent-secondary);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 0 20px 0;
  color: var(--primary-text);
  line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  height: 500px;
  width: 100%;
}

.about-image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  border: 1px solid var(--accent-secondary);
}

.about-content {
  padding: 40px;
  border-radius: var(--border-radius);
}

.about-content .section-title {
  margin-bottom: 30px;
  display: block;
}

.about-content .section-title::after {
  left: 0;
  transform: translateX(0);
}

.about-text {
  color: var(--primary-text);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  font-weight: 300;
}

.qualifications {
  margin: 30px 0;
}

.qualifications h3 {
  color: var(--accent-secondary);
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}

.qualifications ul {
  list-style: none;
  margin-left: 0;
}

.qualifications li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
  color: var(--primary-text);
}

.qualifications li::before {
  content: "🏆";
  position: absolute;
  left: 0;
  top: 8px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-primary);
  font-family: "Playfair Display", serif;
}

.stat-text {
  display: block;
  font-size: 0.9rem;
  color: var(--primary-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== CONTACT SECTION ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-card {
  padding: 40px;
  border-radius: var(--border-radius);
  flex: 1;
}

.contact-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--accent-secondary);
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--primary-text);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 16px;
  transition: var(--transition);
  font-family: inherit;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--primary-text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(108, 130, 148, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  cursor: pointer;
}

.error-message {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 5px;
  display: block;
  min-height: 20px;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

.success-message {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid #4caf50;
  border-radius: var(--border-radius);
  padding: 20px;
  margin-top: 20px;
  text-align: center;
}

.success-message h4 {
  color: #4caf50;
  margin-bottom: 10px;
}

.success-message p {
  color: var(--primary-text);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--primary-text);
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
  min-width: 16px;
}

.checkbox-label a {
  color: var(--accent-primary);
  text-decoration: underline;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.detail-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.detail-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.detail-icon {
  font-size: 1.5rem;
  min-width: 40px;
  text-align: center;
  color: var(--accent-primary);
}

.detail-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-secondary);
  margin-bottom: 10px;
}

.detail-content p {
  color: var(--primary-text);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 5px 0;
}

.detail-content a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: var(--transition);
}

.detail-content a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.detail-content small {
  font-size: 0.8rem;
  opacity: 0.7;
  display: block;
  margin-top: 8px;
}

.detail-content address {
  font-style: normal;
  line-height: 1.5;
}

.map-link {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 10px;
  background: var(--accent-primary);
  color: var(--primary-text);
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.85rem;
  transition: var(--transition);
}

.map-link:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.opening-hours div {
  display: flex;
  justify-content: space-between;
  margin: 5px 0;
}

.opening-hours span {
  font-weight: 600;
}

/* ===== SERVICE AREA SECTION ===== */
.service-area-content {
  max-width: 800px;
  margin: 0 auto;
}

.area-map {
  padding: 40px;
}

.area-map h3 {
  color: var(--accent-secondary);
  font-size: 1.5rem;
  margin-bottom: 25px;
  font-family: "Playfair Display", serif;
}

.area-list {
  display: grid;
  gap: 15px;
  margin: 20px 0;
}

.area-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--accent-primary);
}

.area-item strong {
  color: var(--accent-secondary);
  font-weight: 600;
}

.area-item span {
  color: var(--primary-text);
  opacity: 0.8;
  font-size: 0.9rem;
}

.area-note {
  margin-top: 20px;
  padding: 15px;
  background: rgba(108, 130, 148, 0.1);
  border-radius: 8px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--primary-text);
}

.area-note strong {
  color: var(--accent-secondary);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  padding: 12px 16px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: white;
}

.whatsapp-icon {
  font-size: 1.2rem;
}

.whatsapp-text {
  font-size: 0.9rem;
  font-weight: 600;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: var(--glass-border);
  padding: 20px;
  z-index: 1001;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 20px;
}

.cookie-text h4 {
  color: var(--accent-secondary);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.cookie-text p {
  color: var(--primary-text);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.cookie-text a {
  color: var(--accent-primary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: var(--primary-bg);
  color: var(--primary-text);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--accent-secondary);
}

.footer-brand p {
  color: rgba(248, 241, 233, 0.7);
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 20px;
}

.footer-contact p {
  margin: 5px 0;
  font-size: 0.9rem;
  color: rgba(248, 241, 233, 0.8);
}

.footer-contact a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--accent-hover);
}

.footer-services h4,
.footer-links h4,
.footer-social h4 {
  color: var(--accent-secondary);
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-services ul,
.footer-links ul {
  list-style: none;
  margin-top: 15px;
}

.footer-services li,
.footer-links li {
  margin: 8px 0;
}

.footer-services a,
.footer-links a {
  color: rgba(248, 241, 233, 0.7);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-services a:hover,
.footer-links a:hover {
  color: var(--accent-secondary);
}

.social-links {
  display: flex;
  gap: 15px;
  margin: 15px 0;
}

.social-link {
  display: inline-block;
  font-size: 1.5rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: scale(1.2);
}

.business-hours {
  margin-top: 20px;
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(248, 241, 233, 0.8);
}

.business-hours strong {
  color: var(--accent-secondary);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(248, 241, 233, 0.5);
  font-size: 0.85rem;
  font-weight: 300;
  margin: 5px 0;
}

.footer-note {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 10px;
}

/* ===== IMPRESSUM STYLES ===== */
.impressum-section {
  padding: 120px 0 100px;
  background-color: var(--primary-bg);
}

.impressum-content {
  max-width: 900px;
  margin: 0 auto;
}

.impressum-grid {
  display: grid;
  gap: 30px;
  margin-top: 60px;
}

.impressum-card {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: var(--glass-border);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent-primary);
}

.impressum-card.full-width {
  grid-column: 1 / -1;
}

.impressum-card h2 {
  color: var(--accent-secondary);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
}

.info-block {
  line-height: 1.8;
  color: var(--primary-text);
  font-size: 0.95rem;
}

.info-block strong {
  color: var(--primary-text);
  font-weight: 600;
}

.info-block a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: var(--transition);
}

.info-block a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.info-block p {
  margin-bottom: 15px;
}

.info-block em {
  color: var(--primary-text);
  font-size: 0.9rem;
  opacity: 0.7;
}

.impressum-footer {
  margin-top: 60px;
  padding: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.impressum-footer .info-block {
  font-size: 0.9rem;
}

/* ===== ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.fade-in-down {
  transform: translateY(-20px);
}

.animate-on-scroll.fade-in-left {
  transform: translateX(-20px);
}

.animate-on-scroll.fade-in-right {
  transform: translateX(20px);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .about-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .about-image-wrapper {
    height: 400px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  /* Header Mobile */
  .logo-text {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(27, 67, 50, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease;
  }

  .main-nav.active {
    display: block;
    height: auto;
    overflow: visible;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }

  .nav-link {
    display: block;
    padding: 15px 20px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  /* Hero Mobile */
  .hero-section {
    height: 80vh;
    min-height: 500px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  /* Sections Mobile */
  .services-section,
  .about-section,
  .contact-section,
  .portfolio-section,
  .testimonials-section,
  .faq-section,
  .service-area-section {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 50px;
  }

  /* Services Mobile */
  .services-container {
    gap: 40px;
  }

  .service-item {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .service-item:nth-child(even) {
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
  }

  .service-image-wrapper,
  .service-image-wrapper.reverse {
    width: 90%;
    margin: 0 auto;
  }

  .service-content {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  /* Portfolio Mobile */
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials Mobile */
  .testimonials-slider {
    grid-template-columns: 1fr;
  }

  /* About Mobile */
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrapper {
    order: 2;
    height: 300px;
  }

  .about-content {
    order: 1;
    padding: 30px 20px;
  }

  .about-content .section-title {
    text-align: center;
  }

  .about-content .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-stats {
    justify-content: center;
    flex-direction: column;
    gap: 20px;
  }

  /* Contact Mobile */
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-card {
    padding: 30px 20px;
  }

  /* Cookie Banner Mobile */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  /* Footer Mobile */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-nav {
    flex-direction: column;
    gap: 20px;
  }

  /* WhatsApp Mobile */
  .whatsapp-text {
    display: none;
  }

  /* Impressum Mobile */
  .impressum-section {
    padding: 100px 0 60px;
  }

  .impressum-card {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 70vh;
    min-height: 450px;
  }

  .about-image-wrapper {
    height: 250px;
  }

  .detail-item {
    padding: 20px 15px;
  }

  .service-image-wrapper {
    height: 250px;
  }

  .image-frame {
    top: 15px;
    left: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
  }

  .area-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ===== IMPRESSUM GRID ===== */
@media (min-width: 768px) {
  .impressum-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .impressum-card:nth-child(odd):not(.full-width) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll,
  .service-item,
  .btn,
  .detail-item,
  .portfolio-item {
    transition: none;
    transform: none;
  }

  .loading-screen .leaf {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .loading-screen,
  .site-header,
  .nav-toggle,
  .hero-section,
  .site-footer,
  .whatsapp-float,
  .cookie-banner {
    display: none;
  }

  .impressum-section {
    padding: 0;
  }

  .impressum-card {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
    background: none;
    backdrop-filter: none;
  }
}

/* ===== FOCUS STYLES FOR ACCESSIBILITY ===== */
.btn:focus,
.nav-link:focus,
.faq-question:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
  :root {
    --glass-bg: rgba(255, 255, 255, 0.2);
    --glass-border: 2px solid rgba(255, 255, 255, 0.3);
  }
}