/* 
   SHAKTI Vermicompost - Premium Design System
   Modern, Clean, and Organic Aethetics
*/

:root {
    /* Primary Color Palette - Organic & Earthy */
    --primary: #10b981;
    /* Emerald 500 */
    --primary-dark: #059669;
    /* Emerald 600 */
    --primary-light: #d1fae5;
    /* Emerald 100 */
    --secondary: #f59e0b;
    /* Amber 500 */
    --secondary-dark: #d97706;
    /* Amber 600 */
    --accent: #10b981;

    /* Neutral Palette */
    --background: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --black: #000000;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-glow: linear-gradient(135deg, rgba(16, 185, 129, 0.4) 0%, rgba(5, 150, 105, 0) 100%);
    --gradient-surface: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(16, 185, 129, 0.4);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --card-text-primary: #4c4c4c;
    --card-text-secondary: #a6a6a6;
    --card-highlight: #ff3f40;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Hind Vadodara', sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    top: 0px !important;
}

a {
    transition: var(--transition-base);
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Merriweather', 'Hind Vadodara', serif;
    font-weight: 700;
    color: #064e3b;
    line-height: 1.2;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

.text-center {
    text-align: center;
}



/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    transform: translateY(-2px);
    color: black;
}

.shadow-glow {
    box-shadow: var(--shadow-glow);
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.75rem 0;
    /* Standardized to avoid jumpy transitions */
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}


.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 80px;
    width: 200px;
    object-fit: cover;
}

.logo img:hover {
    transform: scale(1.15);
}

.logo span {
    color: var(--text-main);
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    transition: var(--transition-base);
}

.nav-links.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    gap: 2.5rem;
    animation: fadeIn 0.3s ease-in-out;
}

.nav-links.active li {
    animation: slideUp 0.5s ease forwards;
    opacity: 0;
}

.nav-links.active li:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-links.active li:nth-child(2) {
    animation-delay: 0.2s;
}

.nav-links.active li:nth-child(3) {
    animation-delay: 0.3s;
}

.nav-links.active li:nth-child(4) {
    animation-delay: 0.4s;
}

.nav-links.active li:nth-child(5) {
    animation-delay: 0.5s;
}

.nav-links.active li:nth-child(6) {
    animation-delay: 0.6s;
}

.nav-links.active li:nth-child(7) {
    animation-delay: 0.7s;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-links a {
    font-weight: 500;
    color: rgb(6, 105, 72);
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gradient-primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    font-weight: 700;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}


.nav-links .btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #064e3b 100%);
    color: #ffffff;
    padding: 0.7rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3), inset 0 0 10px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-glow-premium 2.5s infinite;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

.nav-links .btn-primary:hover {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 12px 25px rgba(16, 185, 129, 0.5);
    color: #ffffff;
}

.nav-links .btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 60%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(35deg);
    animation: shine-premium 4s infinite;
}

@keyframes shine-premium {
    0% {
        left: -120%;
    }

    15% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

@keyframes pulse-glow-premium {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}


.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 2005;
    /* Ensure above mobile menu */
    position: relative;
    transition: all 0.3s ease;
    color: var(--text-main);
    padding: 0.5rem;
    border-radius: 50%;
}

.hamburger:hover {
    background: rgba(196, 101, 6, 0.1);
    color: var(--primary);
}

.hamburger i {
    transition: transform 0.4s ease;
}

.hamburger i.fa-times {
    color: #ef4444;
    transform: rotate(180deg);
}

/* Hero Section */
.hero {
    height: 90vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
    /* Reduced scale to prevent blur */
}

.hero .slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero .slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.badge {
    background: var(--secondary);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
}

/* Quick Features - Enhanced Attractive Design */
.quick-features {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.quick-features::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.quick-features .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.2);
    border-color: var(--primary-light);
}

.feature-item i {
    font-size: 3.5rem;
    color: var(--white);
    background: var(--gradient-primary);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.feature-item:hover i {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

.feature-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: var(--primary-dark);
    font-weight: 700;
    text-align: center;
}

.feature-item p {
    font-size: 1rem;
    color: var(--text-muted);
    text-align: center;
    margin: 0;
}

/* Enhanced Quick Features Section */
.quick-features-enhanced {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    padding: 0;
    position: relative;
    margin-top: 60px;
    z-index: 100;
}

.features-enhanced-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.feature-enhanced-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 40px 35px;
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.feature-enhanced-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, #e5e7eb, transparent);
}

.feature-enhanced-item:last-child::after {
    display: none;
}

.feature-enhanced-item:hover {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    transform: translateY(-5px);
}

.feature-enhanced-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #131212;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.25);
}

.feature-enhanced-item:hover .feature-enhanced-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.35);
}

.feature-enhanced-content h4 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 5px;
    font-weight: 700;
    font-family: 'Hind Vadodara', sans-serif;
}

