/* Modern CSS Variables for Zen-like Experience */
:root {
    --primary-green: #2e7d32;
    --soft-sage: #8bc34a;
    --warm-amber: #ff7043;
    --gentle-lavender: #9c27b0;
    --whisper-white: #fafafa;
    --cloud-gray: #f5f5f5;
    --meditation-purple: #6a1b9a;
    --sunset-orange: #ff5722;
    --moonlight-blue: #e3f2fd;
    --sacred-gold: #ffd700;
}

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #e8f5e8 0%, #f3e5f5 25%, #fff3e0 50%, #e1f5fe 75%, #f1f8e9 100%);
    background-attachment: fixed;
    animation: gentleColorShift 30s ease-in-out infinite;
    backdrop-filter: blur(20px) saturate(180%);
}

@keyframes gentleColorShift {
    0%, 100% { filter: hue-rotate(0deg) brightness(1); }
    25% { filter: hue-rotate(10deg) brightness(1.05); }
    50% { filter: hue-rotate(-5deg) brightness(0.98); }
    75% { filter: hue-rotate(5deg) brightness(1.02); }
}

/* Floating Particles Background */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.2) 70%, transparent 100%);
    border-radius: 50%;
    animation: floatUp 15s linear infinite;
    opacity: 0.6;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Aurora Background Effect */
.aurora {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(45deg, 
        rgba(138, 43, 226, 0.1) 0%,
        rgba(30, 144, 255, 0.1) 25%,
        rgba(255, 20, 147, 0.1) 50%,
        rgba(0, 255, 127, 0.1) 75%,
        rgba(255, 215, 0, 0.1) 100%);
    animation: auroraShift 20s ease-in-out infinite;
}

@keyframes auroraShift {
    0%, 100% { transform: translateX(-100%) rotate(0deg); }
    50% { transform: translateX(100%) rotate(180deg); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Professional Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(46, 125, 50, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    height: 70px;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo h2 {
    color: var(--primary-green);
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: logoShine 4s ease-in-out infinite;
    letter-spacing: -1px;
}

@keyframes logoShine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    background: rgba(46, 125, 50, 0.05);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid rgba(46, 125, 50, 0.1);
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 24px;
    border-radius: 40px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    border-radius: 40px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-menu a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-menu a:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

.nav-menu a.active {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

/* Call Us Today Banner - Hover Overlay */
.call-banner {
    position: fixed;
    top: 70px;
    width: 100%;
    background: linear-gradient(135deg, #ff7043 0%, #ff5722 100%);
    color: white;
    padding: 8px 0;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(255, 112, 67, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
}

.call-banner:hover,
.navbar:hover + .call-banner,
.call-banner.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

@keyframes bannerPulse {
    0%, 100% { 
        box-shadow: 0 4px 20px rgba(255, 112, 67, 0.4);
    }
    50% { 
        box-shadow: 0 4px 25px rgba(255, 112, 67, 0.6);
    }
}

.call-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.call-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.3;
}

.call-text p {
    font-size: 0.9rem;
    opacity: 0.95;
    margin: 0;
    line-height: 1.4;
}

.call-action {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    flex-wrap: wrap;
}

.call-button {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
}

@keyframes callButtonPulse {
    0%, 100% { 
        transform: scale(1);
        background: rgba(255, 255, 255, 0.15);
    }
    50% { 
        transform: scale(1.02);
        background: rgba(255, 255, 255, 0.2);
    }
}

.call-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.call-button:hover::before {
    animation: shimmerCall 1s ease-in-out;
}

@keyframes shimmerCall {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

.call-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

.phone-number {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 1px;
}

.quick-form-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #ff5722;
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
}

.quick-form-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Hero section positioned right after navbar */
.hero {
    margin-top: 70px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(46, 125, 50, 0.9) 0%, 
        rgba(156, 39, 176, 0.8) 25%,
        rgba(255, 112, 67, 0.8) 50%,
        rgba(106, 27, 154, 0.9) 75%,
        rgba(46, 125, 50, 0.9) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255,255,255,0.05) 0%, transparent 50%);
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    animation: floatIn 2s ease-out;
}

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    animation: breathe 4s ease-in-out infinite;
    background: linear-gradient(45deg, #ffffff, #ffd700, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: gentleSway 6s ease-in-out infinite;
}

@keyframes gentleSway {
    0%, 100% { transform: translateX(0px); }
    33% { transform: translateX(5px); }
    66% { transform: translateX(-5px); }
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: linear-gradient(45deg, #ff7043, #ff5722, #ff7043);
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 112, 67, 0.4);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 0 8px 25px rgba(255, 112, 67, 0.4), 0 0 0 rgba(255, 112, 67, 0.4);
    }
    50% { 
        box-shadow: 0 8px 25px rgba(255, 112, 67, 0.6), 0 0 20px rgba(255, 112, 67, 0.3);
    }
}

.cta-primary:hover {
    background-position: 100% 100%;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 112, 67, 0.7);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    animation: countUp 2s ease-out 1s both;
}

@keyframes countUp {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sacred-gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: numberGlow 4s ease-in-out infinite;
}

@keyframes numberGlow {
    0%, 100% { 
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 10px rgba(255, 215, 0, 0.5);
    }
    50% { 
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 20px rgba(255, 215, 0, 0.8);
    }
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.85) 0%, 
        rgba(248, 249, 250, 0.85) 100%);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(46, 125, 50, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(156, 39, 176, 0.05) 0%, transparent 50%);
    animation: bgPulse 10s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.products h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--primary-green);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    animation: titleReveal 1s ease-out;
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.product-category {
        margin-bottom: 4rem;
    }

    .category-title {
        font-size: 2rem;
        color: #8B7355;
        text-align: center;
        margin-bottom: 2rem;
        font-weight: 300;
        letter-spacing: 2px;
    }

