/* ===== ADDITIONAL EFFECTS ===== */
/* Animated typing effect for headings */
.hero-content h2 {
    position: relative;
    display: inline-block;
}

.hero-content h2::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 80%;
    background-color: var(--light-text);
    right: -10px;
    top: 10%;
    animation: cursorBlink 1s infinite;
}

@keyframes cursorBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* Water drop effect */
.water-drop {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(76, 175, 80, 0.4));
    animation: waterRipple 4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
    transform: scale(0);
    pointer-events: none;
}

@keyframes waterRipple {
    0% {
        transform: scale(0);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Interactive hover effects */
.service-card:hover .service-icon {
    animation: iconPulse 1s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Enhanced process number animation */
.process-number::before {
    animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Enhanced gallery hover effects */
.gallery-item:hover .gallery-decoration {
    animation: rotateDecoration 10s linear infinite;
}

@keyframes rotateDecoration {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Button glow effect */
.btn {
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.2);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    box-shadow: 0 5px 30px rgba(76, 175, 80, 0.4), 0 0 20px rgba(76, 175, 80, 0.2);
    animation: buttonGlow 2s ease-in-out infinite alternate;
}

@keyframes buttonGlow {
    0% {
        box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
    }
    100% {
        box-shadow: 0 5px 30px rgba(76, 175, 80, 0.6), 0 0 20px rgba(76, 175, 80, 0.3);
    }
}

/* 3D card effect with parallax */
.service-card, .process-item {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card .service-icon,
.process-item .process-number {
    transform: translateZ(20px);
    transition: transform 0.3s ease;
}

.service-card h3,
.process-item h3 {
    transform: translateZ(10px);
    transition: transform 0.3s ease;
}

/* Flowering animation for process items on hover */
.process-item:hover::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
    top: 10px;
    right: 10px;
    box-shadow: 0 0 10px var(--accent-color);
    animation: flowerBlossom 1s ease-out forwards;
}

@keyframes flowerBlossom {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

/* Wind effect animation for plants */
.floating-element {
    animation: windSway 8s ease-in-out infinite;
}

@keyframes windSway {
    0%, 100% {
        transform: rotate(-2deg) translateY(0);
    }
    25% {
        transform: rotate(3deg) translateY(-10px);
    }
    50% {
        transform: rotate(-1deg) translateY(5px);
    }
    75% {
        transform: rotate(2deg) translateY(-5px);
    }
}

/* Interactive form fields */
.form-group input:focus,
.form-group textarea:focus {
    animation: inputFocus 0.5s ease forwards;
}

@keyframes inputFocus {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

/* Weather effects styling */
.rain-drop {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
    width: 1px;
    height: 20px;
    position: absolute;
    top: 0;
    animation: rainFall 1s linear infinite;
}

@keyframes rainFall {
    0% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(100vh);
    }
}

/* Light Beam Effect */
.light-beam {
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(75deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
    transform: translateX(-50%) rotate(15deg);
    animation: lightSweep 8s infinite;
}

@keyframes lightSweep {
    0%, 100% {
        transform: translateX(-50%) rotate(15deg);
        opacity: 0;
    }
    50% {
        transform: translateX(-50%) rotate(15deg);
        opacity: 1;
    }
}

/* Ambient glow for natural elements */
.service-icon::after {
    animation: ambientGlow 4s ease-in-out infinite alternate;
}

@keyframes ambientGlow {
    0% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 10px rgba(76, 175, 80, 0.2);
    }
    100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1.5);
        box-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
    }
}

/* Enhanced scroll reveal animations */
@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

section > .container > h2 {
    animation: fadeSlideUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-play-state: paused;
}

/* Digital dew drops */
.dew-drop {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4));
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    filter: blur(1px);
}

/* Advanced text shadow effect for hero text */
.hero-content h2 {
    text-shadow: 
        0 2px 5px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Natural grain texture overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIiB4PSIwIiB5PSIwIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc1IiBzdGl0Y2hUaWxlcz0ic3RpdGNoIi8+PGZlQ29sb3JNYXRyaXggdHlwZT0ibWF0cml4IiB2YWx1ZXM9IjAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAgMCAwIDAuMSAwIi8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjMwMCIgaGVpZ2h0PSIzMDAiIGZpbHRlcj0idXJsKCNhKSIgb3BhY2l0eT0iMC4wNSIvPjwvc3ZnPg==');
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
}

/* Interactive gallery captions */
.gallery-caption {
    position: relative;
    overflow: hidden;
}

.gallery-caption::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(to right, var(--leaf-1), var(--leaf-3));
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover .gallery-caption::before {
    width: 100%;
}

/* Magnetic buttons */
.btn {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Enhanced contact form ripple effect */
.form-group input,
.form-group textarea {
    position: relative;
    overflow: hidden;
}

.form-group input:focus::after,
.form-group textarea:focus::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(76, 175, 80, 0.2), transparent 70%);
    animation: formRipple 1s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes formRipple {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Highlight selected nav item with nature effect */
nav ul li a.active::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--leaf-1);
    border-radius: 50%;
    opacity: 0;
    animation: navDot 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes navDot {
    0% {
        transform: translate(-50%, 10px);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

/* Enhanced scroll-triggered reveal animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: 
        opacity 1s cubic-bezier(0.22, 1, 0.36, 1), 
        transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Custom scrollbar with nature theme */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(242, 247, 242, 0.5);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--leaf-1), var(--leaf-2));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--leaf-2), var(--leaf-3));
}

