/* Modern Homepage - Green/Organic Theme */
:root {
    --primary-green: #008060;
    --light-green: #52b88a;
    --accent-green: #006e52;
    --accent-orange: #f97316;
    --gradient-start: #008060;
    --gradient-end: #52b88a;
    --dark-text: #111827;
    --light-text: #6b7280;
    --card-bg: #ffffff;
    --page-bg: #f8fafc;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    background: #ffffff;
    color: var(--dark-text);
    overflow-x: hidden;
    position: relative;
}

/* Animated background */
body::before {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    background: none;
    pointer-events: none;
    z-index: 0;
}

/* Modern Hero Section */
.modern-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 5% 60px;
    position: relative;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(0, 128, 96, 0.08);
    border-radius: 0 0 0 100%;
    z-index: 0;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #E8F3F0;
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid rgba(0, 128, 96, 0.2);
    margin-bottom: 32px;
    font-weight: 600;
    color: var(--primary-green);
}

.hero-badge i {
    font-size: 1.2rem;
}

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

.gradient-text {
    color: #008060;
    display: block;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    padding: 24px 0;
    border-top: 1px solid rgba(0, 128, 96, 0.2);
    border-bottom: 1px solid rgba(0, 128, 96, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #008060;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    background: rgba(0, 128, 96, 0.3);
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: #008060;
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 128, 96, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 128, 96, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: white;
    color: var(--primary-green);
    border: 2px solid rgba(0, 128, 96, 0.3);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(0, 128, 96, 0.05);
    border-color: var(--primary-green);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-showcase {
    width: 100%;
    max-width: 500px;
    height: 500px;
    background: rgba(0, 128, 96, 0.12);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.showcase-img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 24px;
    animation: float 4s ease-in-out infinite;
}

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

.floating-card {
    position: absolute;
    background: white;
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    animation: floatAnim 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: #008060;
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes floatAnim {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Trust Section */
.trust-section {
    padding: 60px 5%;
    background: white;
    position: relative;
    z-index: 1;
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.trust-card {
    background: rgba(249, 250, 251, 0.5);
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 128, 96, 0.1);
}

.trust-card:hover {
    background: rgba(0, 128, 96, 0.05);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 128, 96, 0.15);
}

.trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: #008060;
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.trust-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
}

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

/* About Section - Our Story */
.about-section {
    padding: 60px 5%;
    background: #F6F6F7;
    position: relative;
    z-index: 1;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    animation: fadeInUp 0.8s ease-out;
}

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

.about-text {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 40px 0;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    border-left: 4px solid var(--primary-green);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 128, 96, 0.15);
}

.highlight-icon {
    width: 56px;
    height: 56px;
    background: #008060;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.highlight-text p {
    color: var(--light-text);
    line-height: 1.6;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stat-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(0, 128, 96, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(0, 128, 96, 0.05);
    border-color: var(--primary-green);
    transform: translateY(-4px);
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #008060;
    margin-bottom: 8px;
}

.stat-card .stat-label {
    color: var(--light-text);
    font-size: 0.9rem;
}

.about-visual {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

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

.about-image-wrapper {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 128, 96, 0.2);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: white;
    padding: 16px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-badge i {
    color: #10b981;
    font-size: 1.5rem;
}

.about-badge span {
    font-weight: 700;
    color: var(--dark-text);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: #E8F3F0;
    color: var(--primary-green);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--light-text);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Products Section */
.products-section {
    padding: 60px 5%;
    position: relative;
    z-index: 1;
}

.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 128, 96, 0.2);
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: rgba(0, 128, 96, 0.05);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #008060;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.product-info {
    padding: 24px;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}

.product-rating i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.product-rating span {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-left: 8px;
}

.product-price {
    margin-bottom: 20px;
}

.price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #008060;
}

.product-btn {
    width: 100%;
    padding: 16px;
    background: #008060;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 128, 96, 0.4);
}

/* Features Section */
.features-section {
    padding: 60px 5%;
    background: white;
    position: relative;
    z-index: 1;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: #E8F3F0;
    color: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.feature-text p {
    color: var(--light-text);
    line-height: 1.7;
}

.features-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.feature-card {
    background: #E8F3F0;
    padding: 48px 32px;
    border-radius: 24px;
    text-align: center;
    border: 2px solid rgba(0, 128, 96, 0.2);
}

.stat-big {
    font-size: 4rem;
    font-weight: 800;
    color: #008060;
    margin-bottom: 8px;
}

.stat-text {
    font-size: 1.1rem;
    color: var(--dark-text);
    font-weight: 600;
}

/* How It Works */
.how-it-works {
    padding: 60px 5%;
    position: relative;
    z-index: 1;
}

.steps-timeline {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 60px;
    left: 16.66%;
    right: 16.66%;
    height: 4px;
    background: #008060;
    border-radius: 10px;
    z-index: 0;
}

.step-card {
    background: white;
    padding: 40px 32px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 128, 96, 0.2);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: #008060;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 32px auto 24px;
    background: #E8F3F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-green);
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.step-card p {
    color: var(--light-text);
    line-height: 1.7;
}

/* Reviews Section */
.reviews-section {
    padding: 60px 5%;
    background: white;
    position: relative;
    z-index: 1;
}

.reviews-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.review-card {
    background: rgba(249, 250, 251, 0.8);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(0, 128, 96, 0.1);
    transition: all 0.3s ease;
}

.review-card:hover {
    background: rgba(0, 128, 96, 0.05);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 128, 96, 0.15);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.review-stars i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.review-text {
    font-style: italic;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 24px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: #008060;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--light-text);
}

/* FAQ Section */
.faq-section {
    padding: 60px 5%;
    position: relative;
    z-index: 1;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 128, 96, 0.15);
}

.faq-question {
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--dark-text);
    font-size: 1.05rem;
}

.faq-question i {
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 28px;
    color: var(--light-text);
    line-height: 1.7;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 24px;
}

/* CTA Section */
.cta-section {
    padding: 60px 5%;
    background: #008060;
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    background: white;
    color: #008060;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-box {
    background: white;
    border-radius: 24px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light-text);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid rgba(0, 128, 96, 0.2);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(0, 128, 96, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #008060;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 128, 96, 0.4);
}

.btn-check {
    margin-top: 8px;
    padding: 10px 20px;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-visual {
        display: none;
    }
    
    .trust-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .steps-timeline {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .timeline-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .trust-container {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    /* About Section Mobile */
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-visual {
        order: -1;
    }
}
