/* ================= GLOBAL RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* ================= CONTAINER ================= */

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 24px;
}

/* ================= FLOATING LEAVES ================= */

.leaf {
    position: fixed;
    top: -50px;
    font-size: 24px;
    animation: floatDown linear infinite;
    z-index: 0;
    opacity: 0.7;
}

.leaf:nth-child(1) {
    left: 10%;
    animation-duration: 12s;
}

.leaf:nth-child(2) {
    left: 30%;
    animation-duration: 15s;
}

.leaf:nth-child(3) {
    left: 50%;
    animation-duration: 18s;
}

.leaf:nth-child(4) {
    left: 70%;
    animation-duration: 14s;
}

.leaf:nth-child(5) {
    left: 90%;
    animation-duration: 20s;
}

@keyframes floatDown {
    0% {
        transform: translateY(-50px) rotate(0deg);
    }

    100% {
        transform: translateY(110vh) rotate(360deg);
    }
}

/* ================= HERO SECTION ================= */

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #6B8E23, #3E4B2B);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0;
    color: white;
    position: relative;
    z-index: 1;
}

.hero-inner {
    padding: 40px 0;
}

.logo {
    width: 130px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero h2 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 400;
}

.tagline {
    font-size: 18px;
    margin-bottom: 30px;
}

/* ================= BUTTONS ================= */

.btn-primary,
.btn-secondary,
.btn-dark,
.btn-danger {
    padding: 10px 22px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    margin: 8px;
    font-weight: 500;
}

.btn-primary {
    background: #6B8E23;
    color: white;
}

.btn-secondary {
    background: white;
}

.btn-dark {
    background: #222;
    color: white;
}

.btn-danger {
    background: #b22222;
    color: white;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-dark:hover,
.btn-danger:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* ================= SECTIONS ================= */

.section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.section-light {
    background: #f4f8ef;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #3E4B2B;
}

.section p {
    max-width: 750px;
    margin: auto;
    font-size: 18px;
}

.quote {
    font-style: italic;
    margin: 20px 0;
    font-size: 18px;
    color: #3E4B2B;
}

/* ================= TRANSFORMATION GLOW ================= */

.glow-wrapper {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    position: relative;
}

.glow-wrapper::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle,
            rgba(107, 142, 35, 0.6) 0%,
            rgba(144, 238, 144, 0.4) 40%,
            rgba(0, 128, 0, 0.2) 60%,
            transparent 80%);
    filter: blur(60px);
    z-index: 0;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

.transform-image {
    width: 100%;
    max-width: 900px;
    border-radius: 20px;
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.transform-image:hover {
    transform: scale(1.03);
}

/* ================= FAQ ================= */

.faq-item {
    margin-bottom: 15px;
    text-align: left;
}

.faq-question {
    width: 100%;
    padding: 15px;
    background: #6B8E23;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.faq-answer {
    display: none;
    padding: 15px;
    background: #e9f3dd;
    border-radius: 8px;
    margin-top: 5px;
}

/* ================= FOOTER ================= */

footer {
    background: #3E4B2B;
    color: white;
    text-align: center;
    padding: 30px;
}

/* ================= DASHBOARD ================= */

.dashboard-body {
    background: linear-gradient(135deg, #f4f9ec, #e8f1d4);
}

.dashboard-header {
    background: #3E4B2B;
    color: white;
    padding: 20px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dash-logo {
    width: 55px;
    margin-right: 10px;
}

.dash-left {
    display: flex;
    align-items: center;
}

.dashboard-wrapper {
    padding: 60px 0;
}

/* ================= CARDS ================= */

.card {
    background: white;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.08);
}

/* ================= FORMS ================= */

.form-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 20px 0;
}

select,
input {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    min-width: 200px;
}

.button-row {
    margin-top: 10px;
}

/* ================= STATS ================= */

.stats-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.stat-card {
    flex: 1 1 200px;
    background: white;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card p {
    font-size: 20px;
    font-weight: bold;
    color: #3E4B2B;
}

/* ================= CHAT ================= */

.chatbox {
    height: 250px;
    overflow-y: auto;
    background: #f5f5f5;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .hero h1 {
        font-size: 36px;
    }

    .section {
        padding: 70px 0;
    }

    .stats-grid {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

}