* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #f8faf7;
    color: #1a3d1f;
}

.background-fixed-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.background-gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 110, 76, 0.85) 0%, rgba(139, 164, 139, 0.8) 50%, rgba(245, 250, 247, 0.75) 100%);
    z-index: -1;
    transition: all 0.6s ease;
}

.white-filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    opacity: 1;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.white-filter-overlay.reduced {
    opacity: 0.5;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.section {
    padding: 100px 20px;
}

.section-bg-light {
    background-color: rgba(235, 242, 235, 0.9);
}

.section-bg-medium {
    background-color: rgba(220, 229, 220, 0.95);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a3d1f;
    margin-bottom: 70px;
}

.main-hero-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    z-index: 10;
}

.main-hero-box {
    width: 100%;
    max-width: 1400px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 50px;
    padding: 60px 80px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 80px rgba(76, 110, 76, 0.2);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center top;
    margin: 0 auto;
    overflow: hidden;
}

.main-hero-box.scrolled {
    transform: translateY(-120px) scale(0.9);
    opacity: 0;
    pointer-events: none;
}

.grid-container {
    display: grid;
    gap: 30px;
}

.grid-cols-2 {
    grid-template-columns: 1fr 1fr;
}

.grid-cols-autofit-300 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    padding: 35px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(76, 110, 76, 0.1);
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(76, 110, 76, 0.2);
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a3d1f;
    margin-bottom: 18px;
}

.card-description {
    color: #2c5530;
    line-height: 1.7;
    font-size: 1rem;
}

.card-icon {
    font-size: 52px;
    margin-bottom: 25px;
    display: block;
    color: #6b9b6b;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 900;
    color: #0d2710;
    margin-bottom: 30px;
    line-height: 1.05;
    text-shadow: 3px 3px 6px rgba(255, 255, 255, 0.1);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #1a3d1f;
    margin-bottom: 45px;
    font-weight: 400;
    line-height: 1.7;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, #6b9b6b, #8bb88b);
    color: white;
    box-shadow: 0 10px 30px rgba(107, 155, 107, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(107, 155, 107, 0.5);
    background: linear-gradient(45deg, #5a8a5a, #7aa77a);
    color: white;
}

.btn-secondary {
    background: linear-gradient(45deg, #ccbeac, #d4cac2);
    color: #605d4d;
    border: 2px solid #bfaf9a;
    box-shadow: 0 6px 20px rgba(236, 230, 223, 0.4);
}

.btn-secondary:hover {
    background: linear-gradient(45deg, #a38e74, #d4c4b3);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(219, 214, 209, 0.5);
    border-color: #cec1b0;
    color: #605d4d;
}

.btn-outline {
    color: #1a3d1f;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(76, 110, 76, 0.4);
    transform: translateY(-2px);
    color: #0d2710;
    box-shadow: 0 6px 20px rgba(76, 110, 76, 0.2);
}

.btn-large {
    padding: 20px 50px;
    font-size: 18px;
}

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-150px);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 50px;
    padding: 12px 25px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 35px rgba(76, 110, 76, 0.15);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 1200px;
    width: calc(100% - 40px);
    opacity: 0;
    pointer-events: none;
}

.floating-nav.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #2c5530;
    font-weight: 700;
    font-size: 24px;
}

.nav-logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-menu .nav-link {
    color: #2c5530;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    border: 1px solid transparent;
    display: block;
    white-space: nowrap;
}

.nav-menu .nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(76, 110, 76, 0.3);
    transform: translateY(-2px);
    color: #1a3d1f;
}

