/* =====================================
LAWN LEGENDS - DUALITY OF SEASONS
Bold. Epic. Legendary.
===================================== */

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

:root {
    --royal-blue: #15477c;
    --vibrant-green: #01a54e;
    --autumn-orange: #FF6B35;
    --pure-white: #FFFFFF;
    --midnight-blue: #0A1929;
    --ice-blue: #B3E5FC;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--pure-white);
    background: #000;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.highlight {
    background: linear-gradient(135deg, var(--vibrant-green) 0%, var(--royal-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== NAVIGATION ========== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 25, 41, 0.95);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    padding: 15px 0;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 255, 65, 0.3));
    transition: filter 0.3s ease;
}

.logo-link:hover .logo-img {
    filter: drop-shadow(0 4px 12px rgba(0, 255, 65, 0.5));
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--pure-white);
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.lawn-text {
    color: var(--vibrant-green);
}

.legends-text {
    color: var(--royal-blue);
}

.llc-text {
    color: var(--vibrant-green);
    font-size: 0.9rem;
    margin-left: 2px;
    font-weight: 700;
    vertical-align: super;
    line-height: 0;
}

/* Backward compatibility for old .logo class */
.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--pure-white);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.05rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--vibrant-green), var(--royal-blue));
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--pure-white);
    transition: all 0.3s ease;
}

/* ========== HERO: SEASONAL TRANSITIONS ========== */

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Season Layers */
.season-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 3s ease-in-out, transform 5s ease-in-out;
    z-index: 1;
}

.season-layer.active {
    opacity: 1;
    transform: scale(1);
}

/* Summer - Lawn Care with realistic grass texture */
#summerLayer {
    background:
        linear-gradient(to bottom,
            #87CEEB 0%,
            #87CEEB 40%,
            rgba(135, 206, 235, 0.6) 70%,
            transparent 100%
        ),
        url('../images/SummerLawn.svg') center bottom / cover no-repeat;
    background-color: #87CEEB;
}

/* Animated sun for summer */
#summerLayer::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle,
        #FFF700 0%,
        #FFD700 40%,
        rgba(255, 215, 0, 0.6) 70%,
        rgba(255, 215, 0, 0) 100%
    );
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.8),
                0 0 100px rgba(255, 215, 0, 0.5);
    animation: sunGlow 4s ease-in-out infinite;
    z-index: 2;
}

@keyframes sunGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 60px rgba(255, 215, 0, 0.8), 0 0 100px rgba(255, 215, 0, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 80px rgba(255, 215, 0, 0.9), 0 0 120px rgba(255, 215, 0, 0.6);
    }
}

/* Fall - Cleanup with autumn leaves on ground */
#fallLayer {
    background:
        linear-gradient(to bottom,
            #CD853F 0%,
            #D2A679 35%,
            rgba(210, 166, 121, 0.5) 70%,
            transparent 100%
        ),
        url('../images/Autumn.svg') center bottom / cover no-repeat;
    background-color: #D2691E;
}

/* Dimmer sun for fall */
#fallLayer::before {
    content: '';
    position: absolute;
    top: 12%;
    right: 18%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle,
        #FFE4B5 0%,
        #FFDAB9 40%,
        rgba(255, 218, 185, 0.5) 70%,
        rgba(255, 218, 185, 0) 100%
    );
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(255, 218, 185, 0.6),
                0 0 70px rgba(255, 218, 185, 0.3);
    opacity: 0.85;
    z-index: 2;
}

/* Winter - Snow Removal with driveway */
#winterLayer {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.45)),
        linear-gradient(to bottom,
            #778899 0%,
            #A9B5C6 20%,
            #C8D3E0 50%,
            transparent 100%
        ),
        url('../images/winter.svg') center bottom / cover no-repeat;
    background-color: #708090;
}

/* Cloud-covered dim sun for winter */
#winterLayer::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 20%;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(230, 230, 230, 0.3) 40%,
        rgba(200, 200, 200, 0.15) 70%,
        rgba(200, 200, 200, 0) 100%
    );
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    opacity: 0.6;
    filter: blur(3px);
    z-index: 2;
}