/* Natural loading animation */
.natural-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.natural-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.natural-loader svg {
    width: 100px;
    height: 100px;
}

.natural-loader .stem {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: growStem 2s ease-out forwards;
}

.natural-loader .leaf {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: growLeaf 1s ease-out forwards;
}

.natural-loader .flower {
    transform-origin: center;
    transform: scale(0);
    animation: bloomFlower 1s ease-out forwards;
}

@keyframes growStem {
    to { stroke-dashoffset: 0; }
}

@keyframes growLeaf {
    to { stroke-dashoffset: 0; }
}

@keyframes bloomFlower {
    to { transform: scale(1); }
}

/* Season indicators */
.season-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.season-spring {
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
}

.season-summer {
    background: linear-gradient(135deg, #FFC107, #FF9800);
}

.season-fall {
    background: linear-gradient(135deg, #FF9800, #F44336);
}

.season-winter {
    background: linear-gradient(135deg, #90CAF9, #42A5F5);
}

/* Interactive soil layer in about section */
.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--earth-1));
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    z-index: 1;
}

/* Water ripple effect for image containers */
.image-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 2;
    pointer-events: none;
}

.image-container:hover::after {
    animation: waterRipple 2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Day/night mode toggle styling */
.day-night-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5f5f5, #dcdcdc);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease, background 0.3s ease;
}

.day-night-toggle:hover {
    transform: scale(1.1);
}

.day-night-toggle .sun-moon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #FFC107;
    position: relative;
    transition: all 0.3s ease;
}

.dark-mode .day-night-toggle .sun-moon {
    background-color: #E0E0E0;
    box-shadow: inset -3px -3px 0 0 #BDBDBD;
}

.day-night-toggle .sun-moon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background-color: var(--light-bg);
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0;
}

.dark-mode .day-night-toggle .sun-moon::before {
    opacity: 1;
}

/* Firefly effect for dark mode */
.firefly {
    position: fixed;
    width: 5px;
    height: 5px;
    background-color: rgba(255, 255, 157, 0.7);
    border-radius: 50%;
    filter: blur(1px);
    box-shadow: 0 0 10px rgba(255, 255, 157, 0.5), 0 0 20px rgba(255, 255, 157, 0.3);
    pointer-events: none;
    opacity: 0;
    z-index: 0;
}

.dark-mode .firefly {
    animation: fireflyFloat 10s linear infinite;
}

@keyframes fireflyFloat {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
    60% {
        opacity: 0.8;
    }
    80%, 100% {
        opacity: 0;
    }
}

/* Smart color theme transitions */
body {
    transition: background-color 0.5s ease, color 0.5s ease;
}

.hero::before, 
.service-card, 
.process-item, 
.gallery-item,
.contact-form,
nav {
    transition: background-color 0.5s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Mouse trail effect */
.mouse-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--leaf-1);
    pointer-events: none;
    opacity: 0;
    z-index: 9999;
    mix-blend-mode: screen;
}

/* Enhanced shadows for depth */
.service-card, 
.process-item, 
.gallery-item {
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.05),
        0 15px 35px rgba(0, 0, 0, 0.05);
}

/* Nature-inspired text selection color */
::selection {
    background-color: rgba(76, 175, 80, 0.3);
    color: var(--dark-bg);
}

/* Dynamic grass at footer */
.footer-grass {
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    overflow: hidden;
}

