/* Global Styles */
:root {
    --primary-color: #006600;
    /* Richer Green */
    --accent-color: #00ff00;
    /* Neon Green for Glow */
    --bg-color: #050505;
    /* Deep Black */
    --card-bg: #121212;
    --text-color: #e0e0e0;
    --text-muted: #a0a0a0;
    --gradient-overlay: linear-gradient(135deg, rgba(0, 77, 0, 0.8) 0%, rgba(5, 5, 5, 0.9) 100%);
    --shadow-glow: 0 0 20px rgba(0, 255, 0, 0.3);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3 {
    margin: 0;
    font-weight: 700;
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
    padding: 0;
}

.highlight {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 90%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 0, 0.1);
}

.logo img {
    height: 50px;
    filter: drop-shadow(0 0 5px rgba(0, 255, 0, 0.3));
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s;
    box-shadow: 0 0 10px var(--accent-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-btn {
    display: block;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100%;
    background: var(--card-bg);
    display: flex;
    flex-direction: column;
    padding-top: 60px;
    transition: 0.4s;
    z-index: 1001;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(0, 255, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
}

.mobile-menu a {
    padding: 15px 30px;
    font-size: 1.2rem;
    border-bottom: 1px solid #222;
}

.mobile-menu a:hover {
    background: rgba(0, 255, 0, 0.05);
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    background: radial-gradient(circle at 70% 50%, #0a290a 0%, var(--bg-color) 60%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.glow-text {
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 102, 0, 0.5);
    transition: 0.3s;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #000;
    box-shadow: 0 0 25px var(--accent-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #fff;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.block-btn {
    width: 100%;
    margin-top: 10px;
}

/* Hero Image */
.hero-image {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.8));
    animation: float 6s ease-in-out infinite;
}

.glowing-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--accent-color);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Section Common */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

section {
    padding: 80px 10%;
}

/* Benefits Section */
.benefits {
    background: #080808;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #222;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 77, 0, 0.2);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: 0.3s;
}

.benefit-card:hover i {
    color: var(--accent-color);
    text-shadow: 0 0 15px var(--accent-color);
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* About Section */
.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-visual {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--card-bg), #000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 77, 0, 0.2);
}

.about-visual i {
    font-size: 5rem;
    color: var(--text-muted);
}

/* Product Section */
.product-showcase {
    background-color: #080808;
}

.product-container {
    display: flex;
    align-items: center;
    gap: 60px;
    background: var(--card-bg);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid #222;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to right, #0d0d0d, #1a1a1a);
}

.product-image-large {
    flex: 1;
    text-align: center;
}

.product-image-large img {
    max-width: 100%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.8));
    transition: transform 0.5s;
}

.product-image-large img:hover {
    transform: scale(1.05) rotate(2deg);
}

.product-details {
    flex: 1.2;
}

.product-details h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.product-features li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.product-features i {
    color: var(--accent-color);
    margin-right: 15px;
}

/* Order Form */
.order-section {
    background: radial-gradient(circle at 30% 70%, #0a290a 0%, var(--bg-color) 60%);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 0, 0.2);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ddd;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
    box-sizing: border-box;
    /* Fix for input width overflowing container */
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 102, 0, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
footer {
    background: #000;
    padding: 50px 10% 20px;
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
}

.footer-logo p {
    color: var(--text-muted);
}

.footer-links a {
    color: var(--text-muted);
    margin-left: 20px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.copyright {
    text-align: center;
    color: #555;
    font-size: 0.8rem;
}

/* Floating Buttons */
.float-wa,
.float-call {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: 0.3s;
}

.float-wa {
    bottom: 30px;
    right: 30px;
    background: #25d366;
}

.float-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
}

.float-call {
    bottom: 100px;
    right: 30px;
    background: #2a73d3;
    /* Blue for call, distinct from WA */
}

.float-call:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(42, 115, 211, 0.6);
}


/* Responsive Design */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
        height: auto;
        padding-bottom: 80px;
    }

    .hero-content {
        margin-bottom: 50px;
    }

    .hero-image {
        width: 100%;
    }

    .about-container,
    .product-container {
        flex-direction: column;
        text-align: center;
    }

    .product-details {
        order: -1;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-btn {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .footer-links a {
        margin-left: 0;
    }
}