:root {
    --primary-yellow: #FFD700;
    --primary-green: #2D5A27;
    --primary-brown: #4B3621;
    --light-yellow: #FFF9C4;
    --text-dark: #1A1A1A;
    --text-light: #666;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.9);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fcfcfc;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Header & Nav */
header {
    background: var(--glass);
    backdrop-filter: blur(10px);
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-green);
}

nav ul {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    font-weight: 600;
}

nav ul li a:hover {
    color: var(--primary-yellow);
}

.cta-button {
    background: var(--primary-yellow);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    color: var(--primary-brown);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    color: var(--primary-brown) !important;
}

/* Hero Section */
#hero {
    height: 100vh;
    background: url('assets/hero-bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    padding: 0 5%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(45, 90, 39, 0.8), rgba(75, 54, 33, 0.2));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
}

.hero-image-container {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-vending-img {
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: fadeInUp 1.5s ease;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.highlight {
    color: var(--primary-yellow);
    position: relative;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 1.2s ease;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1.4s ease;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--primary-yellow);
    color: var(--primary-brown);
}

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

.btn:hover {
    transform: scale(1.05);
}

/* Sections General */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.section-title.left {
    text-align: left;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-brown);
}

/* About Section */
.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.about-content {
    flex: 1;
}

.features-list {
    margin-top: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--primary-green);
}

.features-list li span {
    color: var(--primary-yellow);
    font-size: 1.2rem;
}

/* Contact Section */
#contact {
    background: var(--primary-green);
    color: var(--white);
    padding: 120px 0;
}

.contact-wrapper {
    display: flex;
    gap: 5rem;
    align-items: center;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-form-container {
    flex: 1;
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    color: var(--text-dark);
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

.btn-submit {
    width: 100%;
    background: var(--primary-yellow);
    color: var(--primary-brown);
    border: none;
    margin-top: 1rem;
}

/* Badge Styles */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.neon-green {
    background: #39FF14;
    color: var(--primary-brown);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
}

.contact-details {
    margin-top: 1.5rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--primary-brown);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 968px) {
    #hero {
        flex-direction: column;
        padding-top: 100px;
        text-align: center;
    }
    
    .hero-image-container {
        display: none; /* Hide top-right image on mobile to focus on text */
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .about-container, .contact-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title.left {
        text-align: center;
    }
    
    .contact-wrapper {
        gap: 3rem;
    }
    
    nav ul {
        display: none;
    }
}