.grass-blade {
    position: absolute;
    bottom: 0;
    width: 3px;
    background-color: var(--leaf-1);
    border-radius: 10px 10px 0 0;
    transform-origin: bottom center;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.grass-blade::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, var(--leaf-1), var(--leaf-3));
    border-radius: 10px 10px 0 0;
}

footer:hover .grass-blade {
    animation: grassSway 2s ease-in-out infinite;
}

@keyframes grassSway {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(5deg);
    }
    75% {
        transform: rotate(-5deg);
    }
}/* ===== GLOBAL STYLES ===== */
:root {
    --primary-color: #4CAF50;
    --secondary-color: #8BC34A;
    --accent-color: #FFF59D;
    --text-color: #2E3440;
    --light-text: #f5f5f5;
    --dark-bg: #1a2421;
    --light-bg: #f2f7f2;
    --shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --leaf-1: #66BB6A;
    --leaf-2: #8BC34A;
    --leaf-3: #AED581;
    --earth-1: #795548;
    --earth-2: #5D4037;
    --water-1: #42A5F5;
    --water-2: #29B6F6;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(140, 217, 179, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(76, 175, 80, 0.05) 0%, transparent 30%);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' fill-opacity='0.03'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%234CAF50'/%3E%3C/svg%3E");
    z-index: -1;
    pointer-events: none;
    opacity: 0.3;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.highlight {
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: var(--accent-color);
    z-index: -1;
    opacity: 0.5;
}

section {
    padding: 4rem 0;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--leaf-1), var(--leaf-3));
    z-index: -1;
    transition: opacity 0.5s ease;
    opacity: 0;
    border-radius: 30px;
}

.btn::after {
    content: '';
    position: absolute;
    left: -50%;
    top: -130%;
    width: 200%;
    height: 200%;
    background-color: rgba(255, 255, 255, 0.15);
    transform: rotate(45deg);
    transition: var(--transition);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(76, 175, 80, 0.3);
}

.btn:hover::before {
    opacity: 1;
}

.btn:hover::after {
    left: 100%;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.1);
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    font-weight: 700;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

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

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/hero-bg.jpg') center/cover;
    color: var(--light-text);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(76, 175, 80, 0.5), transparent);
    opacity: 0.4;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.2' d='M0,128L48,144C96,160,192,192,288,192C384,192,480,160,576,144C672,128,768,128,864,149.3C960,171,1056,213,1152,213.3C1248,213,1344,171,1392,149.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: bottom;
    z-index: 1;
    opacity: 0.7;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    animation: fadeUpIn 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-content h2 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation: fadeUpIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.hero-content .btn {
    opacity: 0;
    animation: fadeUpIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

@keyframes fadeUpIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ABOUT SECTION ===== */
.about {
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
    height: 400px;
}

.image-container {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--leaf-1), var(--leaf-2));
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.2);
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 30%);
}

/* Nature elements */
.floating-element {
    position: absolute;
    opacity: 0.85;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    animation: floatNature 8s infinite ease-in-out;
}

/* Leaf shape */
.floating-element:nth-child(1) {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 10%;
    background-color: var(--leaf-3);
    animation-delay: 0s;
    border-radius: 50% 0 50% 0;
    transform: rotate(45deg);
}

/* Flower shape */
.floating-element:nth-child(2) {
    width: 100px;
    height: 100px;
    top: 40%;
    right: 15%;
    background-color: var(--accent-color);
    animation-delay: 2s;
    clip-path: polygon(50% 0%, 80% 25%, 100% 50%, 80% 75%, 50% 100%, 20% 75%, 0% 50%, 20% 25%);
}

/* Water drop shape */
.floating-element:nth-child(3) {
    width: 80px;
    height: 110px;
    bottom: 20%;
    left: 30%;
    background-color: var(--water-1);
    animation-delay: 4s;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

@keyframes floatNature {
    0%, 100% {
        transform: translateY(0) rotate(var(--rotation, 0deg));
    }
    25% {
        transform: translateY(-15px) translateX(5px) rotate(var(--rotation, 0deg));
    }
    50% {
        transform: translateY(0) translateX(10px) rotate(var(--rotation, 0deg));
    }
    75% {
        transform: translateY(15px) translateX(5px) rotate(var(--rotation, 0deg));
    }
}

.floating-element:nth-child(1) { --rotation: 45deg; }
.floating-element:nth-child(2) { --rotation: 0deg; }
.floating-element:nth-child(3) { --rotation: -45deg; }

/* ===== SERVICES SECTION ===== */
.services {
    background-color: var(--dark-bg);
    color: var(--light-text);
    position: relative;
    overflow: hidden;
}

.services h2 {
    color: var(--light-text);
    text-align: center;
    margin-bottom: 3rem;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(76, 175, 80, 0.1), transparent);
}

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

