/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

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

/* Navbar */
.navbar {
    background-color: rgba(18, 18, 18, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    max-width: 200px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

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

.nav-list a {
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-list a:hover {
    color: #39ff14;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #39ff14;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Nav Slideout */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: #1a1a1a;
    z-index: 1050;
    padding-top: 80px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
}

.mobile-nav-list li {
    border-bottom: 1px solid #333;
}

.mobile-nav-list a {
    display: block;
    padding: 20px;
    color: #ffffff;
    font-weight: 700;
}

.mobile-nav-list a:hover {
    background-color: #222;
    color: #39ff14;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 16px;
    color: #b0b0b0;
    margin-bottom: 40px;
    max-width: 600px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #39ff14;
    color: #000000;
    min-width: 175px;
    height: 48px;
    padding: 0 20px;
    font-weight: 900;
    font-size: 15px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(57, 255, 20, 0.3);
    border: none;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #32e011;
    box-shadow: 0 4px 20px rgba(57, 255, 20, 0.6);
    transform: translateY(-2px);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: #181818;
}

.section-title {
    margin-bottom: 50px;
}

.section-title span {
    color: #ffffff;
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 2px;
}

.product-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.product-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #121212;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #39ff14;
}

.product-card.row-reverse {
    flex-direction: row-reverse;
}

.product-image {
    flex: 0 0 350px;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.product-info {
    flex: 1;
}

.product-info h3 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 900;
    text-transform: uppercase;
}

.product-info p {
    color: #a0a0a0;
    font-size: 16px;
    line-height: 1.8;
}

/* Footer */
.site-footer {
    background-color: #0a0a0a;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #222;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #888;
    font-size: 14px;
}

.footer-links a:hover {
    color: #39ff14;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-content p {
        margin: 0 auto 30px auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .product-card, .product-card.row-reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .product-image {
        flex: auto;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .product-info h3 {
        font-size: 24px;
    }
}

/* Extended Footer */
.site-footer {
    background-color: #0a0a0a;
    padding: 60px 0 30px;
    border-top: 1px solid #222;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.social-links a:hover {
    background-color: #39ff14;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(57, 255, 20, 0.4);
    border-color: #39ff14;
}

.seo-article {
    max-width: 800px;
    text-align: center;
    background-color: #151515;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #222;
}

.seo-article h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
}

.seo-article p {
    color: #999999;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.seo-article p:last-child {
    margin-bottom: 0;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding-top: 30px;
    border-top: 1px solid #222;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* SEO Section */
.seo-section {
    background-color: #121212;
    padding: 60px 20px;
}
.seo-article {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background-color: #181818;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #222;
}
.seo-article h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
}
.seo-article p {
    color: #999999;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}
.seo-article p:last-child {
    margin-bottom: 0;
}

/* Updated Footer Layout */
.footer-main {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-main {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.footer-address {
    text-align: center;
}
@media (min-width: 768px) {
    .footer-address {
        text-align: left;
        max-width: 400px;
    }
}

.footer-address h4, .footer-socials h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-address p {
    color: #a0a0a0;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 5px;
}

.footer-email {
    color: #39ff14 !important;
    font-weight: bold;
    margin-top: 15px !important;
}

.footer-socials {
    text-align: center;
}
@media (min-width: 768px) {
    .footer-socials {
        text-align: right;
    }
}

.footer-socials .social-links {
    justify-content: center;
}
@media (min-width: 768px) {
    .footer-socials .social-links {
        justify-content: flex-end;
    }
}

/* Article Pages Styling */
.page-content {
    padding: 80px 0;
    background-color: #121212;
    min-height: 60vh;
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    color: #39ff14;
    font-size: 40px;
    margin-bottom: 40px;
    text-transform: uppercase;
    text-align: center;
}

.article-hero-img {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto 40px auto;
}

.article-body h2, .article-body h3 {
    color: #ffffff;
    margin: 30px 0 15px 0;
}

.article-body p {
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.8;
}

.article-body ul, .article-body ol {
    color: #cccccc;
    margin-bottom: 20px;
    padding-left: 20px;
    line-height: 1.8;
}

.article-body li {
    margin-bottom: 10px;
}

.alert-box {
    background-color: rgba(255, 60, 60, 0.1);
    border-left: 4px solid #ff3c3c;
    padding: 15px;
    margin-bottom: 30px;
    color: #ffffff;
}

.styled-list li {
    margin-bottom: 15px;
}

/* Contact Page Styling */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
@media(min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info, .contact-form-container {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
}

.contact-info h3, .contact-form-container h3 {
    color: #39ff14;
    margin-bottom: 20px;
}

.info-item {
    margin-bottom: 25px;
}
.info-item strong {
    display: block;
    color: #ffffff;
    margin-bottom: 5px;
}
.info-item p {
    color: #aaa;
}

.btn-whatsapp {
    display: inline-block;
    background-color: #25D366;
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
}

.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #222;
    border: 1px solid #444;
    border-radius: 5px;
    color: #fff;
    font-family: inherit;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #39ff14;
}