.nav-menu .nav-link.cta {
    background: linear-gradient(45deg, #6b9b6b, #8bb88b);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(107, 155, 107, 0.3);
}

.nav-menu .nav-link.cta:hover {
    background: linear-gradient(45deg, #5a8a5a, #7aa77a);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(107, 155, 107, 0.4);
}

.nav-menu .nav-link.cta2 {
    background: linear-gradient(45deg, #ccbeac, #d4cac2);
    color: #605d4d;
    font-weight: 700;
    border: 2px solid #bfaf9a;
    box-shadow: 0 6px 20px rgba(236, 230, 223, 0.4);
}

.nav-menu .nav-link.cta2:hover {
    background: linear-gradient(45deg, #a38e74, #d4c4b3);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(219, 214, 209, 0.5);
    border-color: #cec1b0;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #2c5530;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.section-separator {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(217, 228, 217, 1) 0%, rgba(217, 228, 217, 0.8) 20%, rgba(217, 228, 217, 0.1) 40%, rgba(217, 228, 217, 0.1) 60%, rgba(217, 228, 217, 0.8) 80%, rgba(217, 228, 217, 1) 100%);
}

.section-separator::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    right: -10%;
    bottom: 0;
    width: 120%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 200"><path d="M0,60 Q180,30 360,60 T720,60 Q900,30 1080,60 T1440,60 L1440,0 L0,0 Z" fill="rgba(235,242,235,1)"/><path d="M0,140 Q180,170 360,140 T720,140 Q900,170 1080,140 T1440,140 L1440,200 L0,200 Z" fill="rgba(235,242,235,1)"/><path d="M0,100 Q180,70 360,100 T720,100 Q900,70 1080,100 T1440,100" fill="none" stroke="rgba(235,242,235,0.3)" stroke-width="2"/></svg>') center/cover no-repeat;
    animation: wave1 12s infinite ease-in-out;
    mask: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.9) 15%, rgba(0,0,0,0.3) 35%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.3) 65%, rgba(0,0,0,0.9) 85%, rgba(0,0,0,1) 100%);
}

.section-separator::after {
    content: '';
    position: absolute;
    top: 0;
    left: -15%;
    right: -15%;
    bottom: 0;
    width: 130%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1560 200"><path d="M0,80 Q240,40 480,80 T960,80 Q1200,40 1440,80 T1560,80" fill="none" stroke="rgba(235,242,235,0.2)" stroke-width="4"/><path d="M0,120 Q240,160 480,120 T960,120 Q1200,160 1440,120 T1560,120" fill="none" stroke="rgba(235,242,235,0.15)" stroke-width="3"/></svg>') center/cover no-repeat;
    animation: wave2 16s infinite ease-in-out reverse;
    opacity: 0.7;
}

.footer {
    background: rgba(48, 88, 54, 0.95);
    color: white;
    padding: 60px 20px 30px;
    border-radius: 50px 50px 0 0;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #E8EFE8;
}

.footer-section p,
.footer-section a {
    color: #e0e8e0;
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #8bb88b;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(139, 184, 139, 0.3);
    color: #a0b8a0;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1a3d1f;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #2c5530;
}

.map-container {
    position: relative;
    overflow: hidden;
    padding-top: 50%;
    max-width: 100%;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(76, 110, 76, 0.15);
    margin: 30px auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(76, 110, 76, 0.2);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 50px;
}