/* ========== ANIMATED EQUIPMENT ========== */

/* Lawn Mower for Summer - starts at visible edge, moves very slowly forward only */
.lawn-mower {
    position: absolute;
    bottom: 15%;
    left: 2%;
    width: 180px;
    height: 180px;
    z-index: 25;
    background-image: url('../images/Lawnmower.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.4));
    animation: mowerDrift 60s linear infinite;
}

@keyframes mowerDrift {
    0% {
        left: 2%;
        bottom: 15%;
    }
    50% {
        left: 40%;
        bottom: 17%;
    }
    100% {
        left: 2%;
        bottom: 15%;
    }
}

/* Rake for Fall - slow back and forth raking motion on bottom right */
.rake {
    position: absolute;
    bottom: 8%;
    right: 15%;
    width: 190px;
    height: 190px;
    z-index: 25;
    background-image: url('../images/rake.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.4));
    transform-origin: bottom center;
    animation: rakeMotion 8s ease-in-out infinite;
}

@keyframes rakeMotion {
    0%, 100% {
        transform: translateX(0) rotate(-10deg);
    }
    25% {
        transform: translateX(-25px) rotate(-20deg);
    }
    50% {
        transform: translateX(0) rotate(-10deg);
    }
    75% {
        transform: translateX(25px) rotate(0deg);
    }
}

/* Snow Blower for Winter - starts at visible edge, moves very slowly forward only */
.snow-plow {
    position: absolute;
    bottom: 15%;
    left: 2%;
    width: 200px;
    height: 200px;
    z-index: 25;
    background-image: url('../images/snowblower.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.5));
    animation: snowblowerDrift 70s linear infinite;
}

@keyframes snowblowerDrift {
    0% {
        left: 2%;
        bottom: 15%;
    }
    50% {
        left: 40%;
        bottom: 17%;
    }
    100% {
        left: 2%;
        bottom: 15%;
    }
}

/* Particle Containers */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    perspective: 1000px;
}

/* Falling Leaves for Fall - Using SVG images with 3D depth */
.leaf {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.9;
    transform-origin: center;
    transform-style: preserve-3d;
}

/* Depth layers for leaves - larger = closer */
.leaf.depth-close {
    filter: drop-shadow(4px 4px 6px rgba(0, 0, 0, 0.4)) brightness(1.1);
    z-index: 30;
}

.leaf.depth-mid {
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3)) brightness(1);
    z-index: 20;
}

.leaf.depth-far {
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2)) brightness(0.9);
    opacity: 0.75;
    z-index: 10;
}

.leaf-1 {
    background-image: url('../images/leaf-1.svg');
    animation: leafFall1 linear infinite;
}

.leaf-2 {
    background-image: url('../images/leaf-2.svg');
    animation: leafFall2 linear infinite;
}

.leaf-3 {
    background-image: url('../images/leaf-3.svg');
    animation: leafFall3 linear infinite;
}

/* Leaf fall animations with different patterns */
@keyframes leafFall1 {
    0% {
        transform: translateY(-10vh) translateX(0) rotate(0deg) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.9;
    }
    25% {
        transform: translateY(25vh) translateX(15px) rotate(90deg) scale(0.95);
    }
    50% {
        transform: translateY(50vh) translateX(-10px) rotate(180deg) scale(1.05);
        opacity: 0.8;
    }
    75% {
        transform: translateY(75vh) translateX(20px) rotate(270deg) scale(0.9);
    }
    100% {
        transform: translateY(110vh) translateX(-5px) rotate(360deg) scale(1);
        opacity: 0;
    }
}

