/* Modern Home Page Styles */
:root {
    --primary-color: #2d5a27;
    --secondary-color: #1e4a24;
    --accent-color: #f4a460;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-cream: #fdf8f3;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--bg-cream) 0%, #fff 100%);
    padding: 80px 0;
    overflow: hidden;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-cta .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    padding: 15px 40px;
    font-weight: 600;
}

.hero-cta .btn-primary:hover {
    background: #1e3d1a;
    border-color: #1e3d1a;
}

.hero-cta .btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding: 15px 40px;
    font-weight: 600;
}

.hero-cta .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

.hero-trust {
    display: flex;
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
}

.trust-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

/* Social Proof Bar */
.social-proof-bar {
    background: var(--primary-color);
    padding: 30px 0;
}

.proof-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.proof-item {
    text-align: center;
    color: white;
}

.proof-item span {
    color: #fff !important;
}

.proof-item span.text-light,
.proof-item .proof-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffc107 !important; /* Yellow for numbers/stats on green */
}

.proof-text {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 14px;
}

/* Section Styles */
.section-header {
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: rgba(45, 90, 39, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Why Section */
.why-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(45, 90, 39, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 15px;
    margin: 0;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: white;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e9ecef;
    z-index: 0;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-cream);
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card.featured {
    background: var(--primary-color);
    color: white;
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-card.featured .testimonial-text {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
}

.testimonial-card.featured .testimonial-author span {
    color: rgba(255, 255, 255, 0.7);
}

/* Instagram Section */
.instagram-section {
    padding: 80px 0;
    background: white;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.insta-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 90, 39, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insta-overlay i {
    color: white;
    font-size: 32px;
}

.insta-item:hover img {
    transform: scale(1.1);
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3d16 100%);
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.final-cta-section .btn-primary {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 18px 50px;
    font-weight: 600;
    font-size: 18px;
}

.final-cta-section .btn-primary:hover {
    background: #f0f0f0;
}

.cta-badges {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-badges span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-badges i {
    margin-right: 5px;
}

/* Product Showcase */
.product-showcase {
    padding: 80px 0;
    background: white;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-text {
        text-align: center;
        margin-bottom: 40px;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .process-timeline::before {
        display: none;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-trust {
        flex-wrap: wrap;
        gap: 15px;
    }

    .proof-items {
        flex-direction: column;
        text-align: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-badges {
        flex-direction: column;
        align-items: center;
    }

    .why-section,
    .process-section,
    .testimonials-section,
    .instagram-section,
    .product-showcase {
        padding: 50px 0;
    }
}