:root {
    --primary-green: #4CAF50;
    --secondary-orange: #FF9800;
    --accent-yellow: #FFC107;
    --accent-red: #F44336;
    --dark-green: #2E7D32;
    --light-green: #E8F5E8;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-green) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-green) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.8) 0%, rgba(255, 152, 0, 0.7) 100%), 
                url('../images/mixed-chopped-fruits.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::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"><circle cx="20" cy="20" r="2" fill="%234CAF50" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%23FF9800" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23FFC107" opacity="0.1"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Hero Fruit Box Image */
.hero-fruit-box {
    max-width: 100%;
    height: auto;
    border-radius: 20px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.hero-fruit-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4) !important;
}

.btn-primary-custom {
    background: linear-gradient(45deg, var(--primary-green), var(--secondary-orange));
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    color: white;
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
    position: relative;
}

.section-padding .container {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(232, 245, 232, 0.9) 100%), 
                url('../images/watermelon-dragonfruit-kiwi.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

/* Subscription Plans */
#plans {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(76, 175, 80, 0.1) 100%), 
                url('../images/kiwi-chia-chopped.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 3px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
}

.pricing-card.featured {
    border-color: var(--primary-green);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.plan-period {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.plan-features li i {
    color: var(--primary-green);
    margin-right: 0.5rem;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, rgba(232, 245, 232, 0.9) 0%, rgba(255, 193, 7, 0.1) 100%), 
                url('../images/kiwi-chia-chopped.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 4rem;
    color: var(--secondary-orange);
    margin-bottom: 1.5rem;
}

/* Testimonials */
#testimonials {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(232, 245, 232, 0.8) 100%), 
                url('../images/watermelon-dragonfruit-kiwi.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 1rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-rating {
    color: var(--accent-yellow);
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-section {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 152, 0, 0.1) 100%), 
                url('../images/mixed-chopped-fruits.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.contact-form {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.footer a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-green);
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--secondary-orange);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Fruit Elements */
.floating-fruits {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.fruit-decoration {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.15;
    animation: floatFruit 8s ease-in-out infinite;
    color: var(--primary-green);
}

.fruit-decoration:nth-child(1) { 
    top: 10%; 
    left: 5%; 
    animation-delay: 0s; 
    animation-duration: 6s;
}
.fruit-decoration:nth-child(2) { 
    top: 20%; 
    right: 8%; 
    animation-delay: 2s; 
    animation-duration: 7s;
    color: var(--secondary-orange);
}
.fruit-decoration:nth-child(3) { 
    bottom: 30%; 
    left: 15%; 
    animation-delay: 4s; 
    animation-duration: 8s;
    color: var(--accent-yellow);
}
.fruit-decoration:nth-child(4) { 
    bottom: 20%; 
    right: 12%; 
    animation-delay: 1s; 
    animation-duration: 6.5s;
    color: var(--accent-red);
}
.fruit-decoration:nth-child(5) { 
    top: 50%; 
    left: 3%; 
    animation-delay: 3s; 
    animation-duration: 7.5s;
    color: var(--primary-green);
}
.fruit-decoration:nth-child(6) { 
    top: 60%; 
    right: 5%; 
    animation-delay: 5s; 
    animation-duration: 6s;
    color: var(--secondary-orange);
}
.fruit-decoration:nth-child(7) { 
    top: 80%; 
    left: 8%; 
    animation-delay: 1.5s; 
    animation-duration: 8s;
    color: var(--accent-yellow);
}
.fruit-decoration:nth-child(8) { 
    top: 15%; 
    left: 50%; 
    animation-delay: 3.5s; 
    animation-duration: 7s;
    color: var(--accent-red);
}

/* Additional fruit decorations with different animations */
.fruit-decoration:nth-child(9) { 
    top: 35%; 
    left: 25%; 
    animation-delay: 2.5s; 
    animation-duration: 8.5s;
    animation-name: floatFruit2;
    color: var(--primary-green);
}
.fruit-decoration:nth-child(10) { 
    top: 70%; 
    right: 25%; 
    animation-delay: 4.5s; 
    animation-duration: 6.5s;
    animation-name: floatFruit2;
    color: var(--secondary-orange);
}
.fruit-decoration:nth-child(11) { 
    top: 45%; 
    right: 35%; 
    animation-delay: 1.8s; 
    animation-duration: 7.2s;
    animation-name: floatFruit;
    color: var(--accent-yellow);
}
.fruit-decoration:nth-child(12) { 
    top: 75%; 
    left: 35%; 
    animation-delay: 3.2s; 
    animation-duration: 8.8s;
    animation-name: floatFruit2;
    color: var(--accent-red);
}

/* Large chopped fruit image decorations */
.chopped-fruit-image {
    position: absolute;
    width: 60px;
    height: 60px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    opacity: 0.2;
    animation: floatFruit 10s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.chopped-fruit-image:nth-child(1) {
    background-image: url('../images/kiwi-chia-chopped.jpg');
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 9s;
}

.chopped-fruit-image:nth-child(2) {
    background-image: url('../images/watermelon-dragonfruit-kiwi.jpg');
    top: 25%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 11s;
}

.chopped-fruit-image:nth-child(3) {
    background-image: url('../images/mixed-chopped-fruits.jpg');
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 8s;
}

.chopped-fruit-image:nth-child(4) {
    background-image: url('../images/kiwi-chia-chopped.jpg');
    bottom: 30%;
    right: 10%;
    animation-delay: 1s;
    animation-duration: 10s;
}

/* Enhanced floating animation */
@keyframes floatFruit {
    0% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.15;
    }
    25% { 
        transform: translateY(-20px) rotate(5deg); 
        opacity: 0.2;
    }
    50% { 
        transform: translateY(-10px) rotate(-3deg); 
        opacity: 0.25;
    }
    75% { 
        transform: translateY(-25px) rotate(3deg); 
        opacity: 0.2;
    }
    100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.15;
    }
}

/* Additional floating animation for variety */
@keyframes floatFruit2 {
    0% { 
        transform: translateY(0px) translateX(0px) rotate(0deg); 
        opacity: 0.1;
    }
    33% { 
        transform: translateY(-15px) translateX(10px) rotate(8deg); 
        opacity: 0.2;
    }
    66% { 
        transform: translateY(-5px) translateX(-5px) rotate(-5deg); 
        opacity: 0.15;
    }
    100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg); 
        opacity: 0.1;
    }
}

/* Section-specific floating fruits */
.section-padding {
    position: relative;
}

.section-padding::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"><text x="10" y="20" font-size="12" fill="%234CAF50" opacity="0.1">🍎</text><text x="80" y="30" font-size="10" fill="%23FF9800" opacity="0.1">🍊</text><text x="20" y="70" font-size="14" fill="%23FFC107" opacity="0.1">🍌</text><text x="70" y="80" font-size="11" fill="%23F44336" opacity="0.1">🍓</text><text x="50" y="50" font-size="9" fill="%234CAF50" opacity="0.1">🥝</text></svg>');
    animation: float 15s linear infinite;
    pointer-events: none;
    z-index: 1;
}
