:root {
    --primary: #2b4c3b; /* Deep nature green */
    --primary-light: #3e6d54;
    --secondary: #e6b981; /* Earth/wood tone */
    --secondary-hover: #d1a36d;
    --text-main: #333333;
    --text-light: #666666;
    --bg-main: #ffffff;
    --bg-light: #f7f9f8;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --font-main: 'Outfit', sans-serif;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-hover: 0 15px 35px rgba(43, 76, 59, 0.15);
}

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

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

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

ul {
    list-style: none;
}

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

.section-padding {
    padding: 6rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.highlight {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(43, 76, 59, 0.3);
}

.btn-secondary {
    background-color: white;
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 0.5rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.logo img {
    height: 65px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
}

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

.nav-links a:hover::after {
    width: 100%;
}

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

.phone-btn {
    background-color: var(--secondary);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-btn:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 1001;
    padding: 3rem 2rem;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.mobile-menu nav a {
    font-size: 1.2rem;
    font-weight: 600;
}

.close-menu {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("assets/images/premium_landscape_hero.png");
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.4) 100%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.hero h1 .highlight {
    color: var(--primary);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #444;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-down a {
    color: var(--primary);
    font-size: 2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Stats Banner */
.stats-banner {
    background-color: var(--primary);
    color: white;
    padding: 4rem 0;
    margin-top: -5px; /* Removes tiny gap */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--font-main);
}

.stat-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.about-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.02);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.about-card .icon-box {
    width: 70px;
    height: 70px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.about-card:hover .icon-box {
    background-color: var(--primary);
    color: white;
}

.about-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Services Section */
.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--primary);
}

.service-content ul {
    margin-bottom: 1.5rem;
}

.service-content ul li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-content ul li i {
    color: var(--secondary);
    font-size: 1rem;
}

.service-carousel {
    flex: 1;
    width: 100%;
    min-width: 0; /* Important for Swiper flexbox */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.swiper-slide {
    height: 400px;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Swiper styling */
.swiper-button-next, .swiper-button-prev {
    color: white !important;
    background: rgba(0, 0, 0, 0.4);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
}
.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 18px !important;
}
.swiper-pagination-bullet {
    background: white !important;
    opacity: 0.6;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary) !important;
}

/* Tax Advantage */
.tax-advantage {
    background-color: var(--primary);
    color: white;
}

.tax-advantage p {
    color: rgba(255,255,255,0.8);
}

.tax-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.tax-content {
    flex: 1;
}

.tax-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.tax-content .highlight {
    color: var(--secondary);
}

.tax-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.tax-image img {
    max-width: 100%;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
    animation: float 6s ease-in-out infinite;
}

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

.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-info {
    background-color: var(--primary);
    color: white;
    padding: 3rem;
}

.contact-info p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item .icon {
    font-size: 1.5rem;
    color: var(--secondary);
}

.info-item h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.contact-form-container {
    padding: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-main);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(43, 76, 59, 0.1);
}

.submit-btn {
    width: 100%;
    justify-content: center;
    padding: 1.2rem;
    font-size: 1.1rem;
}

.form-result {
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}

.form-result.success {
    color: var(--primary);
}

.form-result.error {
    color: #e74c3c;
}

/* Footer */
footer {
    background-color: #1a2e24;
    color: white;
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand img {
    height: 60px;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    background-color: rgba(0,0,0,0.2);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255,255,255,0.6);
}