.feature-enhanced-content p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 992px) {
    .quick-features-enhanced {
        margin-top: 0;
        padding: 60px 0;
    }

    .features-enhanced-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .feature-enhanced-item {
        padding: 30px;
    }

    .feature-enhanced-item::after {
        width: 80%;
        height: 1px;
        top: auto;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(to right, transparent, #e5e7eb, transparent);
    }

    .feature-enhanced-item:last-child::after {
        display: none;
    }

    .feature-enhanced-icon {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
    }
}

@media (max-width: 576px) {
    .feature-enhanced-item {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .feature-enhanced-content h4 {
        font-size: 1.15rem;
    }

    .feature-enhanced-content p {
        font-size: 0.9rem;
    }
}

/* About Section */
.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.main-img {
    border-radius: 2rem;
    box-shadow: var(--shadow-xl);
}

.experience-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    border-radius: 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge span {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.feature-list {
    margin: 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.feature-list i {
    color: var(--primary);
    background: var(--primary-light);
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Benefits Section */
.benefits-section {
    background: #f1f5f9;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 2rem;
    transition: var(--transition-base);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.icon-box {
    width: 5rem;
    height: 5rem;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.5rem;
    margin: 0 auto 2rem;
    font-size: 2rem;
    transition: var(--transition-base);
}

.benefit-card:hover .icon-box {
    background: var(--primary);
    color: var(--white);
}

/* CTA Section */
.premium-cta {
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
    /* Simple Deep Green Background */
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(6, 78, 59, 0.9), rgba(4, 120, 87, 0.8)), url('../images/landgrowth.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.premium-cta h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.premium-cta p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.cta-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* New Attractive CTA Buttons */
.btn-cta-primary {
    background: var(--white);
    color: var(--primary-dark);
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: #f0fdf4;
    color: var(--primary);
}

.btn-cta-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: var(--white);
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details {
    margin-top: 3rem;
}

.detail-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--primary);
    background: var(--primary-light);
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
}

.contact-form-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-xl);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-base);
    background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

/* Footer */
.premium-footer {
    background: linear-gradient(rgba(6, 78, 59, 0.97), rgba(4, 47, 46, 0.99)), url('../images/footer_bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #e2e8f0;
    padding: 3rem 0 0;
    /* Ultra-condensed */
    position: relative;
    overflow: hidden;
}

.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(132, 204, 22, 0.3), transparent);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.5fr;
    gap: 2.2rem;
    /* Tightened */
    padding-bottom: 2rem;
    /* Reduced */
    position: relative;
    z-index: 10;
}

.footer-logo img {
    height: 100px;
    /* Compact logo */
    width: 200px;
    margin-bottom: 1rem;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.contact-details-premium {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item-premium {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.icon-wrap-flower {
    width: 40px;
    /* Mini flower icons */
    height: 40px;
    background: #84cc16;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    position: relative;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(132, 204, 22, 0.3);
}

.icon-wrap-flower::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    border-radius: inherit;
    transform: rotate(45deg);
    z-index: -1;
}

.contact-text a {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    transition: var(--transition-base);
}

.contact-text a:hover {
    color: #bef264;
}

.footer-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    /* Condensed */
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.footer-title::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #84cc16;
    border-radius: 50%;
}

.footer-services-list li {
    margin-bottom: 0.6rem;
    list-style: none;
}

.footer-services-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition-base);
}

.footer-services-list a i {
    color: #84cc16;
    font-size: 0.75rem;
}

.footer-services-list a:hover {
    color: white;
    padding-left: 5px;
}

.footer-services-list a:hover i {
    transform: translate(3px, -3px);
}

.newsletter-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(132, 204, 22, 0.2);
    /* Accent border */
    border-radius: 12px;
    padding: 0.3rem;
    margin-bottom: 1.2rem;
    display: flex;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

#newsletter-form {
    width: 100%;
    display: flex;
    align-items: center;
}

#newsletter-form input {
    background: transparent;
    border: none;
    color: white;
    padding: 0.7rem 1rem;
    flex-grow: 1;
    font-size: 0.9rem;
}

#newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

#newsletter-form input:focus {
    outline: none;
}

#newsletter-form button {
    background: #84cc16;
    color: white;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

#newsletter-form button:hover {
    background: white;
    color: #10100f;
    transform: scale(1.05);
}

.newsletter-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.2rem;
}

.footer-social-premium {
    display: flex;
    gap: 0.7rem;
}

.social-icon-circle {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    transition: var(--transition-base);
}

.social-icon-circle:hover {
    background: #84cc16;
    border-color: #84cc16;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(132, 204, 22, 0.3);
}

.footer-bottom-premium {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    /* Slim bottom bar */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.copyright-text p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.brand-name {
    color: #84cc16;
    font-weight: 600;
}

.designer {
    color: white;
    font-weight: 600;
}

.back-to-top-btn {
    width: 40px;
    height: 40px;
    background: #84cc16;
    color: rgb(51, 49, 49);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-base);
    position: relative;
    box-shadow: 0 4px 10px rgba(132, 204, 22, 0.4);
    z-index: 10;
}

.back-to-top-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    border-radius: inherit;
    transform: rotate(45deg);
    z-index: -1;
}

.back-to-top-btn:hover {
    background: white;
    color: #151514;
    transform: translateY(-4px) rotate(45deg);
}