.product-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.product-card:hover::before {
    animation: shimmerEffect 1s ease-in-out;
}

@keyframes shimmerEffect {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

.product-card.featured {
    background: linear-gradient(135deg, 
        rgba(255, 243, 224, 0.95) 0%, 
        rgba(255, 224, 178, 0.95) 100%);
    border: 2px solid var(--warm-amber);
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 112, 67, 0.3);
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: var(--primary-green);
}

.product-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: iconFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-5px) rotate(2deg); }
    66% { transform: translateY(2px) rotate(-1deg); }
}

.product-card h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.blend-composition {
    color: #666;
    font-style: italic;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

.product-details {
        margin: 1.5rem 0;
        text-align: left;
    }

    .detail-section {
        margin-bottom: 0.8rem;
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .detail-section strong {
        color: #8B7355;
        font-weight: 600;
    }

.product-features {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.feature {
    background: linear-gradient(45deg, #e8f5e8, #f1f8e9);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(46, 125, 50, 0.2);
    transition: all 0.3s ease;
}

.feature:hover {
    background: linear-gradient(45deg, #c8e6c8, #e8f5e8);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
}

/* Wholesale Section */
.wholesale {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(243, 229, 245, 0.85) 0%, 
        rgba(225, 190, 231, 0.85) 100%);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.wholesale::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(156, 39, 176, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 112, 67, 0.1) 0%, transparent 50%);
    animation: sectionPulse 12s ease-in-out infinite;
}

@keyframes sectionPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

.wholesale-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.wholesale h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.wholesale-benefits {
    margin-top: 2rem;
}

.benefit {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: benefitSlideIn 0.6s ease-out;
}

@keyframes benefitSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.benefit-icon {
    font-size: 2rem;
    background: linear-gradient(45deg, #e8f5e8, #f1f8e9);
    padding: 1rem;
    border-radius: 15px;
    min-width: 60px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.2);
    animation: iconBounce 4s ease-in-out infinite;
}

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

.benefit h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.wholesale-form {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.wholesale-form h3 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    padding: 15px 20px;
    border: 2px solid rgba(46, 125, 50, 0.2);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
    transform: translateY(-2px);
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.85) 0%, 
        rgba(241, 248, 233, 0.85) 100%);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-top: 1px solid rgba(255,255,255,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.why-choose h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--primary-green);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: featureIconFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

@keyframes featureIconFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-8px) scale(1.05); }
}