.horizontal-slider-container {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.horizontal-slider {
    display: flex;
    gap: 35px;
}

.horizontal-slider.sponsors-style {
    animation: slideSponsors 30s linear infinite;
}

.horizontal-slider.testimonials-style {
    animation: slideTestimonials 45s linear infinite;
}

@keyframes wave1 {
    0%, 100% {
        transform: translateX(0) translateY(0) scale(1);
        opacity: 0.9;
    }
    25% {
        transform: translateX(-15px) translateY(-5px) scale(1.01);
        opacity: 1;
    }
    50% {
        transform: translateX(-8px) translateY(-8px) scale(0.99);
        opacity: 0.95;
    }
    75% {
        transform: translateX(-22px) translateY(-3px) scale(1.005);
        opacity: 0.85;
    }
}

@keyframes wave2 {
    0%, 100% {
        transform: translateX(0) translateY(0) scale(1) rotate(0deg);
        opacity: 0.7;
    }
    33% {
        transform: translateX(12px) translateY(-6px) scale(1.02) rotate(0.5deg);
        opacity: 0.8;
    }
    66% {
        transform: translateX(-8px) translateY(-4px) scale(0.98) rotate(-0.3deg);
        opacity: 0.9;
    }
}

@keyframes slideSponsors {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes slideTestimonials {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

@media (max-width: 1024px) {
    .main-hero-box {
        padding: 50px 60px;
    }
    .grid-cols-2 {
        gap: 60px;
    }
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .main-hero-box {
        padding: 40px 20px;
        margin: 0;
        border-radius: 50px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 0.05);
    }
    .grid-cols-2 {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .floating-nav {
        padding: 10px 20px;
        border-radius: 50px;
        transform: translateX(-50%) translateY(0);
        opacity: 1;
        pointer-events: auto;
        top: 10px;
    }
    .nav-menu {
        position: absolute;
        top: calc(100% + 15px);
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        width: 90%;
        background: rgba(245, 250, 247, 0.9);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 30px;
        padding: 25px;
        flex-direction: column;
        border: 1px solid rgba(255, 255, 255, 0.5);
        box-shadow: 0 15px 40px rgba(76, 110, 76, 0.2);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        transform: translateY(-10px);
    }
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
    .mobile-menu-toggle {
        display: block;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .grid-cols-autofit-300 {
        grid-template-columns: 1fr;
    }
    .footer {
        border-radius: 0;
    }
    .map-container {
        border-radius: 30px;
        margin: 20px 0;
        padding-top: 65%;
    }
    .map-container iframe {
        border-radius: 30px;
    }
    .section-separator {
        height: 100px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.login-page-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
    position: relative;
    z-index: 10;
}


.login-card {
    width: 100%;
    max-width: 480px; 
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 25px 70px rgba(76, 110, 76, 0.2);
    text-align: center;
    color: #1a3d1f;
}

.login-card .logo-container {
    margin-bottom: 25px;
}

.login-card .logo-container img {
    max-width: 180px;
    height: auto;
}

.login-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a3d1f;
    margin-bottom: 35px;
}

.login-input-group {
    position: relative;
    margin-bottom: 25px;
}

.login-input-group .input-icon {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    font-size: 20px;
    color: #6b9b6b;
}


.login-form-control {
    width: 100%;
    padding: 15px 20px 15px 55px;
    border-radius: 50px;
    border: 1px solid rgba(76, 110, 76, 0.3);
    background: rgba(255, 255, 255, 0.5);
    color: #1a3d1f;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.login-form-control::placeholder {
    color: #4c6e4c;
}

.login-form-control:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.8);
    border-color: #6b9b6b;
    box-shadow: 0 0 0 3px rgba(107, 155, 107, 0.3);
}


.login-actions {
    margin-top: 30px;
    margin-bottom: 30px;
}

.forgot-password-link {
    display: inline-block;
    margin-top: 20px;
    color: #2c5530;
    text-decoration: none;
    font-weight: 500;
}

.forgot-password-link:hover {
    text-decoration: underline;
    color: #1a3d1f;
}

.btn-login-submit {
    width: 100%;
    padding: 16px 28px;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 25px;
}

.btn-register {
    width: 100%;
    padding: 14px 28px;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

#recoveryContainer {
    background: rgba(235, 242, 235, 0.95);
    border-radius: 20px;
    padding: 25px;
    margin-top: 20px;
    border: 1px solid rgba(76, 110, 76, 0.2);
}

.company-link {
    color: #2c5530;
    font-weight: 500;
    text-decoration: none;
}

.company-link:hover {
    color: #1a3d1f;
}

.login-footer {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #e0e8e0;
    font-size: 0.9rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.login-footer a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    margin: 0 10px;
}

.login-footer a:hover {
    text-decoration: underline;
}


.g_id_signin {
    margin: 0 auto; 
    width: fit-content;
}




.enterprise-login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
    position: relative;
    z-index: 10;
}

.enterprise-login-card {
    width: 100%;
    max-width: 520px; 
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 25px 70px rgba(76, 110, 76, 0.2);
    text-align: center;
    color: #1a3d1f;
}

.enterprise-login-card .logo-wrapper {
    margin: 0 auto 25px auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0);
}

.enterprise-login-card .logo-wrapper img {
    width: 90%;
    height: auto;
}

.enterprise-login-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a3d1f;
    margin-bottom: 35px;
}

.enterprise-input-group {
    margin-bottom: 25px;
    text-align: left;
}

.enterprise-input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c5530;
    font-size: 0.9rem;
    margin-left: 20px;
}

.enterprise-form-control {
    width: 100%;
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid rgba(76, 110, 76, 0.3);
    background: rgba(255, 255, 255, 0.5);
    color: #1a3d1f;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.enterprise-form-control:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.8);
    border-color: #6b9b6b;
    box-shadow: 0 0 0 3px rgba(107, 155, 107, 0.3);
}

.btn-enterprise-submit {
    width: 100%;
    max-width: 300px;
    margin: 20px auto 0 auto;
}

.enterprise-forgot-password {
    display: inline-block;
    margin-top: 25px;
    color: #2c5530;
    text-decoration: none;
    font-weight: 500;
}

.enterprise-forgot-password:hover {
    text-decoration: underline;
    color: #1a3d1f;
}

.recovery-modal-overlay {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1050;
    align-items: center;
    justify-content: center;
}

.recovery-modal-card {
    position: relative;
    background: #f8faf7;
    border-radius: 25px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    color: #1a3d1f;
}

.recovery-modal-header h4 {
    font-weight: 700;
    color: #1a3d1f;
}

.recovery-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #888;
    cursor: pointer;
}