.back-to-top-btn:hover i {
    transform: rotate(-45deg);
}

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-newsletter {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-newsletter {
        grid-column: span 1;
    }

    .footer-bottom-premium {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .contact-text a {
        font-size: 1.2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 550px) {
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .quick-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
        padding-bottom: 2rem;
    }

    .feature-item:last-child {
        border-bottom: none;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .experience-badge {
        padding: 1rem;
        bottom: -1rem;
        right: -1rem;
    }
}

/* Slider Controls */
.slider-nav {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 20;
}

.slider-nav div {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
}

.slider-nav div:hover {
    background: var(--primary);
}

/* WhatsApp Floating Icon */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25d366;
    color: rgb(10, 10, 10);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Page Header (Global for sub-pages) */
.page-header {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.page-header .hero-content {
    z-index: 2;
}

/* Benefits Detail Grid */
.benefits-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.benefit-detail-card {
    background: var(--white);
    border-radius: 2rem;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.benefit-detail-card:hover {
    transform: translateY(-1rem);
    box-shadow: var(--shadow-xl);
}

.benefit-number {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    z-index: 10;
}

.benefit-detail-img-box {
    height: 250px;
    overflow: hidden;
}

.benefit-detail-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.benefit-detail-card:hover .benefit-detail-img-box img {
    transform: scale(1.1);
}

.benefit-detail-content {
    padding: 2rem;
}

.benefit-detail-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

/* Usage Guide Styles */
.usage-grid-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.modern-usage-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: var(--white);
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.modern-usage-item:nth-child(even) {
    flex-direction: row-reverse;
}

.usage-item-img {
    flex: 1;
    height: 400px;
}

.usage-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.usage-item-content {
    flex: 1.2;
    padding: 3rem;
}

.cat-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.dose {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--secondary);
    color: var(--white);
    border-radius: 9999px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Premium Table */
.premium-table-container {
    overflow-x: auto;
    margin-top: 3rem;
    background: var(--primary-dark);
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-table-container table {
    width: 100%;
    border-collapse: collapse;
}

.premium-table-container th {
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary);
    padding: 1.5rem;
    text-align: left;
}

.premium-table-container td {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

/* Products Grid */
.vibrant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.product-card-vibrant {
    background: var(--white);
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.product-vibrant-img {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.product-vibrant-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-vibrant-img .tag {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.8rem;
}

.product-vibrant-info {
    padding: 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-vibrant-info .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 1.5rem 0;
}

.buy-vibrant-btn {
    margin-top: auto;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    font-weight: 800;
    transition: var(--transition-base);
    text-align: center;
}

.buy-vibrant-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
    color: var(--primary-dark);
}

/* ----- User Requested Product Card Styles ----- */


/* Container for the list of products to add spacing */
.product-list-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem 5rem;
    /* Vertical gap, Horizontal gap for pop-out images */
    padding: 2rem;
    max-width: 1300px;
    margin: 2rem auto;
    align-items: stretch;
}

/* ----- Product Section ----- */
.product {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    margin: 0;
    padding: 2em 0;
    background-color: white;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ----- Photo Section ----- */
.product__photo {
    position: relative;
    height: 220px;
    /* Fixed height for uniformity */
}

.photo-container {
    position: absolute;
    left: -2.5em;
    /* This pulls the image out to the left */
    display: grid;
    grid-template-rows: 1fr;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    box-shadow: 4px 4px 25px -2px rgba(0, 0, 0, 0.3);
    background: #fff;
    /* Fallback */
}

.photo-main {
    border-radius: 6px;
    background-color: #101408;
    background: radial-gradient(#58691a, #608517);
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
    /* To let image pop out if needed, though user css makes img absolute */
}

/* Controls section from user styling - keeping optional */
.photo-main .controls {
    display: flex;
    justify-content: space-between;
    padding: 0.8em;
    color: #fff;
}

.photo-main img {
    position: absolute;
    left: -2em;
    top: 50%;
    transform: translateY(-50%);
    width: 120%;
    /* Same width for all */
    height: 180px;
    /* Same height for all */
    object-fit: contain;
    filter: drop-shadow(1px 20px 10px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.product:hover .photo-main img {
    transform: translateY(-55%) scale(1.05);
}

/* ----- Informations Section ----- */
.product__info {
    padding: 0.8em 2em 0.8em 0;
    /* Added right padding */
}

.title h1 {
    margin-bottom: 0.1em;
    color: var(--card-text-primary);
    font-size: 1.8em;
    /* Adjusted slightly */
    font-weight: 900;
    font-family: 'Raleway', sans-serif;
}

.title span {
    font-size: 0.8em;
    color: var(--card-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    margin: 1.5em 0;
    color: var(--card-highlight);
    font-size: 1.2em;
    font-weight: bold;
}

.price span {
    padding-left: 0.15em;
    font-size: 2.5em;
    line-height: 1;
}

/* Variant section if needed */
.variant {
    overflow: auto;
    margin-bottom: 1em;
}

.variant h3 {
    margin-bottom: 1.1em;
    font-size: 0.7em;
    letter-spacing: 1.2px;
    color: var(--card-text-secondary);
    text-transform: uppercase;
}

.description {
    clear: left;
    margin: 2em 0;
}

.description h3 {
    margin-bottom: 1em;
    font-size: 0.7em;
    letter-spacing: 1.2px;
    color: var(--card-text-secondary);
    text-transform: uppercase;
}

.description ul {
    font-size: 0.9em;
    list-style: disc;
    margin-left: 1.5em;
    color: var(--text-muted);
}

.description li {
    margin-bottom: 0.5em;
}

.buy--btn {
    padding: 1.2em 3em;
    /* Adjusted padding */
    border: none;
    border-radius: 7px;
    font-size: 0.9em;
    font-weight: 700;
    letter-spacing: 1.3px;
    color: #fff;
    background-color: var(--card-highlight);
    box-shadow: 2px 2px 25px -7px var(--card-highlight);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s;
}

.buy--btn:active,
.buy--btn:hover {
    transform: scale(0.97);
}

/* Sticker badge styling reused/adapted */
.save-sticker-modern {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #FFD700;
    color: #b91c1c;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    transform: rotate(15deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
    text-align: center;
    line-height: 1.1;
    font-size: 1rem;
    border: 3px solid #fff;
}

/* Responsive Adjustments */
@media (max-width: 1100px) {
    .product-list-container {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 5rem;
    }
}

@media (max-width: 768px) {
    .product {
        display: flex;
        flex-direction: column;
        padding-top: 0;
        margin-top: 5rem;
    }

    .product__photo {
        height: 200px;
        width: 100%;
        margin-bottom: 2rem;
    }

    .photo-container {
        left: 0;
        top: -40px;
        width: 100%;
        height: 100%;
        position: relative;
    }

    .photo-main img {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        height: 150px;
    }

    .product__info {
        padding: 0 2em 2em 2em;
        text-align: center;
    }

    .buy--btn {
        width: 100%;
    }

    .description ul {
        text-align: left;
    }
}

/* Top Header & Translation Customization */
.top-header {
    background: linear-gradient(90deg, #064e3b 0%, #059669 100%);
    color: white;
    padding: 12px 0;
    font-size: 0.95rem;
    position: relative;
    z-index: 1100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-mini a {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    padding: 6px 15px;
    border-radius: 20px;
    background: rgba(8, 8, 8, 0.1);
}

.contact-mini a:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #064e3b;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-mini i {
    animation: pulse 2s infinite;
    color: #4ade80;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.25);
    padding: 6px 18px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.language-selector:hover {
    background: rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.3);
}

.language-selector>i {
    color: #fbbf24;
    /* Amber/Gold color */
    font-size: 1.2rem;
}

.language-selector>span {
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
}

/* Google Translate Widget Custom Styling - Premium Look */
#google_translate_element {
    display: inline-block;
}

.goog-te-gadget-simple {
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.goog-te-gadget-simple .goog-te-menu-value {
    color: white !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center;
}

.goog-te-gadget-simple .goog-te-menu-value span {
    color: white !important;
    border: none !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 0.85rem !important;
    letter-spacing: 0.5px;
}

.goog-te-gadget-simple .goog-te-menu-value span:hover {
    color: #fbbf24 !important;
}

/* Hide Google Icons & Branding */
.goog-te-gadget-simple img {
    display: none !important;
}

.goog-te-gadget-icon {
    display: none !important;
}

/* Hide "Powered by Google" banner */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

/* Fix body shift caused by Google Translate */


/* Customize the dropdown menu (if possible via CSS) */
.goog-te-menu-frame {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
    border-radius: 12px !important;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile Responsiveness for Top Bar */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 12px;
        padding: 5px 0;
    }

    .top-header {
        padding: 10px 0;
    }

    .contact-mini a,
    .language-selector {
        width: 100%;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
    }
}

/* How it Works Section Styles */
.how-it-works {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.header-divider {
    margin: 1rem auto;
    color: var(--secondary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.header-divider::before,
.header-divider::after {
    content: '';
    width: 50px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 5rem;
    position: relative;
}

.step-card {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-icon-wrap {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 2.5rem;
}

.step-icon {
    width: 100%;
    height: 100%;
    background: var(--white);
    border: 10px solid #fef3c7;
    /* Soft Yellow Border */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--primary-dark);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-card:hover .step-icon {
    transform: scale(1.08) rotate(5deg);
    border-color: var(--primary-light);
    color: var(--primary);
    box-shadow: 0 20px 45px rgba(16, 185, 129, 0.15);
}

.step-number {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 55px;
    height: 55px;
    background: var(--primary-dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    border: 5px solid var(--white);
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-content h3 {
    margin-bottom: 1.25rem;
    font-size: 1.6rem;
    color: #064e3b;
    font-weight: 700;
}

.step-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 70px;
    opacity: 0.8;
}

.step-arrow svg path {
    stroke-dasharray: 8, 8;
    animation: dash 20s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -1000;
    }
}

@media (max-width: 1100px) {
    .step-arrow {
        display: none;
    }

    .process-steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 2rem;
    }
}

@media (max-width: 600px) {
    .process-steps {
        grid-template-columns: 1fr;
    }

    .step-icon-wrap {
        width: 160px;
        height: 160px;
    }
}

/* Product Showcase Section */
.product-showcase {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    margin-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.product-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, #10b981, #059669);
}

.showcase-image {
    flex: 1;
    position: relative;
}

.showcase-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.product-showcase:hover .showcase-image img {
    transform: rotate(0deg) scale(1.02);
}

.showcase-content {
    flex: 1.2;
}

.showcase-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: rgb(20, 20, 20);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.showcase-title {
    font-size: 2.5rem;
    color: #1f293b;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.showcase-title span {
    color: #059669;
}

.showcase-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.highlight-box {
    background: #f0fdf4;
    border-left: 4px solid #10b981;
    padding: 1.5rem;
    border-radius: 0 15px 15px 0;
    margin-top: 2rem;
}

.highlight-box p {
    color: #064e3b;
    font-weight: 600;
    font-size: 1.05rem;
    margin: 0;
}

@media (max-width: 992px) {
    .product-showcase {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .product-showcase::before {
        width: 100%;
        height: 6px;
        background: linear-gradient(to right, #10b981, #059669);
    }

    .highlight-box {
        text-align: left;
    }
}

/* ----- Unified Attractive Card Hover Effects (Global) ----- */

/* 1. Universal Hover Lift & Shadow for Cards */
.feature-item,
.benefit-card,
.modern-usage-item,
.benefit-detail-card,
.product-card-vibrant,
.slogan-card,
.highlight-box,
.vision-card,
.movement-pillar,
.about-intro-box {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative;
    z-index: 1;
}

.feature-item:hover,
.benefit-card:hover,
.modern-usage-item:hover,
.benefit-detail-card:hover,
.product-card-vibrant:hover,
.vision-card:hover,
.movement-pillar:hover,
.about-intro-box:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15), 0 10px 10px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

/* 2. Shine Effect on Hover */
.feature-item::after,
.benefit-card::after,
.modern-usage-item::after,
.product-card-vibrant::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: all 0.7s;
    pointer-events: none;
    z-index: 10;
}

.feature-item:hover::after,
.benefit-card:hover::after,
.modern-usage-item:hover::after,
.product-card-vibrant:hover::after {
    left: 150%;
}

/* 3. Image Zoom in Cards */
.product-vibrant-img img,
.benefit-detail-img-box img,
.showcase-image img,
.usage-item-img img {
    transition: transform 0.5s ease-out;
}

.product-card-vibrant:hover .product-vibrant-img img,
.benefit-detail-card:hover .benefit-detail-img-box img,
.product-showcase:hover .showcase-image img,
.modern-usage-item:hover .usage-item-img img {
    transform: scale(1.08);
}

/* 4. Icon Pulse/Spin on Hover */
.feature-item:hover i,
.benefit-card:hover .icon-box i {
    animation: icon-bounce 0.6s ease;
}

@keyframes icon-bounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* 5. Button Hover Enhancement */
.buy-vibrant-btn,
.btn,
.cta-btn,
.social-btn {

    position: relative;
    overflow: hidden;
}

.buy-vibrant-btn:hover,
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(16, 17, 17, 0.3);
}



/* Slogan Card Hover */
.slogan-card:hover {
    transform: scale(1.03);
    background: rgba(255, 255, 255, 0.15) !important;
    border-left-width: 8px !important;
}

/* Comparison Section - Modern Versus Layout */
.comparison-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: stretch;
    position: relative;
    margin-top: 2rem;
}

.vs-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 80px;
}

.vs-circle {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
    z-index: 10;
    border: 4px solid var(--white);
}

.vs-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #e2e8f0 20%, #e2e8f0 80%, transparent);
}

.comp-card {
    background: var(--white);
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-base);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.comp-card:hover {
    transform: translateY(-10px);
}

.comp-card.chemical {
    border-top: 8px solid #ef4444;
}

.comp-card.organic {
    border-top: 8px solid #10b981;
    background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
}

.comp-card h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

.chemical h3 {
    color: #b91c1c;
}

.organic h3 {
    color: #064e3b;
}

.comp-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.comp-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1.25rem;
    border-radius: 1.2rem;
    transition: var(--transition-fast);
}

.chemical .comp-item {
    background: #fef2f2;
    border-left: 4px solid #fca5a5;
}

.organic .comp-item {
    background: #f0fdf4;
    border-left: 4px solid #86efac;
}

.comp-item .label {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.comp-item .value {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

.chemical .comp-item .value {
    color: #121212;
}

.organic .comp-item .value {
    color: #065f46;
}

@media (max-width: 991px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vs-divider {
        padding: 1rem 0;
        height: 60px;
    }

    .vs-line {
        display: none;
    }
}

/* History Contrast Section */
.history-wrapper {
    background: url('../images/life_contrast.webp') no-repeat center center/cover;
    border-radius: 30px;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    margin-bottom: 4rem;
}

.history-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    backdrop-filter: blur(2px);
}





@media (max-width: 991px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vs-divider {
        padding: 1rem 0;
        height: 60px;
    }

    .vs-line {
        display: none;
    }
}



.history-wrapper .comparison-grid {
    position: relative;
    z-index: 2;
    margin-top: 0;
}

.history-wrapper .comparison-card {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 1rem;
    /* Reduce padding since no card */
}

.history-wrapper .comparison-card:hover {
    background: transparent;
    transform: none;
    /* Remove hover movement as cards are invisible */
}

/* Ensure text is readable on the background */
.history-wrapper h3,
.history-wrapper p,
.history-wrapper li,
.history-wrapper i {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* Add shadow for better readability */
}

.history-wrapper .comparison-card.old {
    border-left: 5px solid var(--primary);
    /* Keep subtle indicator */
    padding-left: 2rem;
}

.history-wrapper .comparison-card.new {
    border-left: 5px solid #ef4444;
    padding-left: 2rem;
}

/* Modern Split Contact Section */
.contact-split-container {
    display: flex;
    min-height: 80vh;
    background: #fdfdfd;
    margin: 4rem auto;
    max-width: 1400px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
}

.contact-split-left {
    flex: 1;
    padding: 5rem 4rem;
    position: relative;
    background: white;
}

.contact-split-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--primary);
}

.contact-split-right {
    flex: 1.2;
    background: url('../images/healthy_soil.webp') no-repeat center center;
    background-size: cover;
    position: relative;
}

.contact-split-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), transparent);
}

.contact-split-left h2 {
    font-size: 3.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-family: 'Merriweather', serif;
}

.contact-split-left p.desc {
    color: #718096;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 500px;
}

.split-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.split-form-group {
    margin-bottom: 2rem;
}

.split-form-group.full-width {
    grid-column: span 2;
}

.split-form-group label {
    display: block;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    text-transform: capitalize;
}

.split-form-group input,
.split-form-group select,
.split-form-group textarea {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: #f7fafc;
    border: 2px solid transparent;
    border-radius: 18px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: #1a202c;
}

.split-form-group input:focus,
.split-form-group select:focus,
.split-form-group textarea:focus {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.1);
    outline: none;
}

.btn-send-message {
    background: #c3da2e;
    /* Vibrant lime green from image */
    color: #064e3b;
    padding: 1.2rem 3rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    margin-top: 1rem;
}

.btn-send-message:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(195, 218, 46, 0.4);
    background: #d4ec3d;
}

.btn-send-message i {
    transition: transform 0.3s ease;
}

.btn-send-message:hover i {
    transform: translateX(5px);
}

@media (max-width: 1100px) {
    .contact-split-container {
        flex-direction: column;
        margin: 1rem;
        border-radius: 20px;
    }

    .contact-split-right {
        height: 350px;
        order: -1;
    }

    .contact-split-left {
        padding: 3rem 2rem;
    }

    .split-form-grid {
        grid-template-columns: 1fr;
    }

    .split-form-group.full-width {
        grid-column: span 1;
    }

    .contact-split-left h2 {
        font-size: 2.5rem;
    }
}

/* Slogan Banner Section */
.slogan-banner-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/landgrowth.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    overflow: hidden;
}

.slogan-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.slogan-banner-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.slogan-badge-premium {
    background: var(--secondary);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.4);
    animation: fadeInUp 0.8s ease-out;
}