.service-card {
    background-color: var(--glass-bg);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--leaf-1), var(--leaf-3));
    z-index: 2;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.service-card:hover {
    transform: translateY(-15px);
}

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

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

.service-icon {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.service-card:hover .service-icon::after {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.6;
}

.service-card h3 {
    color: var(--light-text);
    margin-bottom: 1rem;
}

/* ===== PROCESS SECTION ===== */
.process {
    background: linear-gradient(135deg, var(--light-bg) 70%, rgba(76, 175, 80, 0.1));
    position: relative;
    overflow: hidden;
}

.process h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    position: relative;
}

.process-item {
    text-align: center;
    position: relative;
    padding: 1.5rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.process-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.process-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    font-weight: 700;
    font-size: 1.3rem;
    position: relative;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
    transition: var(--transition);
}

.process-number::before {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    border: 2px dashed var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

.process-number::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
    top: 0;
    left: 75%;
    box-shadow: 0 0 10px rgba(255, 245, 157, 0.8);
}

.process-item:hover .process-number {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(76, 175, 80, 0.4);
}

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

/* ===== GALLERY SECTION ===== */
.gallery {
    background-color: var(--light-bg);
}

.gallery h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.4) 0%, rgba(139, 195, 74, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 30px rgba(76, 175, 80, 0.2);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-image {
    height: 250px;
    background-color: var(--leaf-2);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.gallery-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 30%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 20%);
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.gallery-caption {
    padding: 1.2rem;
    text-align: center;
    font-weight: 500;
    background-color: white;
    position: relative;
    z-index: 1;
    transform: translateZ(10px);
    border-top: 3px solid var(--leaf-1);
}

/* Plant decoration in gallery items */
.gallery-decoration {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover .gallery-decoration {
    transform: rotate(180deg) scale(1.1) !important;
}

.plant-silhouette {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover .plant-silhouette {
    transform: translateY(-10px) !important;
}

.gallery-caption {
    padding: 1rem;
    text-align: center;
    font-weight: 500;
    background-color: white;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background-color: var(--dark-bg);
    color: var(--light-text);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cpath d='M25,175 C50,150 50,125 25,100 C0,75 0,50 25,25' stroke='%234CAF50' stroke-width='2' fill='none' stroke-opacity='0.2'/%3E%3Cpath d='M50,175 C75,150 75,125 50,100 C25,75 25,50 50,25' stroke='%234CAF50' stroke-width='2' fill='none' stroke-opacity='0.2'/%3E%3Cpath d='M75,175 C100,150 100,125 75,100 C50,75 50,50 75,25' stroke='%234CAF50' stroke-width='2' fill='none' stroke-opacity='0.2'/%3E%3Cpath d='M100,175 C125,150 125,125 100,100 C75,75 75,50 100,25' stroke='%234CAF50' stroke-width='2' fill='none' stroke-opacity='0.2'/%3E%3Cpath d='M125,175 C150,150 150,125 125,100 C100,75 100,50 125,25' stroke='%234CAF50' stroke-width='2' fill='none' stroke-opacity='0.2'/%3E%3Cpath d='M150,175 C175,150 175,125 150,100 C125,75 125,50 150,25' stroke='%234CAF50' stroke-width='2' fill='none' stroke-opacity='0.2'/%3E%3C/svg%3E");
    opacity: 0.1;
}

.contact h2 {
    color: var(--light-text);
    text-align: center;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.contact-form {
    background-color: var(--glass-bg);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(76, 175, 80, 0.1) 0%, transparent 30%);
    transform: rotate(45deg);
    z-index: -1;
    animation: shimmerBackground 15s infinite linear;
}

@keyframes shimmerBackground {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.form-group {
    margin-bottom: 1.8rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
    transform-origin: left;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--light-text);
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--leaf-1);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
    background-color: rgba(255, 255, 255, 0.1);
}

.form-group input:focus + label,
.form-group textarea:focus + label {
    color: var(--leaf-1);
    transform: scale(1.05);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1.2rem;
    transition: var(--transition);
    padding: 1rem;
    border-radius: var(--border-radius);
}

.info-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.info-item svg {
    flex-shrink: 0;
    color: var(--leaf-2);
    filter: drop-shadow(0 2px 5px rgba(76, 175, 80, 0.3));
}

.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--glass-bg);
    border-radius: 50%;
    transition: var(--transition);
    color: var(--light-text);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--leaf-1), var(--leaf-2));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
}