@keyframes leafFall2 {
    0% {
        transform: translateY(-10vh) translateX(0) rotate(45deg) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.85;
    }
    30% {
        transform: translateY(30vh) translateX(-20px) rotate(135deg) scale(1.1);
    }
    50% {
        transform: translateY(50vh) translateX(10px) rotate(225deg) scale(0.95);
        opacity: 0.75;
    }
    70% {
        transform: translateY(70vh) translateX(-15px) rotate(315deg) scale(1.05);
    }
    100% {
        transform: translateY(110vh) translateX(5px) rotate(405deg) scale(1);
        opacity: 0;
    }
}

@keyframes leafFall3 {
    0% {
        transform: translateY(-10vh) translateX(0) rotate(-30deg) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.9;
    }
    20% {
        transform: translateY(20vh) translateX(25px) rotate(60deg) scale(0.9);
    }
    40% {
        transform: translateY(40vh) translateX(-15px) rotate(150deg) scale(1.05);
    }
    60% {
        transform: translateY(60vh) translateX(20px) rotate(240deg) scale(0.95);
        opacity: 0.7;
    }
    80% {
        transform: translateY(80vh) translateX(-10px) rotate(330deg) scale(1);
    }
    100% {
        transform: translateY(110vh) translateX(0) rotate(420deg) scale(1);
        opacity: 0;
    }
}

/* Snowflakes for Winter with 3D depth */
.snowflake {
    position: absolute;
    color: white;
    font-size: 20px;
    opacity: 0.9;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    user-select: none;
    pointer-events: none;
    transform-style: preserve-3d;
}

.snowflake::before {
    content: '❄';
}

/* Depth layers for snowflakes - larger = closer */
.snowflake.depth-close {
    filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.3)) brightness(1.2);
    z-index: 30;
}

.snowflake.depth-mid {
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.2)) brightness(1);
    z-index: 20;
}

.snowflake.depth-far {
    filter: brightness(0.85);
    opacity: 0.7;
    z-index: 10;
}

/* Varied snowfall animations */
.snowflake:nth-child(3n) {
    animation: snowFall1 linear infinite;
}

.snowflake:nth-child(3n+1) {
    animation: snowFall2 linear infinite;
}

.snowflake:nth-child(3n+2) {
    animation: snowFall3 linear infinite;
}

@keyframes snowFall1 {
    0% {
        transform: translateY(-10vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.9;
    }
    100% {
        transform: translateY(110vh) translateX(50px) rotate(360deg);
        opacity: 0.3;
    }
}

@keyframes snowFall2 {
    0% {
        transform: translateY(-10vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.85;
    }
    100% {
        transform: translateY(110vh) translateX(-30px) rotate(-360deg);
        opacity: 0.2;
    }
}

@keyframes snowFall3 {
    0% {
        transform: translateY(-10vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.95;
    }
    100% {
        transform: translateY(110vh) translateX(20px) rotate(180deg);
        opacity: 0.25;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
}

.hero-logo {
    display: flex;
    gap: 60px;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 4rem;
}

/* Season Badge */
.season-badge {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid var(--vibrant-green);
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    animation: fadeIn 1s ease forwards;
    transition: all 0.3s ease;
}

.season-badge.changing {
    animation: badgePulse 0.6s ease;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); box-shadow: 0 0 20px rgba(0, 255, 65, 0.6); }
}

/* Season Controls */
.season-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
    opacity: 0;
    animation: fadeIn 1s ease forwards 2s;
}

.season-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.season-btn:hover {
    transform: scale(1.1);
    border-color: var(--vibrant-green);
    background: rgba(0, 255, 65, 0.2);
}

.season-btn.active {
    border-color: var(--vibrant-green);
    background: rgba(0, 255, 65, 0.3);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: 3px;
}

.title-word {
    display: inline-block;
    margin: 0 10px;
    opacity: 0;
    animation: wordFadeIn 0.8s ease forwards;
}

.title-word:nth-child(1) { animation-delay: 0.2s; }
.title-word:nth-child(2) { animation-delay: 0.4s; }
.title-word:nth-child(3) { animation-delay: 0.6s; }
.title-word:nth-child(4) { animation-delay: 0.8s; }

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

.highlight {
    /* Flow: Summer Green -> Royal Blue -> Winter Ice */
    background: linear-gradient(
        90deg, 
        var(--vibrant-green) 0%,   /* Summer */
        /*var(--autumn-orange) 60%,  */
        var(--royal-blue) 70%          /* Icy White/Blue (Winter) */
    );
    
    /* Text Masking */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    
    /* CRITICAL: Heavy shadow to make the white/ice part readable */
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.9));
    
    font-weight: 900;
}