.feature-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(243, 229, 245, 0.85) 0%, 
        rgba(225, 190, 231, 0.85) 100%);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

/* Footer Link Styling */
.footer-section ul li a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-green);
    text-shadow: 0 0 5px rgba(46, 125, 50, 0.5);
    transform: translateX(3px);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    animation: contactSlideIn 0.6s ease-out;
}

@keyframes contactSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-icon {
    font-size: 1.8rem;
    background: linear-gradient(45deg, #e3f2fd, #f1f8e9);
    padding: 1rem;
    border-radius: 15px;
    min-width: 60px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-item h4 {
    color: var(--primary-green);
    margin-bottom: 0.3rem;
}

.quick-contact {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px 20px;
    border: 2px solid rgba(46, 125, 50, 0.2);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, 
        rgba(46, 125, 50, 0.9) 0%, 
        rgba(106, 27, 154, 0.9) 100%);
    color: white;
    padding: 60px 0 30px;
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-top: 1px solid rgba(255,255,255,0.3);
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section ul li:hover {
    opacity: 1;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    opacity: 0.8;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    margin: 5% auto;
    padding: 3rem;
    border-radius: 25px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--primary-green);
    text-shadow: 0 0 10px rgba(46, 125, 50, 0.5);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.modal-form input,
.modal-form select {
    padding: 15px 20px;
    border: 2px solid rgba(46, 125, 50, 0.2);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.modal-form input:focus,
.modal-form select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        height: 60px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .logo h2 {
        font-size: 1.8rem;
    }

    .nav-menu {
        display: none;
    }

    .call-banner {
        top: 60px;
        padding: 8px 0;
    }

    .call-content {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .call-text h3 {
        font-size: 1rem;
        line-height: 1.2;
    }

    .call-text p {
        font-size: 0.85rem;
    }

    .call-action {
        justify-content: center;
        gap: 0.6rem;
    }

    .call-button {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .phone-number {
        font-size: 0.9rem;
    }

    .quick-form-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .hero {
        margin-top: 60px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .wholesale-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-menu {
        display: none;
    }

    .container {
        padding: 0 15px;
    }

    .products-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .products h2,
    .why-choose h2 {
        font-size: 2.2rem;
    }

    .wholesale h2,
    .contact h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        height: 55px;
    }

    .call-banner {
        top: 55px;
        padding: 6px 0;
    }

    .call-text h3 {
        font-size: 0.95rem;
        line-height: 1.2;
    }

    .call-text p {
        font-size: 0.8rem;
    }

    .call-action {
        gap: 0.5rem;
        flex-direction: column;
        width: 100%;
    }

    .call-button, .quick-form-btn {
        width: 100%;
        max-width: 260px;
        padding: 6px 12px;
    }

    .hero {
        margin-top: 55px;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .cta-primary,
    .cta-secondary {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .product-card,
    .feature-card {
        padding: 1.5rem;
    }

    .wholesale-form,
    .quick-contact {
        padding: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Zen-like loading animation */
@keyframes zenLoading {
    0% { opacity: 0; transform: scale(0.8) rotate(0deg); }
    50% { opacity: 0.5; transform: scale(1.1) rotate(180deg); }
    100% { opacity: 1; transform: scale(1) rotate(360deg); }
}

.zen-loader {
    animation: zenLoading 2s ease-in-out;
}

/* Mindful hover effects */
.mindful-hover {
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.mindful-hover:hover {
    transform: translateY(-5px) scale(1.02);
    filter: brightness(1.05) saturate(1.1);
}

/* Sacred geometry background patterns */
.sacred-geometry {
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(46, 125, 50, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(156, 39, 176, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 112, 67, 0.02) 0%, transparent 50%);
    background-size: 300px 300px, 200px 200px, 400px 400px;
    animation: geometryShift 20s ease-in-out infinite;
}

@keyframes geometryShift {
    0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%; }
    33% { background-position: 100% 0%, 0% 100%, 0% 50%; }
    66% { background-position: 50% 100%, 50% 0%, 100% 0%; }
}

.blend-guide {
        background: rgba(139, 115, 85, 0.1);
        border-radius: 20px;
        padding: 2.5rem;
        margin-top: 3rem;
    }

    .blend-guide h3 {
        text-align: center;
        color: #8B7355;
        margin-bottom: 2rem;
        font-size: 1.8rem;
    }

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

    .herb-profile {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 1.5rem;
    }

    .herb-profile h4 {
        color: #8B7355;
        margin-bottom: 0.8rem;
        font-size: 1.1rem;
    }

    .herb-profile p {
        font-size: 0.9rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.8);
    }

/* Legal Pages Styling */
.legal-content {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, 
        rgba(101, 67, 147, 0.1) 0%, 
        rgba(165, 147, 201, 0.05) 50%, 
        rgba(85, 170, 85, 0.1) 100%);
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.legal-text h1 {
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Legal Section Formatting */
.legal-intro {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(101, 67, 147, 0.1), rgba(165, 147, 201, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(101, 67, 147, 0.2);
}

.legal-intro h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.intro-text {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    font-weight: 500;
}

.legal-section {
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(101, 67, 147, 0.1);
    transition: all 0.3s ease;
}

.legal-section:hover {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 5px 20px rgba(101, 67, 147, 0.1);
}

.legal-section h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-number {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Definition Grid */
.definition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.definition-item {
    padding: 15px;
    background: rgba(101, 67, 147, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    line-height: 1.6;
}

/* Requirement and Usage Boxes */
.requirement-box, .usage-box, .info-box {
    padding: 25px;
    border-radius: 12px;
    margin: 20px 0;
}

.requirement-box {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 235, 59, 0.1));
    border: 2px solid rgba(255, 193, 7, 0.3);
}

.usage-box.permitted {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(139, 195, 74, 0.1));
    border: 2px solid rgba(76, 175, 80, 0.3);
}

.usage-box.prohibited {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.1), rgba(255, 87, 34, 0.1));
    border: 2px solid rgba(244, 67, 54, 0.3);
}

.info-box {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(3, 169, 244, 0.1));
    border: 2px solid rgba(33, 150, 243, 0.3);
}

.requirement-box h4, .usage-box h4, .info-box h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

/* Information Categories */
.info-category {
    margin: 30px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(101, 67, 147, 0.1);
}

.info-category h4 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.info-item {
    padding: 12px 15px;
    background: rgba(101, 67, 147, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
    line-height: 1.5;
    color: #555;
}

/* Cookie Information */
.cookie-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cookie-type {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(101, 67, 147, 0.1);
}

.cookie-icon {
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
}

/* Lists */
.requirement-list, .disclaimer-list {
    margin: 15px 0;
    padding-left: 20px;
}

.requirement-list li, .disclaimer-list li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #555;
}

.legal-note {
    margin-top: 15px;
    font-style: italic;
    color: #666;
    font-weight: 500;
}

.legal-text h2 {
    color: var(--accent-color);
    margin: 30px 0 20px;
    font-size: 1.8rem;
}

.legal-text h4 {
    color: var(--secondary-color);
    margin: 20px 0 10px;
    font-size: 1.2rem;
}

.legal-text p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #444;
}

.legal-text ul {
    margin: 15px 0 15px 20px;
    line-height: 1.7;
}

.legal-text li {
    margin-bottom: 8px;
    color: #555;
}

.warning-box {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.warning-box p {
    margin: 0;
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .legal-text {
        padding: 30px 20px;
        margin: 0 20px;
    }

    .legal-text h1 {
        font-size: 2.2rem;
    }

    .definition-grid, .info-grid {
        grid-template-columns: 1fr;
    }

    .legal-section {
        padding: 20px;
    }
}