:root {
    /* Enables automatic theme switching based on system settings */
    color-scheme: light dark;

    /* Theme-aware colors using light-dark(LightMode, DarkMode) */
    --bg-body: light-dark(#ffffff, #0a5c43);
    --bg-card: light-dark(#f9fbfa, #3e8856);
    --bg-card-alt: light-dark(#ffffff, #6b5a5a);
    --text-main: light-dark(#2e7d32, #ffffff);
    --text-muted: light-dark(#666666, #bbbbbb);
    --border-color: light-dark(#eeeeee, #333333);
    --card-border: light-dark(#eeeeee, #333333); /* Fixed: Added missing variable */
    --text-nav: light-dark(#2e7d32, #ffffff);
    --bg-nav: light-dark(#2e7d32, #ffffff3b);

    /* Brand Colors */
    --primary-green: #2e7d32;
    --primary-blue: #1565c0;
    --text-dark: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: var(--bg-body);
    color: var(--text-main);
}

/* ================= NAVBAR ================= */
.navbar {
    z-index: 9999;
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    background: #6e6c6c3b;
}

.logo {
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-main);
}

.logo img {
    height: 30px;
}

/* ================= NAV LINKS ================= */
.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-nav);
    font-size: 14px;
    transition: transform 0.3s ease, color 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    transform: scale(1.2);
    color: var(--text-nav);
}

/* ================= SIGN UP BUTTON ================= */
.login-btn {
    background: #2d4bff;
    border: none;
    padding: 8px 18px;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}

.login-btn:hover {
    font-weight: bolder;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.45), 0 0 40px rgba(59, 130, 246, 0.35);
}

.right {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

/* ================= CHECKBOX & HAMBURGER ================= */
#menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    position: relative;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hamburger i {
    position: absolute;
    font-size: 26px;
    color: var(--text-main);
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger .open-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.hamburger .close-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.8);
}

/* ================= MOBILE MENU ================= */
@media (max-width: 790px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: center;
        background: light-dark(rgba(255, 255, 255, 0.95), rgba(0, 0, 0, 0.92));
        border-bottom: 1px solid var(--card-border);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
        z-index: 1000;
    }

    .nav-links a {
        padding: 14px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid light-dark(rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.08));
    }

    #menu-toggle:checked ~ .nav-links {
        max-height: 400px;
        opacity: 1;
        transform: translateY(0);
    }

    #menu-toggle:checked ~ .hamburger .open-icon {
        opacity: 0;
        transform: rotate(90deg) scale(0.8);
    }

    #menu-toggle:checked ~ .hamburger .close-icon {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

/* HERO SECTION */
.hero {
    width: 100%;
    min-height: 60vh;
    background: url(../assets/15839d7cf46cf63372f4.png) no-repeat center center / cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1; /* Fixed: Changed from -1 to 1 so it's visible, but handle overlays carefully */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: #fff;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-content h1 span {
    color: green;
}

.hero-content p {
    font-size: 17px;
    color: #f1f1f1;
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.features h2 {
    text-align: center;
    margin-top: 10px;
    font-size: 2rem;
    color: var(--text-main);
}

.features-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 15px 10%;
    background: light-dark(#ffffff, linear-gradient(135deg, #0f2027, #203a43, #2c5364));
    text-align: center;
}

.feature-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 6px;
    font-weight: 600;
}

.feature-card p {
    font-size: 14px;
    color: light-dark(#5f5656, #ffffff);
    font-weight: bold;
}

/* Product Section */
.product-slider-section {
    padding: 80px 8%;
    text-align: center;
}

.product-slider-section h2 {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.subtitle {
    font-size: 16px;
    color: #666;
}

.slider-container {
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.product-card {
    min-width: 250px;
    background: var(--bg-card);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(102, 102, 102, 0.1);
    text-align: center;
    flex-shrink: 0;
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 6px;
}

.category {
    font-size: 13px;
    color: #b1b1b1;
    margin-bottom: 10px;
}

.price {
    font-size: 20px;
    font-weight: bold;
    color: #19f0a1;
    margin-bottom: 15px;
}

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--bg-body);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: background 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
    background: rgba(0, 0, 0, 0.6);
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

/* --- Products Section --- */
.products-section {
    padding: 40px 0;
    text-align: center;
}

.products-section h2 {
    color: var(--text-main);
    margin-bottom: 40px;
    font-size: 2rem;
}

.process-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    color: var(--primary-green);
    font-weight: 600;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 5px;
}

.process-step:first-child {
    color: var(--text-main);
}

.process-step span {
    color: var(--text-dark);
}

.arrow {
    color: #888;
    font-size: 1.2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    gap: 5px;
    margin: 20px 120px;
}

.product-item {
    background: var(--bg-card);
    padding: 10px 2px 15px 2px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
}

.product-name {
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.9rem;
}

/* --- Why Choose Section --- */
.why-choose {
    padding: 20px 300px;
}

.why-choose-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.why-choose h2 {
    color: var(--text-main);
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.why-list {
    flex: 1;
    min-width: 300px;
}

.why-list li {
    margin-bottom: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #959595;
}

.why-list i {
    color: var(--primary-green); /* Fixed: var syntax was invalid */
    font-size: 1.2rem;
}

.why-image {
    flex: 1;
    max-width: 400px;
}

.why-image img {
    width: 100%;
    border-radius: 5px;
}

/* --- About Section --- */
.about-section {
    background: light-dark(#ffffff, linear-gradient(135deg, #0f2027, #203a43, #2c5364));
    padding: 50px 0;
}

.about-section h2 {
    color: var(--text-main);
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.card-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: #ffffff;
    color: #000000;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    overflow: hidden;
    position: relative;
    padding-bottom: 20px;
}

.green-card .card-header {
    background-color: var(--primary-green);
    color: light-dark(#ffffff, #cec8c8);
}

.blue-card .card-header {
    background-color: var(--primary-blue);
    color: light-dark(#ffffff, #cec8c8);
}

.card-list {
    padding: 0 30px;
}

.card-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.green-card i { color: var(--primary-green); }
.blue-card i { color: var(--primary-blue); }

.card-btn-container {
    text-align: center;
    margin-top: 20px;
}

/* --- CTA Footer --- */
.cta-footer {
    text-align: center;
    padding: 40px 0 60px 0;
    background-color: var(--bg-nav);
    border-top: 1px solid #ddd;
}

.cta-footer h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #161515;
}

.cta-footer h3 span {
    color: #ffffff;
    font-weight: 700;
}

.logo-footer {
    margin-top: 30px;
    color: #161515;
}

.logo-footer h2 {
    color: #ffffff;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-slogan {
    font-style: italic;
    color: #161515;
    margin-top: 10px;
    font-size: 0.9rem;
}

/* ================= SUPPORT MODAL ================= */
.support-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.support-modal.active {
    display: flex;
}

.modal-content {
    background: #ffffff;
    width: 90%;
    max-width: 400px;
    border-radius: 14px;
    padding: 24px 20px;
    position: relative;
    animation: popup 0.3s ease;
}

@keyframes popup {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 22px;
    cursor: pointer;
    color: #444;
}

.modal-content h2 {
    color: #2e7d32;
    margin-bottom: 8px;
}

.modal-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.support-form input {
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.support-form button {
    margin-top: 10px;
    padding: 10px;
    background: #1565c0;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.support-form button:hover {
    background: #0d47a1;
}

/* Responsive Overrides */
@media (max-width: 360px) {
    .hero-content h1 { font-size: 28px; }
    .features-section { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: repeat(2, 1fr); margin: 10px 12px; }
    .why-choose { padding: 20px 5px; }
}

@media (max-width: 450px) {
    .why-choose-content { flex-direction: column; margin: 0; }
    .hero-content { margin-top: 35px; }
}

@media (max-width: 768px) {
    .card-container { margin: 0; }
    .product-grid { margin: 0 20px; }
}

@media (max-width: 1024px) {
    .card-container { margin: 0 20px; }
}

/*# sourceMappingURL=main.05acb50828549649633b.css.map*/