.hero-tagline {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 50px;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
    animation: fadeIn 1s ease forwards 1s;
}

.hero-tagline.changing {
    opacity: 0;
    transform: translateY(-10px);
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, var(--vibrant-green), var(--royal-blue));
    color: var(--pure-white);
    border: none;
    padding: 20px 50px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 255, 65, 0.4);
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.2s;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 60px rgba(0, 255, 65, 0.6);
}

/* ========== ABOUT SECTION ========== */

.about {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--midnight-blue) 0%, #000 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 255, 65, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.section-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 8px;
    color: var(--vibrant-green);
    margin-bottom: 15px;
    opacity: 1;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: 2px;
    line-height: 1.2;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--vibrant-green), var(--royal-blue));
    margin-bottom: 40px;
    position: relative;
}

.section-divider::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--pure-white);
    animation: dividerGlow 2s ease-in-out infinite;
}

@keyframes dividerGlow {
    0%, 100% { width: 0; opacity: 0; }
    50% { width: 100%; opacity: 0.6; }
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content {
    animation-delay: 0.2s;
}

.about-visual {
    animation-delay: 0.4s;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--vibrant-green);
}

.body-text {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Owner Block */
.owner-block {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px 30px;
    background: rgba(0, 255, 65, 0.05);
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 65, 0.2);
    transition: all 0.4s ease;
    margin-top: 40px;
}

.owner-block:hover {
    border-color: var(--vibrant-green);
    background: rgba(0, 255, 65, 0.1);
    transform: translateX(10px);
}

.owner-badge {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vibrant-green), var(--royal-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.owner-badge i {
    font-size: 2rem;
    color: var(--pure-white);
}

.owner-info h5 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: var(--pure-white);
}

.owner-info span {
    font-size: 0.95rem;
    opacity: 0.7;
    letter-spacing: 1px;
}

/* Legend Card */
.legend-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    border: 2px solid rgba(0, 255, 65, 0.3);
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.legend-card:hover {
    transform: translateY(-10px);
    border-color: var(--vibrant-green);
    box-shadow: 0 20px 60px rgba(0, 255, 65, 0.4);
}

.card-header {
    background: linear-gradient(135deg, rgba(0, 71, 171, 0.3), rgba(0, 255, 65, 0.3));
    padding: 35px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.card-header i {
    font-size: 3.5rem;
    color: var(--vibrant-green);
    margin-bottom: 15px;
    filter: drop-shadow(0 5px 15px rgba(0, 255, 65, 0.5));
}

.card-header h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.legend-stats {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legend-stats li {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.legend-stats li:last-child {
    border-bottom: none;
}

.legend-stats li:hover {
    background: rgba(0, 255, 65, 0.05);
    padding-left: 40px;
}

.stat-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
}

.stat-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

.legend-stats li:hover .stat-icon::before {
    opacity: 0.4;
}

.stat-icon i {
    position: relative;
    z-index: 1;
}

.stat-icon.summer {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
}

.stat-icon.winter {
    background: linear-gradient(135deg, #87CEEB, #4682B4);
    color: var(--pure-white);
}

.stat-icon.trust {
    background: linear-gradient(135deg, var(--vibrant-green), #00CC33);
    color: var(--pure-white);
}

.stat-text strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.stat-text small {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ========== SERVICES SECTION ========== */

.services {
    padding: 120px 0;
    background: #000;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    opacity: 0.8;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    cursor: pointer;
}

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

.service-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 15px;
    text-align: center;
}

.service-card p {
    text-align: center;
    margin-bottom: 25px;
    opacity: 0.9;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-features i {
    color: currentColor;
    font-size: 0.9rem;
}

/* Card Themes */
.green-card {
    border-color: var(--vibrant-green);
    color: var(--vibrant-green);
}

.green-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 255, 65, 0.4);
    background: rgba(0, 255, 65, 0.05);
}

.orange-card {
    border-color: var(--autumn-orange);
    color: var(--autumn-orange);
}

.orange-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
    background: rgba(255, 107, 53, 0.05);
}

.grey-card {
    border-color: #6C757D;
    color: #6C757D;
}

.grey-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(108, 117, 125, 0.4);
    background: rgba(108, 117, 125, 0.05);
}

.blue-card {
    border-color: var(--ice-blue);
    color: var(--ice-blue);
}

.blue-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(179, 229, 252, 0.4);
    background: rgba(179, 229, 252, 0.05);
}

