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

:root {
    /* Color Palette from Logo */
    --primary-green: #7ED321;
    --dark-bg: #1a1a1a;
    --darker-bg: #0f0f0f;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --text-light-gray: #999999;
    --accent-gray: #333333;
    --border-gray: #444444;
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-white);
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background-color: var(--darker-bg);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px; /* Adjusted for mobile */
}

.nav-logo img {
    height: 50px;
    width: auto;
}

    .nav-logo h2 {
    font-family: var(--font-primary);
    font-size: 1.2rem; /* Adjusted for better fit */
    font-weight: 700;
    color: var(--text-white);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem; /* Adjusted for better fit */
    align-items: center;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link.cta-button {
    background-color: var(--primary-green);
    color: var(--darker-bg);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-link.cta-button:hover {
    background-color: #6bb01a;
    transform: translateY(-2px);
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" x="0" y="0" width="50" height="43.4" patternUnits="userSpaceOnUse"><polygon points="25,0 50,14.4 50,28.9 25,43.4 0,28.9 0,14.4" fill="none" stroke="%23333333" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>') repeat;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.hero h1 .highlight {
    color: var(--primary-green);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    padding: 120px 0 60px;
    text-align: center;
}

.page-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--darker-bg);
}

.btn-primary:hover {
    background-color: #6bb01a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(126, 211, 33, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background-color: var(--primary-green);
    color: var(--darker-bg);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: var(--accent-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-gray);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Brands Section */
.brands {
    padding: 80px 0;
    background-color: var(--darker-bg);
}

.brands h2 {
    text-align: center;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-white);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.brand-logo {
    height: 60px;
    width: auto;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.3s ease;
}

.brand-logo:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

/* Services List */
.services-list {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.service-item {
    background-color: var(--accent-gray);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateX(10px);
}

.service-heading {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.service-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.service-item ul {
    color: var(--text-gray);
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.service-item li {
    margin-bottom: 0.5rem;
}

/* Brands List */
.brands-list {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.brand-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: var(--accent-gray);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.brand-logo-large {
    height: 80px;
    width: auto;
    flex-shrink: 0;
}

.brand-item h2 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.brand-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* About Content */
.about-content {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.about-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    margin-top: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    background-color: var(--accent-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-item h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.contact-info p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info i {
    color: var(--primary-green);
    width: 20px;
}

.map-container {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

.contact-form h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-gray);
    border-radius: 5px;
    background-color: var(--accent-gray);
    color: var(--text-white);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 2px rgba(126, 211, 33, 0.2);
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background-color: var(--darker-bg);
    text-align: center;
}

.final-cta h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background-color: var(--darker-bg);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-gray);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: var(--font-primary);
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-green);
}

.footer-section i {
    color: var(--primary-green);
    margin-right: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-gray);
    color: var(--text-light-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--darker-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .brand-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .brand-logo {
        height: 40px;
    }
    
    .brand-logo-large {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

