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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2D3748;
    background-color: #FFF8E7;
    overflow-x: hidden;
}

/* Color Variables */
:root {
    --primary-color: #2D3748;
    --secondary-color: #68A063;
    --cream-color: #FFF8E7;
    --light-gray: #F7FAFC;
    --border-color: #E2E8F0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Centered Sections */
.centered-section {
    text-align: center;
}

.centered-section .container > * {
    text-align: center;
}

.centered-section .features-grid,
.centered-section .products-grid,
.centered-section .process-steps,
.centered-section .testimonials-grid {
    text-align: center;
}

.centered-section .customization-content,
.centered-section .bulk-content {
    text-align: left;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
}

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

.btn-primary:hover {
    background-color: #1A202C;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #4A7C59;
}

/* Header */
.header {
    background-color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-brand a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-primary {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.brand-year {
    font-size: 0.875rem;
    color: var(--secondary-color);
    font-weight: 500;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFF8E7 0%, #F7FAFC 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(104, 160, 99, 0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(104, 160, 99, 0.02) 25%, transparent 25%);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #4A5568;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Placeholder Images */
.placeholder-image {
    background: linear-gradient(135deg, #68A063 0%, #2D3748 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    border-radius: 8px;
    min-height: 250px;
    width: 100%;
}

/* Product Images */
.product-image img,
.customization-image img,
.bulk-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.customization-image img,
.bulk-image img {
    height: 250px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: white;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: var(--light-gray);
    border: 1px solid var(--border-color);
}

.feature-icon {
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item p {
    color: #4A5568;
    margin-bottom: 0;
}

/* Products Section */
.products {
    padding: 4rem 0;
    background-color: var(--cream-color);
}

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    border: 1px solid var(--border-color);
}

.product-image {
    height: 200px;
}

.product-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-color);
}

.product-item p {
    padding: 0 1.5rem;
    color: #4A5568;
    margin-bottom: 1.5rem;
}

.product-cta {
    padding: 0 1.5rem 1.5rem;
}

.product-cta .btn {
    width: 100%;
    text-align: center;
    margin-right: 0;
}

/* Customization Section */
.customization {
    padding: 4rem 0;
    background-color: white;
}

.customization-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.customization-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.customization-text ul {
    list-style: none;
    padding: 0;
}

.customization-text li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.customization-text li:before {
    content: "✓";
    color: var(--secondary-color);
    margin-right: 0.75rem;
    font-weight: bold;
}

/* Bulk Orders Section */
.bulk-orders {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.bulk-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.bulk-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.bulk-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.bulk-feature h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.bulk-feature p {
    color: #4A5568;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Process Section */
.process {
    padding: 4rem 0;
    background-color: white;
}

.process h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

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

.step p {
    color: #4A5568;
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background-color: var(--cream-color);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    border: 1px solid var(--border-color);
}

.testimonial p {
    font-style: italic;
    color: #4A5568;
    margin-bottom: 1rem;
}

.product-price {
    padding: 0 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.testimonial cite {
    color: var(--secondary-color);
    font-weight: 500;
    font-style: normal;
}

/* Contacts Section */
.contacts {
    padding: 4rem 0;
    background-color: white;
}

.contacts h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details address {
    font-style: normal;
    color: #4A5568;
    line-height: 1.5;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--cream-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    color: #A0AEC0;
    margin-top: 1rem;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--cream-color);
    font-size: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #A0AEC0;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--cream-color);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #4A5568;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #A0AEC0;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-image img {
        height: 250px;
    }
    
    .customization-content,
    .bulk-content {
        grid-template-columns: 1fr;
    }
    
    .bulk-features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}