/* ========== CONTACT SECTION ========== */

.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--midnight-blue) 0%, #000 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-lead {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.contact-details {
    margin-bottom: 50px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.detail-item i {
    font-size: 2rem;
    color: var(--vibrant-green);
    width: 50px;
}

.detail-item h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.detail-item a,
.detail-item p {
    color: var(--pure-white);
    text-decoration: none;
    opacity: 0.9;
    transition: color 0.3s ease;
}

.detail-item a:hover {
    color: var(--vibrant-green);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vibrant-green), var(--royal-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.5);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 65, 0.3);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 18px 25px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--pure-white);
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--vibrant-green);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

.contact-form select {
    cursor: pointer;
}

.contact-form select option {
    background: var(--midnight-blue);
}

.contact-form .cta-button {
    width: 100%;
    opacity: 1;
    animation: none;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid var(--vibrant-green);
    color: var(--vibrant-green);
}

.form-message.error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #FF0000;
    color: #FF0000;
}

/* ========== FOOTER ========== */

.footer {
    padding: 50px 0 40px;
    background: #000;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    opacity: 0.8;
    filter: drop-shadow(0 4px 12px rgba(0, 255, 65, 0.2));
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
    filter: drop-shadow(0 6px 16px rgba(0, 255, 65, 0.4));
    transform: scale(1.05);
}

.footer p {
    opacity: 0.7;
    margin: 5px 0;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 968px) {
    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visual {
        order: -1;
    }

    .hero-split-left {
        clip-path: polygon(0 0, 100% 0, 100% 45%, 0% 55%);
    }

    .hero-split-right {
        clip-path: polygon(0 55%, 100% 45%, 100% 100%, 0% 100%);
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }

    .logo-text {
        font-size: 1.3rem;
        gap: 5px;
    }

    .llc-text {
        font-size: 0.7rem;
    }

    .logo-link {
        gap: 10px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 80px);
        background: var(--midnight-blue);
        flex-direction: column;
        padding: 40px;
        transition: right 0.4s ease;
    }

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

    .hamburger {
        display: flex;
    }

    .footer-logo-img {
        height: 60px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 35px 25px;
    }

    /* Mobile-optimized hero */
    .hero-title {
        font-size: clamp(2rem, 10vw, 3.5rem);
        line-height: 1.2;
    }

    .title-word {
        margin: 0 5px;
    }

    .hero-tagline {
        font-size: 1.1rem;
        letter-spacing: 2px;
        margin-bottom: 35px;
    }

    .cta-button {
        padding: 16px 35px;
        font-size: 1rem;
    }

    /* Reduce particle count on mobile - handled in JS */
    .leaf,
    .snowflake {
        display: none;
    }

    .leaf:nth-child(-n+8),
    .snowflake:nth-child(-n+15) {
        display: block;
    }

    /* Simplify background textures for mobile performance */
    #summerLayer::before,
    #fallLayer::before,
    #winterLayer::before {
        background-size: 8px 8px, 100% 100%;
    }
}
