/* css/style.css */
:root {
    --primary-color: #0b1c3c; /* Dark Blue */
    --secondary-color: #7cb342; /* Green */
    --light-green: #e8f5e9;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --bg-light-gray: #f9f9f9;
    --gradient-green: linear-gradient(135deg, #7cb342, #558b2f);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

.container-fluid {
    width: 100%;
    padding: 0 40px;
}

/* Utilities */
.text-green { color: var(--secondary-color) !important; }
.text-dark { color: var(--primary-color) !important; }
.text-white { color: var(--white) !important; }
.bg-light-green { background-color: var(--light-green) !important; }
.bg-green { background-color: var(--secondary-color) !important; }
.bg-light-gray { background-color: var(--bg-light-gray) !important; }
.bg-dark { background-color: var(--primary-color) !important; }
.bg-green-gradient { background: var(--gradient-green) !important; }
.text-center { text-align: center; }
.text-left { text-align: left; }

.section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn i { margin-right: 5px; }

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}
.btn-primary:hover { background-color: #689f38; }

.btn-outline {
    border-color: var(--border-color);
    color: var(--text-dark);
}
.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-white {
    border-color: var(--white);
    color: var(--white);
}
.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-outline-green {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}
.btn-outline-green:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-dark {
    background-color: var(--primary-color);
    color: var(--white);
}
.btn-dark:hover { background-color: #061126; }

.btn-large {
    padding: 12px 25px;
    font-size: 16px;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
}

.logo-text strong {
    display: block;
    font-size: 18px;
    color: var(--primary-color);
    line-height: 1;
}
.logo-text span {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1;
}
.logo-text small {
    display: block;
    font-size: 10px;
    color: var(--text-light);
    margin-top: 2px;
    white-space: nowrap;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-dark);
    white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
    color: var(--secondary-color);
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 991px) {
    .mobile-menu-btn {
        display: block;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        gap: 20px;
    }
    .nav-menu.active {
        display: flex;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    .main-nav a {
        display: block;
        padding: 5px 0;
    }
    .auth-buttons {
        flex-direction: column;
        width: 100%;
    }
    .auth-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Hero Section */
.hero {
    background: url('../Images/hero_bg.png') no-repeat center center/cover;
    background-color: var(--primary-color); /* Fallback */
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 500px;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}
.hero-content h1 span {
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.hero-graphics {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Matrix Cycle Graphic */
.matrix-cycle {
    position: relative;
    width: 450px;
    height: 450px;
}

.cycle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    z-index: 10;
}

.triangle {
    width: 100%;
    height: 100%;
    position: relative;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: #112a58; /* Slightly lighter blue */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.center-text {
    font-size: 14px;
    font-weight: 700;
    z-index: 5;
}

.part {
    position: absolute;
    font-size: 10px;
    font-weight: bold;
}
.part-1 { top: 20px; left: 50%; transform: translateX(-50%); color: #4fc3f7;}
.part-2 { bottom: 10px; right: 20px; color: var(--secondary-color);}
.part-3 { bottom: 10px; left: 20px; color: #fff;}

.cycle-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 120px;
}

.cycle-item .icon-box {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
    box-shadow: 0 0 15px rgba(255,255,255,0.2);
}

.cycle-item span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.step-1 { top: 0; left: 50%; transform: translateX(-50%); }
.step-2 { top: 50%; right: -20px; transform: translateY(-50%); }
.step-3 { bottom: 0; left: 50%; transform: translateX(-50%); }
.step-4 { top: 50%; left: -20px; transform: translateY(-50%); }

/* Investment Packages */
.investment-packages {
    padding: 60px 0;
    background-color: var(--bg-light-gray);
}

.package-slider {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.packages-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px;
    scrollbar-width: none; /* Firefox */
}
.packages-wrapper::-webkit-scrollbar { display: none; } /* Chrome */

.package-card {
    flex: 0 0 200px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.package-icon {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.package-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.slider-btn {
    background: var(--white);
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 10;
}
.slider-btn:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Info Sections */
.info-sections {
    padding: 60px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 30px;
}

.info-card {
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}

.bordered-card {
    border: 1px solid var(--border-color);
}

.card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.icon-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.icon-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.list-icon {
    color: var(--secondary-color);
    font-size: 24px;
    width: 30px;
    text-align: center;
}

.icon-list p {
    font-size: 14px;
    color: var(--text-dark);
}

.terms-note {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

.products-showcase {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.product-category {
    flex: 1;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
}

.category-header {
    padding: 8px;
    font-size: 12px;
    font-weight: 700;
}

.product-category img {
    height: 250px;
    width: 100%;
    object-fit: contain;
    padding: 10px;
}

.product-category p {
    font-size: 12px;
    padding: 10px;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
}

.login-shop-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-light-gray);
    padding: 15px;
    border-radius: 8px;
}
.login-shop-note p {
    font-size: 13px;
    max-width: 60%;
}

.subtitle-text {
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
}

.usage-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.usage-item {
    display: flex;
    gap: 15px;
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.usage-icon {
    font-size: 28px;
    color: var(--secondary-color);
}

.usage-item h4 {
    font-size: 15px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.usage-item p {
    font-size: 13px;
    color: var(--text-light);
}

/* Simple Flow */
.simple-flow {
    padding: 50px 0;
    background: var(--bg-light-gray);
}

.flow-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.flow-step {
    text-align: center;
    flex: 1;
}

.flow-icon {
    width: 60px;
    height: 60px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    margin: 0 auto 15px;
    background: var(--white);
    transition: all 0.3s;
}
.flow-step:hover .flow-icon {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(124, 179, 66, 0.2);
}

.flow-step p {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
}

.flow-arrow {
    color: var(--secondary-color);
    font-size: 20px;
}

/* Why Join */
.why-join {
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.feature-box {
    background: var(--white);
    padding: 30px 15px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-box h4 {
    font-size: 13px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature-box p {
    font-size: 12px;
    color: var(--text-light);
}

/* Benefits */
.benefits {
    padding: 60px 0;
}

.benefits-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.benefits-text {
    flex: 1;
}

.benefits-list {
    margin-bottom: 30px;
}

.benefits-list li {
    font-size: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.benefits-list i {
    color: var(--secondary-color);
    font-size: 18px;
}

.benefits-image {
    flex: 1;
    position: relative;
}
.image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.image-wrapper img {
    display: block;
    width: 100%;
}
.overlay-text {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    text-align: right;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.overlay-text p {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}
.overlay-text p:first-child { font-size: 18px; font-weight: 500; }
.overlay-text p:nth-child(2) { color: var(--secondary-color); text-shadow: none; }

/* Testimonials */
.testimonials {
    padding: 60px 0;
    background: var(--bg-light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    position: relative;
}

.quote-icon {
    font-size: 24px;
    color: var(--secondary-color);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 20px;
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
    text-align: right;
}

.review-text {
    font-size: 14px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.author {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
}
.author span {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
}

.dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}
.dot.active {
    background: var(--secondary-color);
}

/* Stats */
.stats {
    padding: 40px 0;
}
.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.stat-item i {
    font-size: 36px;
    color: rgba(255,255,255,0.2);
}
.stat-info h3 {
    font-size: 24px;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 5px;
}
.stat-info p {
    font-size: 14px;
    color: #ccc;
}

/* CTA */
.cta {
    padding: 40px 0;
    color: var(--white);
}
.cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cta-text h2 {
    font-size: 28px;
    margin-bottom: 5px;
}
.cta-text p {
    font-size: 16px;
}
.cta-buttons {
    display: flex;
    gap: 15px;
}

/* Disclaimer */
.disclaimer-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 0;
    font-size: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.disclaimer-bar strong {
    display: block;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: #ccc;
    padding-top: 60px;
    position: relative;
}
.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    /* Invert logo to white if possible, or use the generated one */
    filter: brightness(0) invert(1); 
}
.about-col p {
    font-size: 13px;
    line-height: 1.8;
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.links-col ul li {
    margin-bottom: 10px;
}
.links-col a {
    font-size: 13px;
}
.links-col a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-col ul li {
    font-size: 13px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.contact-col i {
    color: var(--secondary-color);
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
}
.social-links a:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    font-size: 12px;
}
.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-to-top {
    position: absolute;
    right: 30px;
    bottom: 80px;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.back-to-top:hover {
    background: #689f38;
}