.social-link:hover::before {
    opacity: 1;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, 
        transparent 0%, 
        var(--leaf-1) 20%, 
        var(--leaf-2) 50%, 
        var(--leaf-1) 80%, 
        transparent 100%);
}

/* ===== ANIMATIONS ===== */
@keyframes leafFloat {
    0%, 100% {
        transform: rotate(0deg) translateY(0);
    }
    25% {
        transform: rotate(5deg) translateY(-10px);
    }
    50% {
        transform: rotate(0deg) translateY(0);
    }
    75% {
        transform: rotate(-5deg) translateY(10px);
    }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        order: -1;
        height: 350px;
    }
    
    .hero-content h2 {
        font-size: 3rem;
    }
    
    .service-card,
    .process-item,
    .gallery-item {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }
}

@media (max-width: 768px) {
    :root {
        --border-radius: 10px;
    }
    
    nav ul {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.5s;
        backdrop-filter: blur(10px);
        gap: 2rem;
    }
    
    nav ul.active {
        left: 0;
    }
    
    nav ul li a {
        font-size: 1.2rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .process-timeline,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .floating-element {
        opacity: 0.5;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 0.8rem 1.6rem;
        font-size: 0.9rem;
    }
    
    .process-number {
        width: 50px;
        height: 50px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* ===== NATURE-INSPIRED ANIMATIONS ===== */
/* Leaf falling animation */
@keyframes leafFall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(calc(100vh + 100px)) rotate(360deg);
        opacity: 0;
    }
}

/* Water ripple animation */
@keyframes ripple {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Smooth appearance animation for elements */
@keyframes smoothAppear {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Advanced floating effect for gallery items */
.gallery-item {
    transition: 
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* === ERGÄNZUNGEN FÜR NEUE EFFEKTE UND ANIMATIONEN === */

/* Natur-inspirierte Elemente */
.nature-element {
    position: fixed;
    width: 30px;
    height: 30px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.5;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

/* Mausverfolgungs-Effekt */
.mouse-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: screen;
    filter: blur(1px);
}

/* Button Ripple-Effekt */
.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    pointer-events: none;
}

/* Natürliche Ladeanimation */
.natural-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.natural-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.natural-loader .stem {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: growStem 2s ease-out forwards;
}

.natural-loader .leaf {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: growLeaf 1s ease-out forwards;
}

.natural-loader .flower {
    transform-origin: center;
    transform: scale(0);
    animation: bloomFlower 1s ease-out forwards;
}

/* Tag/Nacht-Modus Toggle */
.day-night-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5f5f5, #dcdcdc);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease, background 0.3s ease;
}

.day-night-toggle:hover {
    transform: scale(1.1);
}

.day-night-toggle .sun-moon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #FFC107;
    position: relative;
    transition: all 0.3s ease;
}

.dark-mode .day-night-toggle .sun-moon {
    background-color: #E0E0E0;
    box-shadow: inset -3px -3px 0 0 #BDBDBD;
}

/* Glühwürmchen-Effekt */
.firefly {
    position: fixed;
    width: 5px;
    height: 5px;
    background-color: rgba(255, 255, 157, 0.7);
    border-radius: 50%;
    filter: blur(1px);
    box-shadow: 0 0 10px rgba(255, 255, 157, 0.5), 0 0 20px rgba(255, 255, 157, 0.3);
    pointer-events: none;
    z-index: 0;
}

/* Jahreszeiten-Indikator */
.season-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.season-spring {
    background: linear-gradient(135deg, #8BC34A, #4CAF50);
}

.season-summer {
    background: linear-gradient(135deg, #FFC107, #FF9800);
}

.season-fall {
    background: linear-gradient(135deg, #FF9800, #F44336);
}

.season-winter {
    background: linear-gradient(135deg, #90CAF9, #42A5F5);
}

/* Wetter-Effekte */
.weather-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.raindrop {
    position: absolute;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 100%);
}

.cloud {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.sun-rays {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 245, 157, 0.8) 0%, rgba(255, 245, 157, 0) 70%);
    border-radius: 50%;
}

.sun-beam {
    position: absolute;
    background: linear-gradient(to right, rgba(255, 245, 157, 0.8), rgba(255, 245, 157, 0));
}

.light-particle {
    position: absolute;
    background-color: rgba(255, 245, 157, 0.6);
    border-radius: 50%;
    filter: blur(1px);
}

/* Graswuchs am Footer */
.footer-grass {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    overflow: hidden;
}

.grass-blade {
    position: absolute;
    bottom: 0;
    width: 3px;
    background-color: var(--primary-color);
    border-radius: 10px 10px 0 0;
    transform-origin: bottom center;
    animation: grassSway 3s ease-in-out infinite alternate;
}

.grass-blade::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, var(--primary-color), var(--secondary-color));
    border-radius: 10px 10px 0 0;
}

/* Wasser-Tropfen-Effekte */
.water-drop {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3));
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.2));
    z-index: 5;
    pointer-events: none;
}