.footer-bottom a {
    color: white;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Animated Bee */
.flying-bee {
    position: absolute;
    font-size: 2.5rem;
    z-index: 10;
    filter: drop-shadow(0 5px 5px rgba(0,0,0,0.2));
    animation: flyBee 18s linear infinite, bobBee 2s ease-in-out infinite alternate;
    pointer-events: none; /* So it doesn't block clicks */
}

@keyframes flyBee {
    0% {
        left: -10%;
        transform: scaleX(1);
    }
    45% {
        left: 110%;
        transform: scaleX(1);
    }
    50% {
        left: 110%;
        transform: scaleX(-1); /* Turn around */
    }
    95% {
        left: -10%;
        transform: scaleX(-1);
    }
    100% {
        left: -10%;
        transform: scaleX(1);
    }
}

@keyframes bobBee {
    0% { top: 15%; }
    100% { top: 25%; }
}

/* Avis Clients / Reviews */
.reviews-carousel {
    padding-bottom: 3rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-card .stars {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.review-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.review-author {
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.2rem;
}

.review-source {
    font-size: 0.85rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-source i {
    color: #4285F4; /* Google Blue */
}

/* Reviews Swiper Customization */
.reviews-carousel {
    padding: 0 40px 3rem 40px; /* added horizontal padding to make room for arrows */
}

.reviews-carousel .swiper-pagination-bullet {
    background: var(--primary);
    opacity: 0.4;
}

.reviews-carousel .swiper-pagination-bullet-active {
    background: var(--primary-dark);
    opacity: 1;
}

.reviews-carousel .swiper-button-next,
.reviews-carousel .swiper-button-prev {
    color: var(--primary) !important;
    background: transparent;
    box-shadow: none;
    width: 40px;
    height: 40px;
    top: 50%;
    margin-top: -30px; /* Offset to center relative to the cards, ignoring bottom pagination */
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-carousel .swiper-button-next {
    right: -10px;
}

.reviews-carousel .swiper-button-prev {
    left: -10px;
}

.reviews-carousel .swiper-button-next::after,
.reviews-carousel .swiper-button-prev::after {
    font-size: 2rem !important;
    font-weight: 800;
}

/* Social Media Banner */
.social-banner {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.05) 0%, rgba(27, 94, 32, 0.05) 100%);
}

.social-cards {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.social-card {
    position: relative;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text-main);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 250px;
    z-index: 1;
}

.social-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.social-card .social-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.social-card:hover .social-icon {
    transform: scale(1.1) rotate(5deg);
}

.social-card.facebook .social-icon { color: #1877F2; }
.social-card.instagram .social-icon { color: #E4405F; }

.social-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.social-card p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Pulsing Animation behind the cards */
.social-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    z-index: -1;
    animation: socialPulse 3s infinite ease-in-out;
}

.social-card.facebook .social-pulse {
    background: rgba(24, 119, 242, 0.4);
}

.social-card.instagram .social-pulse {
    background: rgba(228, 64, 95, 0.4);
}

@keyframes socialPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.08); opacity: 0; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

/* -------------------------------------
 * New Nature Animations (Bird, Snail, Cloud, Sprout)
 * ------------------------------------- */
.crawling-snail {
    position: absolute;
    left: 10px; /* Aligned with the timeline line */
    top: 0;
    font-size: 1.5rem;
    z-index: 3;
    animation: crawlSnail 40s infinite linear;
}
@keyframes crawlSnail {
    0% { transform: translateY(0) rotate(90deg) scaleX(-1); }
    50% { transform: translateY(80vh) rotate(90deg) scaleX(-1); }
    50.01% { transform: translateY(80vh) rotate(-90deg) scaleX(1); }
    100% { transform: translateY(0) rotate(-90deg) scaleX(1); }
}

.drifting-cloud {
    position: absolute;
    top: 30px;
    right: -100px;
    font-size: 4rem;
    opacity: 0.4;
    z-index: 0;
    animation: driftCloud 45s infinite linear;
}
@keyframes driftCloud {
    0% { transform: translateX(100px); }
    100% { transform: translateX(-110vw); }
}

/* -------------------------------------
 * Custom SVG Animations (Replaces Lottie)
 * ------------------------------------- */
.custom-animation-container {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem auto;
}

/* 1. Mower Animation */
.anim-mower .mower-guy {
    animation: moveMower 4s infinite alternate ease-in-out;
}
.anim-mower .wheel-1 {
    transform-origin: 95px 145px;
    animation: spinWheel 1s infinite linear;
}
.anim-mower .wheel-2 {
    transform-origin: 130px 145px;
    animation: spinWheel 1s infinite linear;
}
.anim-mower .grass-uncut {
    animation: cutGrass 4s infinite alternate ease-in-out;
}
.anim-mower .leg-1 {
    transform-origin: top;
    animation: walkLeg1 0.5s infinite alternate ease-in-out;
}
.anim-mower .leg-2 {
    transform-origin: top;
    animation: walkLeg2 0.5s infinite alternate ease-in-out;
}

@keyframes moveMower {
    0% { transform: translateX(-30px); }
    100% { transform: translateX(50px); }
}
@keyframes spinWheel {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes cutGrass {
    0% { width: 120px; x: 80; }
    100% { width: 40px; x: 160; }
}
@keyframes walkLeg1 {
    0% { transform: rotate(10deg); }
    100% { transform: rotate(-10deg); }
}
@keyframes walkLeg2 {
    0% { transform: rotate(-10deg); }
    100% { transform: rotate(10deg); }
}

/* 2. Trimming Animation */
.anim-trim .trim-action {
    transform-origin: 50px 80px;
    animation: trimMotion 0.6s infinite alternate ease-in-out;
}
.anim-trim .leaf-1 { animation: fallLeaf 2s infinite linear; animation-delay: 0s; }
.anim-trim .leaf-2 { animation: fallLeaf 2.5s infinite linear; animation-delay: 0.7s; }
.anim-trim .leaf-3 { animation: fallLeaf 2.2s infinite linear; animation-delay: 1.4s; }
.anim-trim .leaf-4 { animation: fallLeaf 2.8s infinite linear; animation-delay: 0.4s; }

@keyframes trimMotion {
    0% { transform: rotate(-10deg) translateY(5px); }
    100% { transform: rotate(20deg) translateY(-10px); }
}
@keyframes fallLeaf {
    0% { transform: translateY(-10px) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(60px) rotate(90deg); opacity: 0; }
}

/* 3. Planting Animation */
.anim-plant .sprout {
    transform-origin: 100px 150px;
    animation: growSprout 3s infinite alternate ease-in-out;
}
.anim-plant .watering-can {
    transform-origin: 70px 70px;
    animation: tiltCan 3s infinite alternate ease-in-out;
}
.anim-plant .drop-1 { animation: fallDrop 1s infinite linear; animation-delay: 0s; }
.anim-plant .drop-2 { animation: fallDrop 1s infinite linear; animation-delay: 0.3s; }
.anim-plant .drop-3 { animation: fallDrop 1s infinite linear; animation-delay: 0.6s; }

@keyframes growSprout {
    0% { transform: scale(0.2); }
    100% { transform: scale(1); }
}
@keyframes tiltCan {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-20deg); }
}
@keyframes fallDrop {
    0% { transform: translate(0, 0); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translate(20px, 40px); opacity: 0; }
}

/* -------------------------------------
 * Lottie Animations Section
 * ------------------------------------- */
.lottie-section {
    background-color: var(--bg-light);
}

.lottie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.lottie-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lottie-card:hover {
    transform: translateY(-10px);
}

.lottie-container {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem auto;
}

.lottie-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.lottie-card p {
    color: #666;
    margin-bottom: 0;
    font-size: 1rem;
}

/* -------------------------------------
 * Timeline / Notre Processus
 * ------------------------------------- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    height: 100%;
    width: 2px;
    background: rgba(46, 125, 50, 0.2);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.3);
}

.timeline-content {
    margin-left: 2rem;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex-grow: 1;
}

.timeline-content h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

/* -------------------------------------
 * FAQ Accordion
 * ------------------------------------- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.03);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.2rem 1.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fdfdfd;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin: 0;
    color: #555;
}

/* -------------------------------------
 * WhatsApp Floating Button
 * ------------------------------------- */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: white;
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Floating Butterfly */
.floating-butterfly {
    position: absolute;
    font-size: 2rem;
    z-index: 10;
    pointer-events: none;
    animation: flyButterfly 25s ease-in-out infinite, flutter 0.5s infinite alternate;
}

@keyframes flyButterfly {
    0% { top: 10%; left: -5%; }
    30% { top: 50%; left: 30%; }
    50% { top: 20%; left: 80%; }
    60% { top: 20%; left: 80%; transform: scaleX(-1); }
    80% { top: 80%; left: 40%; transform: scaleX(-1); }
    95% { top: 10%; left: -5%; transform: scaleX(-1); }
    100% { top: 10%; left: -5%; transform: scaleX(1); }
}

@keyframes flutter {
    0% { margin-top: 0px; rotate: -10deg; }
    100% { margin-top: -15px; rotate: 10deg; }
}

/* Falling Leaves */
.falling-leaf {
    position: absolute;
    font-size: 1.5rem;
    z-index: 5;
    pointer-events: none;
    animation: fallLeaf linear infinite;
    opacity: 0.8;
}

.leaf-1 { left: 15%; animation-duration: 14s; animation-delay: 0s; }
.leaf-2 { left: 50%; animation-duration: 18s; animation-delay: 5s; font-size: 2rem; }
.leaf-3 { left: 85%; animation-duration: 12s; animation-delay: 2s; }

@keyframes fallLeaf {
    0% { top: -5%; transform: translateX(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.8; }
    50% { transform: translateX(80px) rotate(180deg); }
    90% { opacity: 0.8; }
    100% { top: 105%; transform: translateX(-80px) rotate(360deg); opacity: 0; }
}

/* Crawling Ladybug */
.crawling-ladybug {
    position: absolute;
    font-size: 1.2rem;
    z-index: 10;
    pointer-events: none;
    animation: crawlBug 40s linear infinite;
    top: 5px;
}

@keyframes crawlBug {
    0% { right: -5%; transform: scaleX(1); }
    49% { right: 105%; transform: scaleX(1); }
    50% { right: 105%; transform: scaleX(-1); }
    99% { right: -5%; transform: scaleX(-1); }
    100% { right: -5%; transform: scaleX(1); }
}

/* Flying Bees */
.flying-bee {
    position: absolute;
    font-size: 2rem;
    z-index: 10;
    pointer-events: none;
    transition: transform 3s ease-in-out;
    animation: beeBuzz 0.1s infinite alternate linear;
    top: 0;
    left: 0;
}

@keyframes beeBuzz {
    0% { margin-top: 0; }
    100% { margin-top: -6px; }
}

.mobile-bee {
    display: none;
    position: absolute;
    font-size: 2rem;
    z-index: 10;
    top: 15%;
    left: -10%;
    pointer-events: none;
    animation: flyBeeCool 18s ease-in-out infinite, beeBuzz 0.1s infinite alternate linear;
}

@keyframes flyBeeCool {
    0%   { left: -10%; top: 14%; transform: scaleX(-1); }
    25%  { left: 40%;  top: 12%; transform: scaleX(-1); }
    49%  { left: 110%; top: 16%; transform: scaleX(-1); }
    50%  { left: 110%; top: 16%; transform: scaleX(1); }
    75%  { left: 30%;  top: 13%; transform: scaleX(1); }
    99%  { left: -10%; top: 14%; transform: scaleX(1); }
    100% { left: -10%; top: 14%; transform: scaleX(-1); }
}

/* Responsive */
@media (max-width: 992px) {
    .desktop-bees {
        display: none !important;
    }
    .mobile-bee {
        display: block;
    }
    
    .service-row, .service-row.reverse {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .service-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .service-content ul li {
        justify-content: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .tax-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .phone-btn {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-background::after {
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    }
    
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 0 auto;
    }
}
