body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    color: #1a1a1a;
    background: #f5f5f5;
}

/* HERO VIDEO BACKGROUND */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%);
    transform: scale(1.1); /* slow-motion zoom feel */
    animation: slowZoom 30s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1.1); }
    to { transform: scale(1.25); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

.hero-content {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 4rem;
    margin: 0;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-top: 10px;
}

/* FLOATING POLLINATORS */
.pollinator {
    position: absolute;
    width: 120px;
    opacity: 0.85;
    pointer-events: none;
}

.bee {
    top: 20%;
    left: -150px;
    animation: beeFlight 18s linear infinite;
}

.butterfly {
    top: 60%;
    left: 110%;
    width: 150px;
    animation: butterflyFlight 22s ease-in-out infinite;
}

@keyframes beeFlight {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    25% { transform: translateX(400px) translateY(-40px) rotate(10deg); }
    50% { transform: translateX(800px) translateY(20px) rotate(-10deg); }
    75% { transform: translateX(1200px) translateY(-30px) rotate(5deg); }
    100% { transform: translateX(1600px) translateY(0) rotate(0deg); }
}

@keyframes butterflyFlight {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    20% { transform: translateX(-300px) translateY(-60px) rotate(10deg); }
    40% { transform: translateX(-600px) translateY(40px) rotate(-10deg); }
    60% { transform: translateX(-900px) translateY(-30px) rotate(5deg); }
    80% { transform: translateX(-1200px) translateY(20px) rotate(-5deg); }
    100% { transform: translateX(-1500px) translateY(0) rotate(0deg); }
}

/* SECTIONS */
.section {
    padding: 80px 10%;
    background: white;
    margin-bottom: 20px;
    border-radius: 8px;
}

.section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2d6a4f;
}

.testimonial {
    background: #e9f5ec;
    padding: 20px;
    margin: 15px 0;
    border-left: 5px solid #2d6a4f;
    border-radius: 4px;
}