.water-ripple {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    z-index: 4;
    pointer-events: none;
}

/* Schwimmende Blätter in der Galerie */
.floating-leaf {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
}

/* Gallery Plant-Animationen */
.gallery-plant {
    animation-play-state: paused;
}

.gallery-item:hover .gallery-plant {
    animation-play-state: running;
}

/* Animierte Text-Effekte */
.animated-text {
    opacity: 0;
    transform: translateY(20px);
}

/* Dark Mode Styles */
.dark-mode {
    color: var(--light-text);
}

.dark-mode header {
    background: rgba(10, 20, 16, 0.85);
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}

.dark-mode .service-card, 
.dark-mode .process-item, 
.dark-mode .gallery-item {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.dark-mode .contact-form {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.dark-mode .gallery-caption {
    background: rgba(0, 0, 0, 0.7);
    color: var(--light-text);
}

.dark-mode .btn {
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.dark-mode .btn:hover {
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5);
}

/* Weitere Animationen */
@keyframes growStem {
    to { stroke-dashoffset: 0; }
}

@keyframes growLeaf {
    to { stroke-dashoffset: 0; }
}

@keyframes bloomFlower {
    0% { 
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes grassSway {
    0%, 100% {
        transform: rotate(-2deg);
    }
    50% {
        transform: rotate(2deg);
    }
}

@keyframes fireflyFloat {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
    60% {
        opacity: 0.8;
    }
    80%, 100% {
        opacity: 0;
    }
}

@keyframes rain {
    0% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(calc(100vh + 20px));
    }
}

@keyframes cloudDrift {
    0% {
        transform: translateX(-100px);
    }
    100% {
        transform: translateX(calc(100vw + 100px));
    }
}

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

@keyframes beamFade {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.8;
    }
}

@keyframes floatParticle {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(20px, 20px);
    }
}

@keyframes waterDrop {
    0% {
        transform: scale(0) translateY(-50px);
        opacity: 0;
    }
    10% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
    80% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}

@keyframes waterRipple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(6);
        opacity: 0;
    }
}

@keyframes buttonPlantGrow {
    to { height: 30px; }
}

@keyframes buttonLeafGrow {
    to { transform: rotate(-45deg) scale(1); }
}

@keyframes buttonFlowerBloom {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes cardRipple {
    0% {
        width: 0;
        height: 0;
        opacity: 0.5;
    }
    100% {
        width: 500px;
        height: 500px;
        opacity: 0;
    }
}

@keyframes dropAppear {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    10% {
        opacity: 1;
        transform: translateY(0);
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes dropRipple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(5);
        opacity: 0;
    }
}

/* Responsive Anpassungen für alle Effekte */
@media (max-width: 768px) {
    .natural-loader svg {
        width: 80px;
        height: 80px;
    }
    
    .day-night-toggle {
        width: 40px;
        height: 40px;
        bottom: 10px;
        right: 10px;
    }
    
    .season-indicator {
        width: 30px;
        height: 30px;
        top: 10px;
        right: 10px;
    }
    
    .mouse-trail {
        display: none; /* Ausblenden auf Mobilgeräten */
    }
}

@media (max-width: 576px) {
    .grass-blade {
        height: 15px !important; /* Niedrigere Grashalme auf kleinen Geräten */
    }
    
    .day-night-toggle {
        width: 35px;
        height: 35px;
    }
    
    .day-night-toggle .sun-moon {
        width: 18px;
        height: 18px;
    }
}