/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px 40px;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50%;
    height: 70%;
    background: radial-gradient(circle, rgba(139,197,63,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 40%;
    height: 50%;
    background: radial-gradient(circle, rgba(139,197,63,0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 2;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
}

.hero-decoration .line {
    position: absolute;
    background: linear-gradient(to bottom, transparent, rgba(139,197,63,0.1), transparent);
    width: 1px;
    height: 100%;
}

.hero-decoration .line:nth-child(1) { left: 15%; }
.hero-decoration .line:nth-child(2) { left: 50%; }
.hero-decoration .line:nth-child(3) { left: 85%; }

.logo-container {
    margin-bottom: 30px;
    z-index: 3;
    position: relative;
    animation: logoReveal 1s ease-out forwards;
    opacity: 0;
}

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

.logo-image {
    max-width: 420px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.08));
    transition: filter 0.3s ease;
}

.logo-image:hover {
    filter: drop-shadow(0 8px 30px rgba(139,197,63,0.2));
}

.tagline {
    z-index: 3;
    position: relative;
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

.tagline-main {
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-green-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-medium);
    letter-spacing: 1px;
}

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

.service-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    z-index: 3;
    position: relative;
    max-width: 1100px;
    width: 100%;
    padding: 0 20px;
}

.service-btn {
    background: var(--white);
    color: var(--white);
    padding: 50px 35px;
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    font-family: 'Syne', sans-serif;
    animation: cardReveal 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    background-size: cover;
    background-position: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.4s ease;
    z-index: 0;
}

.service-btn-icon,
.service-btn span:not(.service-btn-icon) {
    position: relative;
    z-index: 1;
}

.service-btn:nth-child(1) { animation-delay: 0.5s; }
.service-btn:nth-child(2) { animation-delay: 0.65s; }
.service-btn:nth-child(3) { animation-delay: 0.8s; }
.service-btn:nth-child(4) { animation-delay: 0.95s; }

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

.service-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-lime));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.service-btn:hover {
    transform: translateY(-8px);
    border-color: var(--primary-green);
    box-shadow: 0 20px 50px rgba(139,197,63,0.15);
}

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

.service-btn-icon {
    font-size: 2.8rem;
    margin-bottom: 18px;
    color: var(--primary-green);
    display: block;
    transition: transform 0.3s ease;
}

.service-btn:hover .service-btn-icon {
    transform: scale(1.1);
}

/* ===== HERO RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero {
        padding: 50px 20px 30px;
    }

    .logo-image {
        max-width: 280px;
    }

    .tagline-main {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .tagline-sub {
        font-size: 0.9rem;
    }

    .tagline {
        margin-bottom: 40px;
    }

    .service-buttons {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 20px;
    }

    .service-btn {
        padding: 35px 25px;
        font-size: 1rem;
        letter-spacing: 2px;
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .service-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}