.slogan-main-title-premium {
    font-family: 'Hind Vadodara', sans-serif;
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 4rem;
    text-shadow: 3px 6px 15px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out;
}

.slogan-cards-premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.slogan-card-premium {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 3rem 2rem;
    border-radius: 30px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.slogan-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.slogan-card-premium:hover::before {
    left: 100%;
}

.slogan-card-premium:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--secondary);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.slogan-num-circle {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--secondary) 0%, #f59e0b 100%);
    color: rgb(30, 29, 29);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.5);
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.slogan-text-premium {
    font-family: 'Hind Vadodara', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.6;
    color: white;
}

@media (max-width: 768px) {
    .slogan-main-title-premium {
        font-size: 2.5rem;
    }

    .slogan-banner-section {
        padding: 60px 0;
    }
}

/* Message Page Specific Styles */
.message-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/vermi2.webp');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}


.comparison-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
}

.comparison-card.old {
    border-left: 8px solid var(--primary);
}

.comparison-card.new {
    border-left: 8px solid #ef4444;
}

.comparison-card h3 {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checklist {
    list-style: none;
}

.checklist li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.checklist li i {
    color: var(--primary);
}

.new .checklist li i {
    color: #ef4444;
}

.problem-section {
    background: #fff5f5;
}

.chemical-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-bottom: 4px solid #ef4444;
}

.organic-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}



.step-card .icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.vichar-container {
    background: var(--primary-dark);
    color: white;
    border-radius: 30px;
    padding: 4rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.vichar-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.vichar-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 30px 30px 0;
    opacity: 0.9;
}

.vichar-quote {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-family: 'Hind Vadodara', sans-serif;
}

.vichar-badge {
    background: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.mission-journey-section {
    background: linear-gradient(180deg, #ffffff 0%, #f1f8e9 100%);
    padding: 2rem 0;
    overflow: hidden;
}

.mission-header-badge {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.1);
}

.mission-title {
    font-size: 3.5rem;
    color: #1b5e20;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.mission-desc {
    font-size: 1.25rem;
    color: #546e7a;
    max-width: 800px;
    line-height: 1.7;
}

.journey-flow {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

@media (max-width: 1024px) {
    .journey-flow {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .journey-flow {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.step-item {
    position: relative;
    background: #ffffff;
    padding: 0;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    text-align: left;
    overflow: hidden;
}

.step-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(46, 125, 50, 0.12);
    border-color: rgba(46, 125, 50, 0.2);
}

.step-img-box {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
}

.step-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.step-item:hover .step-img-box img {
    transform: scale(1.1);
}

/* New subtle step index */
.step-item::after {
    content: attr(data-step);
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    color: #2e7d32;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.step-content-box {
    padding: 2rem;
}

.step-item h4 {
    font-size: 1.4rem;
    color: #1b5e20;
    margin-bottom: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-item h4 i {
    color: #43a047;
    font-size: 1.2rem;
}

.step-item p {
    font-size: 1rem;
    color: #546e7a;
    line-height: 1.6;
    margin: 0;
}

.emotional-impact-card {
    margin-top: 8rem;
    background: #ffffff;
    border-radius: 40px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    position: relative;
}

.impact-image {
    position: relative;
    min-height: 400px;
}

.impact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.impact-content {
    padding: 5rem 4rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9fdf9 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-lead {
    font-family: 'Hind Vadodara', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1b5e20;
    line-height: 1.2;
    margin-bottom: 2rem;
    position: relative;
}

.quote-lead::before {
    content: '“';
    position: absolute;
    left: -40px;
    top: -20px;
    font-size: 6rem;
    color: #81c784;
    opacity: 0.3;
}

.danger-note {
    background: #fff8f1;
    border-left: 6px solid #fb8c00;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    color: #455a64;
    font-size: 1.15rem;
    line-height: 1.8;
}

.danger-note strong {
    color: #d84315;
    display: block;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.mission-cta-btn {
    background: linear-gradient(45deg, #2e7d32, #43a047);
    color: #ffffff !important;
    padding: 1.2rem 3.5rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(46, 125, 50, 0.3);
    width: fit-content;
}

.mission-cta-btn:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.4);
    filter: brightness(1.1);
}

@media (max-width: 992px) {
    .emotional-impact-card {
        grid-template-columns: 1fr;
    }

    .impact-image {
        height: 350px;
    }

    .impact-content {
        padding: 4rem 2rem;
    }

    .mission-title {
        font-size: 2.5rem;
    }

    .quote-lead {
        font-size: 2.2rem;
    }
}



/* Luxury Poison Section Styles */
.poison-section-luxury {
    background: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}

.poison-grid-luxury {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.poison-badge-luxury {
    color: #43a047;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: block;
    letter-spacing: 0.5px;
}

.poison-title-luxury {
    font-size: 3.8rem;
    color: #064e3b;
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: 'Hind Vadodara', sans-serif;
    font-weight: 800;
}

.poison-subtitle-luxury {
    color: #2e7d32;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 20px;
    display: block;
}

.poison-desc-luxury {
    color: #546e7a;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.poison-list-check {
    margin-bottom: 40px;
}

.poison-list-check li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1e293b;
    font-size: 1.1rem;
}

.poison-list-check li i {
    color: #f59e0b;
    font-size: 1.2rem;
}

.poison-cta-wrap {
    display: flex;
    align-items: center;
    gap: 25px;
}

.poison-cta-btn-luxury {
    background: #1b5e20;
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(27, 94, 32, 0.2);
}

.poison-cta-btn-luxury:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(27, 94, 32, 0.3);
    background: #2e7d32;
}

.poison-cta-btn-luxury .icon-circle {
    width: 35px;
    height: 35px;
    background: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #101110;
    font-size: 0.9rem;
}

.poison-visual-luxury {
    position: relative;
    padding: 40px;
}

.poison-accent-box {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 90%;
    background: #1b5e20;
    border-radius: 20px;
    z-index: 1;
}

.poison-image-main-wrap {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.poison-image-main-wrap img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.poison-image-sub-wrap {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 320px;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 3;
    border: 12px solid #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.poison-image-sub-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.poison-play-btn-wrap {
    position: absolute;
    top: 50px;
    left: -40px;
    z-index: 4;
}

.poison-play-btn {
    width: 130px;
    height: 130px;
    background: #ffca28;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 202, 40, 0.3);
}

.poison-play-btn::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px solid #ffca28;
    border-radius: 50%;
    opacity: 0.5;
}

.poison-play-btn i {
    font-size: 2rem;
    color: #1e293b;
    margin-left: 5px;
}

@media (max-width: 1100px) {
    .poison-grid-luxury {
        gap: 40px;
    }

    .poison-title-luxury {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .poison-grid-luxury {
        grid-template-columns: 1fr;
    }

    .poison-visual-luxury {
        max-width: 600px;
        margin: 60px auto 0;
    }

    .poison-content-luxury {
        text-align: center;
    }

    .poison-badge-luxury,
    .poison-subtitle-luxury {
        justify-content: center;
    }

    .poison-list-check li {
        justify-content: center;
    }

    .poison-cta-wrap {
        justify-content: center;
    }
}


@media (max-width: 576px) {
    .poison-image-sub-wrap {
        width: 200px;
        height: 200px;
        left: 0;
        bottom: -20px;
    }

    .poison-play-btn {
        width: 80px;
        height: 80px;
    }
}


/* Modern Blog-Style Benefits Section */
.benefits-blog-section {
    background: #ffffff;
    padding: 100px 0;
}

.benefits-blog-section .section-subtitle {
    color: #10b981;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.benefits-blog-section .section-subtitle i {
    color: #10b981;
}

.benefits-blog-section .section-title {
    font-size: 3rem;
    color: #1e293b;
    margin-bottom: 4rem;
    text-align: center;
}

.benefits-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-benefit-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(46, 44, 44, 0.12);
}

.blog-benefit-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.blog-benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-benefit-card:hover .blog-benefit-image img {
    transform: scale(1.1);
}

.blog-benefit-content {
    padding: 30px;
}

.blog-benefit-date {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-benefit-date i {
    color: #10b981;
}

.blog-benefit-content h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.blog-benefit-content p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-read-more {
    color: #10b981;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    gap: 12px;
    color: #059669;
}

.blog-read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .benefits-blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .benefits-blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

}

@media (max-width: 1100px) {
    .poison-grid-luxury {
        gap: 40px;
    }

    .poison-title-luxury {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .poison-grid-luxury {
        grid-template-columns: 1fr;
    }

    .poison-visual-luxury {
        max-width: 600px;
        margin: 60px auto 0;
    }

    .poison-content-luxury {
        text-align: center;
    }

    .poison-badge-luxury,
    .poison-subtitle-luxury {
        justify-content: center;
    }

    .poison-list-check li {
        justify-content: center;
    }

    .poison-cta-wrap {
        justify-content: center;
    }
}


@media (max-width: 576px) {
    .poison-image-sub-wrap {
        width: 200px;
        height: 200px;
        left: 0;
        bottom: -20px;
    }

    .poison-play-btn {
        width: 80px;
        height: 80px;
    }
}


/* Modern Blog-Style Benefits Section */


@media (max-width: 992px) {
    .benefits-blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .benefits-blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .benefits-blog-section .section-title {
        font-size: 2.2rem;
    }
}

/* Comparison Section styles moved to new.css */

/* Reviews Section - Polaroid Theme */
.reviews-section {
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 4rem 2.5rem;
    /* More vertical gap for the popping images */
    margin-top: 3rem;
    align-items: start;
}

.review-card-polaroid {
    background: var(--white);
    padding: 2.2rem;
    padding-bottom: 5rem;
    /* Extra space for bottom elements */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s ease;
    border: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 480px;
    /* Ensure enough height */
}

/* Header: Avatar + Name */
.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.author-avatar-small {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #f1f5f9;
}

.author-avatar-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-meta h4 {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 0px;
    font-weight: 700;
}

.author-meta p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* Body Text */
.review-body {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

/* Footer Visuals Area */
.card-footer-visual {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    /* Define width area */
    height: 50px;
}

/* Rating Badge Pill */
.rating-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #1f2937;
    /* Dark background like reference pill */
    color: #fff;
    padding: 0.6rem 1.4rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.rating-badge i {
    color: #fff;
    /* White star */
}

/* Polaroid Image */
.polaroid-wrapper {
    position: absolute;
    bottom: -40px;
    right: -20px;
    width: 180px;
    height: 200px;
    background: #fff;
    padding: 8px 8px 25px 8px;
    /* Polaroid frame spacing */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: rotate(-5deg);
    z-index: 10;
    transition: transform 0.3s ease;
}

.review-card-polaroid:hover .polaroid-wrapper {
    transform: rotate(0deg) scale(1.05);
    /* Straighten up on hover */
    z-index: 20;
}

.polaroid-frame {
    width: 100%;
    height: 100%;
    background: #eee;
    overflow: hidden;
}

.polaroid-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .review-card-polaroid {
        min-height: auto;
        padding-bottom: 12rem;
        /* Make space for image on mobile */
    }

    .polaroid-wrapper {
        width: 150px;
        height: 170px;
        bottom: -30px;
        right: 0;
    }
}

/* Add missing class for reviews-section */

/* Values Section Structured CSS */
.values-section {
    padding: 0 0 2rem 0;
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.values-title {
    font-size: 2.5rem;
    color: #064e3b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.values-subtitle {
    color: #475569;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.values-card {
    text-align: center;
    padding: 2.5rem;
    border-radius: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.values-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.values-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.values-card-title {
    font-size: 1.4rem;
    color: #064e3b;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.values-card-desc {
    color: #475569;
    line-height: 1.7;
    margin: 0;

}

/* Color Variants */
.values-card.purity {
    background: #f0fdf4;
    border-bottom: 4px solid #10b981;
}

.values-card.quality {
    background: #fffbeb;
    border-bottom: 4px solid #f59e0b;
}

.values-card.trust {
    background: #eff6ff;
    border-bottom: 4px solid #3b82f6;
}

.values-card.environment {
    background: #fdf2f8;
    border-bottom: 4px solid #ec4899;
}

.values-card.education {
    background: #eef2ff;
    border-bottom: 4px solid #6366f1;
}

.values-card.dedication {
    background: #fefce8;
    border-bottom: 4px solid #ca8a04;
}