@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    /* Color Palette */
    --color-primary: #1B8941;
    /* Deep Medicinal Green */
    --color-secondary: #2C332B;
    /* Dark Green/Black for text */
    --color-accent: #A3B18A;
    /* Sage/Light Green */
    --color-background: #FFFFFF;
    /* Pure White */
    --color-surface: #F9F6EE;
    /* Light Cream */
    --color-text-main: #292E35;
    /* Dark Navy/Grey */
    --color-text-light: #6D726D;
    --color-white: #FFFFFF;
    --color-gold: #FFD700;
    /* Gold for stars */

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    /* Spacing */
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    /* Border Radius */
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-round: 50px;

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: #FFFFFF;
    background-image: url('../images/leaf-pattern.png');
    background-repeat: repeat;
    background-size: 500px;
    background-attachment: fixed;
    color: var(--color-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.92);
    pointer-events: none;
    z-index: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

main {
    position: relative;
    z-index: 1;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-round);
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #1FAF56;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .section {
        padding: 2rem 0;
        /* Tighter padding for mobile */
    }
}

.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: var(--spacing-sm);
}

.mb-2 {
    margin-bottom: var(--spacing-md);
}

.mb-4 {
    margin-bottom: var(--spacing-lg);
}

/* Animation Utilities */
.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }

    from {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* Layout Styles */

/* Top Announcement Bar */
.top-announcement-bar {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    z-index: 1100;
    /* Above navbar */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.top-announcement-bar strong {
    font-weight: 700;
    color: #FFD700;
    /* Gold for emphasis */
}

@media (max-width: 768px) {
    .top-announcement-bar {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}


/* Navbar */
.navbar {
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--color-text-main);
}

.nav-links a:hover {
    color: var(--color-primary);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu Animation */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background-color: var(--color-white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    /* Separator */
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    /* Ensure it floats above content */
}

.mobile-menu.active {
    max-height: 400px;
    /* Allow enough height */
    border-bottom: 2px solid var(--color-primary);
}

.mobile-menu a {
    display: block;
    padding: 15px 20px;
    color: var(--color-text-main);
    font-weight: 500;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.2s ease;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.active a {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delay for Menu Items */
.mobile-menu.active a:nth-child(1) {
    transition-delay: 0.05s;
}

.mobile-menu.active a:nth-child(2) {
    transition-delay: 0.1s;
}

.mobile-menu.active a:nth-child(3) {
    transition-delay: 0.15s;
}

.mobile-menu.active a:nth-child(4) {
    transition-delay: 0.2s;
}

.mobile-menu a:hover {
    background-color: rgba(27, 137, 65, 0.05);
    color: var(--color-primary);
    padding-left: 25px;
    /* Slide effect */
}

/* --- White Angel Style Premium Mobile Footer --- */
.new-mobile-footer.wa-layout {
    background: linear-gradient(180deg, #F9FCF9 0%, #EFF5EF 100%);
    /* Preserving the fresh herbal background */
    padding: 3rem 1.5rem 1.5rem;
    color: #2C332B;
    position: relative;
    overflow: hidden;
}

.new-mobile-footer.wa-layout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: none !important;
    pointer-events: none;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* 1. Brand Header */
.footer-brand-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(27, 137, 65, 0.1);
}

/* Giant Bottom Logo */
.footer-bottom-logo-container {
    text-align: center;
    margin-top: 0;
    /* Zero margin */
    margin-bottom: 0;
    /* Zero margin */
    padding-top: 0;
    /* Zero padding */
    border-top: none;
    /* Remove border to close gap */
    line-height: 0;
    /* Remove line-height gap */
}

.footer-giant-logo {
    height: 300px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    margin: -90px 0;
    /* Extremely aggressive pull */
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* 2. Columns Grid */
.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    /* Ultra compact */
    justify-content: space-between;
    text-align: left;
    margin-bottom: 0px;
}

.footer-col-group {
    flex: 1 1 100%;
    /* Stack on mobile */
    min-width: 200px;
}

.footer-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: #000000 !important;
    /* Force Black */
    margin-bottom: 0.5rem;
    /* Tighter headings */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 30px;
    height: 2px;
    background-color: #A3B18A;
    /* Sage accent */
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.4rem;
    /* Tighter list items */
}

.footer-list a {
    color: #000000 !important;
    /* Force Black */
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: block;
}

.footer-list a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

/* Contact List specific */
.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    /* Tighter contact items */
    color: #000000 !important;
    /* Force Black */
    font-size: 0.95rem;
}

.footer-contact-list .icon {
    font-size: 1.1rem;
    min-width: 24px;
}

.footer-contact-list a {
    color: #000000 !important;
}

/* 3. Social Row */
.footer-socials-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
}

.social-btn {
    display: block;
    transition: transform 0.2s;
}

.social-btn:hover {
    transform: translateY(-3px);
}

.social-btn svg {
    width: 34px;
    height: 34px;
    display: block;
}

/* 4. Bottom Bar */
.footer-bottom-bar {
    text-align: center;
    color: #8C9E8C;
    font-size: 0.8rem;
}

/* Standard Tablet/Desktop Grid */
@media (min-width: 600px) {
    .footer-col-group {
        flex: 1 1 45%;
        /* 2 cols */
    }
}

@media (min-width: 900px) {
    .footer-col-group {
        flex: 1;
        /* 3 cols in row */
        text-align: left;
    }

    .footer-brand-header {
        text-align: center;
        /* Keep logo centered as common in big footers or move left? */
        /* Design choice: Let's keep it centered header for impact */
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* --- FIX: Restored Header Styles for Reverted Design --- */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 0 0;
    /* Right padding to pull menu from edge, Left 0 for logo */
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1001;
    height: 70px;
    /* Reduced height as requested */
    width: 100%;
}

.main-header .logo {
    height: 100%;
    display: flex;
    align-items: center;
    flex: 1;
}

.main-header .logo a {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
    z-index: 1002;
    /* Higher than header bg, lower than actions */
    position: relative;
    width: 200px;
    /* Limit width so it doesn't overlap menu on the right */
}

.main-header .logo img {
    height: 150%;
    /* Drastically increased to overflow small header */
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    padding: 0;
    transform: scale(1.8);
    /* increased zoom */
    /* Zoom + Move Down */
    transform-origin: left center;
    margin-left: -55px;
    /* Pull visual logo */
    margin-top: 15px;
    /* Nudge down to center visually */
    pointer-events: none;
    /* Let clicks pass through image to link IF needed, but link handles it. */
}

.nav-cart-icon {
    color: #000;
    display: flex;
    align-items: center;
    position: relative;
    text-decoration: none;
}

.cart-count-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--color-primary);
    color: white;
    font-size: 0.7rem;
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 10;
}



.main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--color-text-main);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    font-family: var(--font-body);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1005;
    /* IMPORTANT: Sit ABOVE the huge logo */
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: relative;
    z-index: 1006;
    /* IMPORTANT: Highest priority click target */
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-text-main);
    border-radius: 2px;
}

@media (max-width: 768px) {
    /* Removed specific header overrides to match user request for 'Menu to Right' state */

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-white);
        box-shadow: var(--shadow-md);
        padding: 1rem;
        z-index: 1000;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

/* Component Styles */

/* Hero Section */
.hero-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    min-height: 80vh;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(58, 90, 64, 0.1);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-round);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-main);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
}

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.product-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-details {
    padding: var(--spacing-md);
}

.product-details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.product-details .price {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.product-details .price .size {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.product-details .desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    min-height: 3rem;
    /* Align buttons */
}

.btn-full {
    display: block;
    text-align: center;
    width: 100%;
}

/* Trust Section */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.trust-item {
    padding: var(--spacing-md);
    background-color: rgba(163, 177, 138, 0.1);
    /* light accent */
    border-radius: var(--radius-md);
}

.trust-item h4 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

/* Footer Legal & Trust Styles */
.footer-legal-block {
    padding: 1.5rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-disclaimer,
.footer-payment-trust {
    margin-bottom: 1rem;
}

.footer-disclaimer p,
.footer-payment-trust p {
    margin-bottom: 0.5rem;
}

.footer-business-identity {
    font-size: 0.8rem;
    color: #888;
    margin-top: 1rem;
    text-align: center;
}


/* Backgrounds */
.bg-light {
    background-color: #F8F9F5;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        width: 95%;
        /* More width on mobile */
    }

    .section {
        padding: var(--spacing-lg) 0;
        /* Less padding on mobile */
    }

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: var(--spacing-md);
        min-height: auto;
        /* Remove fixed height constraint */
    }

    .hero-title {
        font-size: 2rem;
        /* Smaller title */
    }

    .hero-subtitle {
        font-size: 1rem;
        margin: 0 auto var(--spacing-md);
    }

    .hero-actions {
        flex-direction: column;
        /* Stack buttons */
        gap: 1rem;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        /* Full width buttons */
    }

    /* Adjust Grid for small screens */
    .product-grid {
        grid-template-columns: 1fr;
        /* Single column on mobile */
        gap: var(--spacing-md);
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* Floating WhatsApp Button - Icon Only */
/* Floating WhatsApp Button - WhiteAngelMedicines Style */
.floating-whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-whatsapp-label {
    background-color: #ffffff;
    color: #43474e;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 13px;
    /* Increased from 11px for better visibility */
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    position: relative;
    /* Optional: Entrance animation */
    animation: fadeIn 0.5s ease-out;
    text-align: right;
    /* Align text to right so it sits nicely next to button */
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    min-width: 100px;
    /* Ensure it has width */
}

.floating-whatsapp-btn {
    width: 55px;
    height: 55px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    /* Pulse Animation removed as requested */
    transition: transform 0.3s ease;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #20b857;
}

.floating-whatsapp-btn svg {
    width: 35px;
    height: 35px;
    display: block;
}

/* Pulse Animation Keyframes */
@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .floating-whatsapp-container {
        bottom: 20px;
        right: 20px;
    }

    .floating-whatsapp-btn {
        width: 50px;
        height: 50px;
    }

    .floating-whatsapp-btn svg {
        width: 28px;
        height: 28px;
    }

    .floating-whatsapp-label {
        font-size: 12px;
        padding: 6px 10px;
    }
}

/* Top Header Bar */
.top-header-bar {
    background-color: #171A4E;
    color: #A8ADB8;
    height: 32px;
    /* Reduced from 40px */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 400;
    position: relative;
    z-index: 1000;
}

/* ... */

/* Mobile Adjustments for Top Bar */
@media (max-width: 768px) {
    .top-header-bar {
        font-size: 11px;
        /* Slightly smaller text on mobile */
        height: 28px;
        /* Reduced from 35px */
    }
}

/* --- Visibility Utilities --- */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Social Icons */
.footer-social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8f5e9;
    color: #1b8941;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #1b8941;
    color: white;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 992px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }
}

/* --- Hero Swiper Styles (Replicating WhiteAngelMedicines) --- */
.hero-swiper {
    width: 100%;
    height: 600px;
    /* Force consistent height */
    border-radius: 40px;
    /* The signature rounded corners */
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hero-slide-item {
    width: 100%;
    height: 100%;
}

.slide-inner {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 0 5%;
    align-items: center;
    position: relative;
    background: transparent;
}

.slide-content {
    flex: 1;
    z-index: 10;
    max-width: 50%;
    padding-left: 2rem;
}

.slide-visual {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
}

.slide-visual img {
    max-height: 85%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s ease;
}

.swiper-slide-active .slide-visual img {
    transform: scale(1.05);
    /* Subtle zoom on active */
}

/* Typography specifics for the slider */
.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.slide-desc {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 90%;
}

.badge-pill {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Swiper Pagination Customization */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #000;
    opacity: 0.2;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #1B8941;
    /* Primary Green */
    width: 25px;
    border-radius: 5px;
}

/* Mobile Responsiveness for Slider */
/* Mobile Responsiveness for Slider - Refined to match WhiteAngelMedicines */
/* Mobile Responsiveness for Slider & Products */
@media (max-width: 992px) {
    .container.hero-container-wrapper.mobile-only {
        padding: 0 16px;
    }

    .hero-swiper {
        height: auto;
        min-height: 220px;
        border-radius: 12px;
        margin-bottom: 2rem;
        background: #FFFFFF;
        position: relative;
        z-index: 2;
    }

    .slide-inner {
        flex-direction: row;
        padding: 24px 16px;
        text-align: left;
        justify-content: space-between;
        align-items: center;
        background: transparent;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    }

    .slide-content {
        max-width: 45%;
        padding-left: 0;
        z-index: 20;
    }

    .slide-visual {
        height: 100%;
        width: 55%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slide-visual img {
        max-height: 250px;
        width: auto;
        max-width: 140%;
        object-fit: contain;
        transform: scale(1.25);
        margin-right: -15px;
    }

    /* Slight zoom for impact */

    .slide-title {
        font-size: 1.5rem;
        font-family: 'Outfit', serif;
        font-weight: 700;
        color: #1b5e20;
        margin-bottom: 0.5rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        display: block;
        font-size: 0.9rem;
        color: #666;
        margin-bottom: 1rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Show ONE primary CTA button */
    .slide-content .btn {
        display: inline-block !important;
        padding: 8px 16px;
        font-size: 0.85rem;
        background-color: var(--color-primary);
        color: white;
        border-radius: 4px;
        border: none;
    }

    /* Hide pagination on mobile */
    .swiper-pagination {
        display: none;
    }

    .header-actions .btn {
        display: none !important;
    }
}

/* Trust Strip Global Display (Mobile Optimized) */
.trust-strip {
    display: block !important;
    background: #fcfcfc !important;
    /* Very light clean background */
    padding: 1.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.trust-strip .container {
    display: flex;
    justify-content: space-between;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    /* Scroll room */
    gap: 1.5rem;
}

/* Mobile Product Slider (Manual Swipe) */
@media (max-width: 768px) {
    .product-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 10px 16px 30px 16px;
        /* Bottom padding for shadow */
        margin: 0 -16px;
        /* Full width bleed */
        -webkit-overflow-scrolling: touch;
    }

    .product-grid::-webkit-scrollbar {
        display: none;
    }

    .product-card {
        flex: 0 0 85%;
        /* 85% width for partial peek */
        scroll-snap-align: center;
        background: #fff;
        border: 1px solid #f0f0f0;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        margin-bottom: 0;
        padding: 16px;
    }

    .product-image img {
        height: 220px;
        /* Increased from 180px */
        object-fit: contain;
    }

    .product-details h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    /* --- Footer Redesign --- */
    .footer {
        background: #1B8941;
        color: #fff;
        padding: 3rem 0 0 0 !important;
        /* Remove bottom padding */
        margin-bottom: 0 !important;
        /* Remove bottom margin */
        position: relative;
        overflow: hidden;
    }

    .product-details .desc {
        font-size: 0.9rem;
        color: #777;
        margin-bottom: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        display: block;
        /* Ensure it cuts off */
    }

    .product-details .btn-full {
        background-color: #fff;
        color: var(--color-primary);
        border: 1px solid var(--color-primary);
        font-weight: 600;
    }
}

/* --- Animated Values Marquee Styles --- */
.values-marquee-container {
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    margin-bottom: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.values-marquee-content {
    display: flex;
    /* Fix vertical stacking */
    gap: 3rem;
}

.values-marquee-track {
    display: flex;
    /* Changed from inline-flex to flex */
    flex-wrap: nowrap;
    /* Prevent wrapping */
    animation: marqueeScroll 25s linear infinite;
    gap: 3rem;
    padding-left: 3rem;
    width: max-content;
    /* Ensure it takes full width of content */
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: var(--color-text);
    font-size: 0.95rem;
    color: #4A5568;
}

.marquee-item .icon {
    font-size: 1.2rem;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Ensure it looks good on mobile */
@media (max-width: 768px) {
    .values-marquee-container {
        padding: 12px 0;
        margin-top: 1rem;
        /* Standard spacing above benefits */
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 5;
        /* Ensure it stays above or below correctly, usually below slider content but above bg */
    }

    .marquee-item {
        font-size: 0.85rem;
    }
}

/* --- Professional Scroll Animations (Global) --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000),
        transform 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000);
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

/* --- REDESIGNED FOOTER --- */
.main-footer {
    position: relative;
    padding: 4rem 0 2rem;
    background-color: #1B5E20;
    /* Deep Premium Green */
    color: #FFFFFF;
    overflow: hidden;
    margin-top: 4rem;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 60%);
    pointer-events: none;
}

.footer-container {
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #FFD700;
    /* Gold Highlight */
    transform: translateX(5px);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.footer-contact .icon {
    font-size: 1.2rem;
}

.footer-contact a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s;
}

.footer-col {
    position: relative;
    z-index: 2;
}

.brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 1rem;
    border-radius: 10px;
    /* Invert colors: White bg -> Black, Dark Text -> White */
    filter: invert(1) grayscale(1) brightness(2);
    /* Screen blend mode: Black becomes transparent, White stays white */
    mix-blend-mode: screen;
    opacity: 0.9;
}

.footer-bottom-brand-image {
    text-align: center;
    margin-top: 2rem;
    opacity: 0.8;
}

.center-brand-img {
    max-width: 100px;
    filter: invert(1) grayscale(1) brightness(2);
    mix-blend-mode: screen;
    opacity: 0.5;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 0 5px 0 !important;
    /* Minimal vertical padding */
    margin-top: 0 !important;
    text-align: center;
    background: #1B5E20;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-business-identity p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* --- Redesigned "Why Choose" (Trust Badge Grid) --- */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 2rem;
}

.trust-card {
    background: #fff;
    border: 1px solid rgba(27, 137, 65, 0.2);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1B8941, #D4AF37);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(27, 137, 65, 0.15);
}

.trust-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: inline-block;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.trust-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #2C332B;
    margin-bottom: 0.25rem;
}

.trust-desc {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

/* --- "Advantage" Pulse & Glow --- */
.pulse-center {
    position: relative;
    z-index: 10;
}

.pulse-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(27, 137, 65, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulseGlow 4s infinite ease-in-out;
}

@keyframes pulseGlow {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }
}

.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    padding: 10px 15px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.07);
    margin-bottom: 1rem;
    position: relative;
}

/* --- Animation Classes (Restored for Specific Sections) --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #FFD700;
    color: #1B5E20;
    transform: translateY(-3px);
}

/* Mobile Footer */
@media (max-width: 768px) {
    .main-footer {
        padding: 3rem 0 1rem;
        /* Slightly less padding on mobile */
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        /* More breathing room between stacked columns */
        text-align: center;
    }

    .footer-heading {
        margin-bottom: 1rem;
        display: inline-block;
        /* Back to inline-block for underline to fit text */
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        /* Keep underline */
        padding-bottom: 0.5rem;
    }

    .brand-col {
        align-items: center;
        order: -1;
        /* Put Brand Col (Logo + Socials) at the very top for mobile IDENTITY. */
    }

    .footer-contact li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
        margin-top: 1.5rem;
    }

    .footer-logo {
        max-width: 180px;
        /* Slightly larger for touch */
        margin-bottom: 0.5rem;
    }

    .footer-bottom-brand-image {
        margin-top: 1.5rem;
    }

    /* Accordion behavior for footer columns */
    .footer-col .footer-heading::after {
        content: '+';
        position: absolute;
        right: 0;
        top: 0;
        font-weight: 400;
        font-size: 1.5rem;
        line-height: 1;
        color: #1b8941;
        transition: transform 0.3s;
    }

    .footer-col.active .footer-heading::after {
        content: '-';
        transform: rotate(180deg);
    }

    .footer-links,
    .footer-contact {
        display: none;
        /* Hidden by default */
        padding-left: 0.5rem;
        margin-top: 0.5rem;
    }

    .footer-col.active .footer-links,
    .footer-col.active .footer-contact {
        display: block;
        /* Show when active */
        animation: fadeIn 0.3s ease-out;
    }

    .footer-contact li {
        justify-content: flex-start;
        /* Left align contact info */
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 
========================================
   Welcome Popup Styles
========================================
.welcome-popup-overlay,
.welcome-popup-overlay.active {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.welcome-popup-content {
    background: #fff;
    width: 90%;
    max-width: 450px;
    padding: 2rem;
    border-radius: 16px;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.welcome-popup-overlay.active .welcome-popup-content {
    transform: translateY(0);
}

.welcome-popup-close {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: #888;
    background: none;
    border: none;
    z-index: 2;
}

.welcome-popup-close:hover {
    color: #333;
}

.welcome-popup-header {
    margin-bottom: 1rem;
}

.welcome-popup-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #1b8941;
    margin-bottom: 0.25rem;
}

.welcome-popup-subtitle {
    font-size: 1.1rem;
    color: #444;
    font-weight: 500;
}

.welcome-popup-offer {
    color: #e74c3c;
    font-weight: 700;
}

.welcome-popup-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 1.5rem 0;
}

.welcome-popup-img {
    width: 90px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.welcome-popup-img.large {
    width: 140px;
    /* Larger size for Potlika */
}

.welcome-popup-text {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.welcome-popup-btn {
    display: inline-block;
    background: #1b8941;
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s;
    width: 100%;
}

.welcome-popup-btn:hover {
    background: #156b32;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(27, 137, 65, 0.3);
}

/* Confetti Animation */
@keyframes pop-confetti {
    0% {
        transform: scale(0) translateX(-50%);
        opacity: 0;
    }

    50% {
        transform: scale(1.2) translateX(-50%);
        opacity: 1;
    }

    100% {
        transform: scale(1) translateX(-50%);
        opacity: 1;
    }
}

.welcome-popup-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #e74c3c;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
    animation: pop-confetti 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

/* --- Mobile Reels Slider --- */
.reels-section {
    padding: 0.5rem 0 !important;
    /* Reduced vertical padding */
    margin-top: 5px !important;
    /* Minimal space from hero */
    background-color: #FFFFFF !important;
    /* Force White (Not Transparent) */
    margin-bottom: 0 !important;
    position: relative;
    z-index: 5;
    /* Ensure it sits on top */
}

.reels-container {
    display: flex;
    overflow-x: auto;
    gap: 10px !important;
    /* Force gap */
    padding: 0 10px !important;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.reels-container::-webkit-scrollbar {
    display: none;
}

.reel-item {
    flex: 0 0 auto;
    width: 140px;
    height: 250px;
    border-radius: 0 !important;
    /* Force Square */
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    box-shadow: none !important;
    /* Remove shadow if it adds rounded feel */
    background: #000;
}

.reel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Wellness Path (Timeline) --- */
.benefits-section {
    padding: 3rem 0;
    position: relative;
    background: linear-gradient(to bottom, #ffffff, #f4f9f4);
    /* Fresh Base */
    overflow: hidden;
}

/* Subtle Texture Overlay */
.benefits-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* New User Uploaded Background */
    background-image: url('../images/advantage_bg_new.jpg');
    background-size: cover;
    /* Cover the whole whole area */
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.12;
    /* Reverted to subtle */
    pointer-events: none;
    z-index: 0;
}

/* --- Wellness Path (Timeline Design) --- */
.timeline-container {
    position: relative;
    padding: 20px 0;
    max-width: 600px;
    /* Constrain width for mobile reading */
    margin: 0 auto;
}

/* The Central Thread */
.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: linear-gradient(180deg,
            rgba(27, 137, 65, 0.1) 0%,
            #1B8941 20%,
            #D4AF37 50%,
            #1B8941 80%,
            rgba(27, 137, 65, 0.1) 100%);
    transform: translateX(-50%);
    border-radius: 4px;
    z-index: 0;
    height: 0;
    transition: height 3s ease-out;
    /* Slowed down from 1.5s to 3s */
}

.timeline-node {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    z-index: 1;
    width: 100%;
}

.timeline-node:last-child {
    margin-bottom: 0;
}

/* Icon on the Line */
.timeline-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 3px solid #1B8941;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* Content Bubble */
.timeline-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(27, 137, 65, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 42%;
    /* Fit beside the center line */
    position: relative;
}

/* Left vs Right Positioning */
.timeline-node.left {
    justify-content: flex-start;
}

.timeline-node.left .timeline-content {
    margin-right: auto;
    text-align: right;
}

.timeline-node.right {
    justify-content: flex-end;
}

.timeline-node.right .timeline-content {
    margin-left: auto;
    text-align: left;
}

.timeline-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1B8941;
    margin-bottom: 4px;
}

.timeline-content p {
    font-size: 0.8rem;
    color: #555;
    margin: 0;
    line-height: 1.3;
}

/* Active/Hover State for interactivity */
.timeline-node:hover .timeline-icon {
    transform: translateX(-50%) scale(1.1);
    border-color: #D4AF37;
    transition: all 0.3s ease;
}

/* Glass Effect Enhancement */
.glass-effect {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Mobile Tweak: If screen is VERY small, stack them */
@media (max-width: 360px) {
    .timeline-content {
        width: 38%;
        /* Smaller width for very narrow screens */
        padding: 10px;
    }

    .timeline-content h3 {
        font-size: 0.9rem;
    }
}

/* --- Scroll Animation Definitions --- */
.animate-slide-right {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.animate-slide-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.animate-slide-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-container.is-visible .timeline-line {
    height: 100%;
}

/* Text Animations inside Timeline Nodes */
.timeline-node h3,
.timeline-node p {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s ease-out;
}

/* Title animates quickly after card appears */
.timeline-node.is-visible h3 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

/* Paragraph animates slightly later */
.timeline-node.is-visible p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

/* --- Orbit/Spotlight Design (New Concept) --- */
.orbit-container {
    position: relative;
    height: 420px;
    /* Increased from 380px to fit giant logo */
    margin-top: 2rem;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(232, 245, 233, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
    /* Subtle Glow BG */
    border-radius: 24px;
}

/* Central Nucleus */
.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    /* Increased from 180px */
    height: 200px;
    /* Increased from 180px */
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(27, 137, 65, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border: 5px solid rgba(255, 255, 255, 0.95);
}

.orbit-logo {
    width: 190px;
    /* Maximized to fill circle */
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    transform: scale(1.3);
    /* Aggressive zoom to maximize text */
}

/* Pulse Rings */
.orbit-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(27, 137, 65, 0.3);
    animation: orbitPulse 3s linear infinite;
    z-index: -1;
}

.orbit-pulse-ring.delay-1 {
    animation-delay: 1s;
}

@keyframes orbitPulse {
    0% {
        width: 200px;
        height: 200px;
        opacity: 1;
    }

    /* Match new center size */
    100% {
        width: 400px;
        height: 400px;
        opacity: 0;
    }
}

/* Satellites */
.orbit-satellite {
    position: absolute;
    width: 130px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
}

/* --- Positioning (4 Corners) --- */
.sat-tl {
    /* Top Left */
    top: 10px;
    /* Moved closer to edge */
    left: 5px;
}

.sat-tr {
    /* Top Right */
    top: 10px;
    right: 5px;
}

.sat-bl {
    /* Bottom Left */
    bottom: 10px;
    left: 5px;
}

.sat-br {
    /* Bottom Right */
    bottom: 10px;
    right: 5px;
}

/* Connector Lines (Pseudo) pointing to center */
.orbit-satellite::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, rgba(27, 137, 65, 0.4), transparent);
    z-index: -1;
    display: none;
    /* Hidden for now, maybe too cluttered on mobile */
}

/* Icons */
.sat-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 8px;
    border: 2px solid #fff;
    animation: floatSat 4s ease-in-out infinite;
}

@keyframes floatSat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.sat-green {
    background: linear-gradient(135deg, #a5d6a7, #66bb6a);
    color: #1b5e20;
}

.sat-blue {
    background: linear-gradient(135deg, #90caf9, #42a5f5);
    color: #0d47a1;
}

.sat-gold {
    background: linear-gradient(135deg, #fff59d, #fbc02d);
    color: #ef6c00;
}

.sat-purple {
    background: linear-gradient(135deg, #e1bee7, #ab47bc);
    color: #4a148c;
}

.sat-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0;
    color: #333;
}

.sat-text p {
    font-size: 0.75rem;
    margin: 0;
    color: #777;
}

/* Mobile Tweak for very small screens */
@media (max-width: 360px) {
    .orbit-container {
        height: 380px;
    }

    .sat-tl,
    .sat-bl {
        left: 0;
    }

    .sat-tr,
    .sat-br {
        right: 0;
    }

    /* Aggressively increase mobile size too */
    .orbit-center {
        width: 130px;
        height: 130px;
    }

    .orbit-logo {
        width: 110px;
    }

    @keyframes orbitPulse {
        0% {
            width: 130px;
            height: 130px;
            opacity: 1;
        }

        100% {
            width: 300px;
            height: 300px;
            opacity: 0;
        }
    }
}

/* --- Premium Compact Product Grid (Mobile Redesign - STABLE) --- */
@media (max-width: 768px) {
    .product-grid-static {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        /* Balanced Gap */
        padding: 0 5px;
    }

    .product-card {
        background: #FCFBF5 !important;
        border-radius: 12px !important;
        border: 1px solid rgba(0, 0, 0, 0.03);
        padding-bottom: 12px !important;
        position: relative;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
        display: flex;
        flex-direction: column;
    }

    /* Image Container - Maximized to Fill Space */
    .product-image {
        padding: 5px !important;
        /* Minimal padding */
        background: transparent !important;
        height: 165px;
        display: flex;
        align-items: center;
        /* Center Vertically */
        justify-content: center;
        /* Center Horizontally */
        overflow: hidden;
        margin: 0 !important;
    }

    .product-image img {
        height: 100% !important;
        width: 100% !important;
        object-fit: contain;
        filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
        transition: transform 0.3s ease;
        /* Default scale */
        transform: scale(1.08);
        transform-origin: center center;
    }

    /* Targeted Zoom for Bottles (Ayurvein, Balm, Ayurvenza) */
    .product-image img.special-bottle {
        /* NUCLEAR OPTION: Force image specifically to be larger than container */
        width: 180% !important;
        max-width: none !important;
        height: 180% !important;
        max-height: none !important;

        /* Re-center the oversized image */
        margin-left: -40% !important;
        margin-top: -40% !important;

        transform: none !important;
        /* Disable scale to avoid conflicts */
        object-fit: contain;
    }

    /* Zoom for Potli */
    .product-image img.special-potli-img {
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        max-height: 100% !important;

        margin-left: 0 !important;
        margin-top: 0 !important;

        transform: none !important;
    }

    /* Reduced Size for Lep */
    .product-image img.special-lep {
        transform: scale(0.85) !important;
        margin-top: 5px;
    }

    /* Details Container */
    .product-details {
        padding: 0 10px 0 10px !important;
        position: relative;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    /* Compact Typography */
    .product-details h3 {
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
        margin-bottom: 6px !important;
        height: 2.6em;
        overflow: hidden;
    }

    .product-details h3 a {
        color: #2C332B !important;
    }

    /* Hide Clutter */
    .product-details .desc,
    .product-details .rating,
    .product-details .ingredient-icons,
    .product-details>div[style*="gap: 8px"] {
        display: none !important;
    }

    /* Price Styling */
    .price-row {
        margin-top: auto;
        margin-bottom: 10px !important;
        align-items: center;
        gap: 8px !important;
    }

    .current-price {
        font-size: 0.95rem !important;
        color: #1b8941 !important;
    }

    .original-price {
        font-size: 0.75rem !important;
    }

    /* Remove floating styles */
    .btn-floating-add {
        display: none;
    }

    /* NUCLEAR FOOTER FIX */
    .footer-business-identity p {
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1 !important;
    }

    .footer-giant-logo {
        display: block !important;
        margin-bottom: -25px !important;
        /* Pull copyright text closer/up */
        width: auto !important;
        max-width: 200px;
        /* Slightly smaller to reduce perceived height */
        margin-left: -10px !important;
        /* Align Left completely */
        margin-right: auto !important;
        margin-top: 0 !important;
        /* Remove ALL top spacing */
        padding: 0 !important;
    }

    /* Hide floating leaves and ensure bottom bar acts as slim cap */
    .floating-leaf {
        display: none !important;
    }

    /* Ensure wrapper doesn't add space */
    .footer-bottom-logo-container {
        margin-top: 0 !important;
        /* Remove container top margin */
        margin-bottom: 0 !important;
        padding: 0 !important;
        line-height: 0 !important;
    }

    /* Remove spacing from element above (Social Links) */
    .footer-social-links {
        margin-bottom: 0 !important;
    }

    /* --- Why Choose Section Background (Golden Mist) --- */
    /* --- Why Choose Section Background (Clean & Safe) --- */
    .why-choose-section {
        position: relative;
        background: #FFFCF2;
        /* Solid Cream Base */
        padding-bottom: 3rem;
        overflow: hidden;
        z-index: 1;
    }

    /* Texture Overlay */
    .why-choose-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../images/leaf-pattern.png');
        background-size: 300px;
        opacity: 0.05;
        pointer-events: none;
        z-index: -1;
        /* Behind content */
    }

    /* Container safety */
    .why-choose-section .container {
        position: relative;
        z-index: 10;
        /* Definitely above background */
    }

    .comparison-chart {
        background: #ffffff;
        border-radius: 12px;
        padding: 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        /* Stronger shadow to separate */
        margin-top: 1rem;
        position: relative;
        z-index: 11;
    }

    /* --- Roots of Wellness Footer Theme --- */
    /* --- Ayurvedic Light Footer Theme (Natural Harmony) --- */
    /* --- Organic Wave Footer Theme (The Appealing Look) --- */
    /* --- Compact Power Grid (2x2 High Vis) --- */
    .product-grid-compact {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        /* Tight gap */
        padding: 0 10px;
        /* Outer container padding */
        margin-bottom: 3rem;
    }

    .product-card-compact {
        background: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .compact-image {
        background: #fafafa;
        padding: 5px;
        /* Minimal padding for bleed effect */
        height: 180px;
        /* Fixed height for consistency */
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .compact-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .product-card-compact:hover .compact-image img {
        transform: scale(1.05);
    }

    .compact-details {
        padding: 10px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex-grow: 1;
    }

    .compact-title {
        font-size: 0.9rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 5px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 2.6em;
        /* Reserve space for 2 lines */
    }

    .compact-title a {
        color: inherit;
        text-decoration: none;
    }

    .compact-price-row {
        display: flex;
        align-items: baseline;
        gap: 6px;
        margin-bottom: 10px;
    }

    .compact-price {
        font-size: 1rem;
        font-weight: 700;
        color: #1b5e20;
    }

    .compact-original-price {
        font-size: 0.8rem;
        color: #999;
        text-decoration: line-through;
    }

    /* Hide description and ingredients in compact mode as per plan */
    .compact-hidden {
        display: none !important;
    }

    .compact-btn {
        width: 100%;
        padding: 8px 0;
        font-size: 0.85rem;
        border-radius: 6px;
        margin-top: auto;
        /* Push to bottom */
    }

    .lep-compact-fix {
        transform: scale(0.7);
        /* Reduce size to 70% */
        transform-origin: center;
    }

    .special-potli-img {
        transform: none;
        /* Reset scale */
        transform-origin: center;
    }

    /* Reduce gap above trust strip by removing reels section padding */
    /* --- NEW REELS SECTION DESIGN (Zero Gap & Full Touch) --- */
    .reels-section {
        background-color: #FFFFFF !important;
        /* Force White Background */
        padding: 0 !important;
        /* NO Padding at all */
        margin: 0 !important;
        /* NO Margin at all */
        margin-top: -8px !important;
        /* Pull UP to Touch Hero Slider */
        margin-bottom: 0 !important;
        position: relative;
        z-index: 20;
        /* Sit on top of everything */
        width: 100%;
    }

    .reels-container {
        display: flex;
        gap: 0;
        /* NO GAP between reels */
        overflow-x: auto;
        padding: 0 !important;
        margin: 0 !important;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }

    .reel-item {
        flex: 0 0 34%;
        /* 34% width = 102% total = Always overflows = NO whitespace gap */
        width: 34%;
        height: auto;
        aspect-ratio: 9 / 16;
        /* Standard Mobile Ratio */
        position: relative;
        scroll-snap-align: start;
        overflow: hidden;
        border-right: 2px solid #fff;
        /* Tiny white separator line */
    }

    .reel-item:last-child {
        border-right: none;
        /* No border for last item */
    }

    .reel-item video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        margin: 0;
        padding: 0;
    }

    .audio-hint {
        position: absolute;
        bottom: 10px;
        right: 10px;
        background: rgba(0, 0, 0, 0.6);
        color: #fff;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 0.7rem;
        pointer-events: none;
    }


    .footer-organic {
        background: linear-gradient(180deg, #f1f8e9 0%, #e8f5e9 100%);
        /* Soft Mint to White Sage */
        color: #1b5e20;
        /* Deep Forest Green */
        padding-top: 0.5rem;
        /* Minimized padding */
        padding-bottom: 2rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        position: relative;
        margin-top: 0 !important;
    }

    /* The Wave SVG Container */
    .footer-wave {
        position: absolute;
        top: -50px;
        /* Pull up to overlap section above */
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
        z-index: 10;
    }

    .footer-wave svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 50px;
    }

    .footer-wave .shape-fill {
        fill: #f1f8e9;
        /* Match footer top color */
    }

    /* Content Container */
    .organic-content {
        position: relative;
        z-index: 11;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* 1. Brand Header */
    .organic-brand {
        text-align: center;
        margin-bottom: 1rem;
        /* Compact Brand Block */
        margin-top: -25px;
        /* Pull into wave */
    }

    .organic-logo {
        width: 280px;
        margin-bottom: -40px;
        /* Massive overlap force */
        display: block;
        margin-left: auto;
        margin-right: auto;
        /* Clean Logo */
    }

    .organic-tagline {
        font-family: 'Playfair Display', serif;
        font-size: 1rem;
        font-style: italic;
        color: #33691e;
        margin-bottom: 1rem;
        margin-top: 0;
        line-height: 1;
        position: relative;
        top: -10px;
        /* Pull text physically up over the space */
        z-index: 2;
    }

    .organic-socials {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .organic-social-btn {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #ffffff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        /* Soft Shadow */
        display: flex;
        align-items: center;
        justify-content: center;
        color: #2e7d32;
        transition: all 0.3s ease;
    }

    .organic-social-btn:hover {
        background: #2e7d32;
        color: #fff;
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(46, 125, 50, 0.2);
    }

    /* 2. Grid Columns */
    .organic-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-bottom: 3.5rem;
    }

    .organic-col h4 {
        color: #1b5e20;
        font-family: 'Poppins', sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 1.2rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .organic-col h4::before {
        content: "🌿";
        /* Tiny leaf icon */
        font-size: 0.9rem;
    }

    .organic-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .organic-col li {
        margin-bottom: 1rem;
    }

    .organic-col a {
        color: #33691e;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .organic-col a:hover {
        color: #1b5e20;
        transform: translateX(5px);
        /* Slide effect */
    }

    /* 3. Floating Contact Card (The 'Wow' Element) */
    .organic-contact-card {
        background: #ffffff;
        border-radius: 20px;
        padding: 2rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        /* Deep soft shadow */
        text-align: center;
        margin-bottom: 3rem;
        border: 1px solid rgba(0, 0, 0, 0.02);
        position: relative;
        overflow: hidden;
    }

    .organic-contact-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 6px;
        height: 100%;
        background: #4caf50;
        /* Green Left Accent Strip */
    }

    .organic-contact-card h4 {
        color: #1b5e20;
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .or-contact-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .or-item {
        display: flex;
        align-items: center;
        gap: 12px;
        text-align: left;
        background: #f9fdfa;
        padding: 10px 15px;
        border-radius: 10px;
    }

    .or-icon {
        font-size: 1.2rem;
        background: #e8f5e9;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .or-text {
        font-size: 0.9rem;
        color: #333;
        font-weight: 500;
    }

    .or-text a {
        color: #1b5e20;
        text-decoration: none;
        font-weight: 600;
    }

    /* 4. Copyright */
    .organic-copy {
        text-align: center;
        font-size: 0.85rem;
        color: #558b2f;
        font-weight: 500;
        border-top: 1px dashed #c8e6c9;
        padding-top: 1.5rem;
    }

    /* --- Modern Clean White Footer Theme (Option A) --- */
    .footer-modern {
        background-color: #ffffff;
        color: #333333;
        padding: 3rem 1.5rem 1.5rem 1.5rem;
        position: relative;
        border-top: 4px solid #1a4d2e;
        /* Brand Green Top Border */
        font-family: 'Poppins', sans-serif;
        /* Clean Sans-Serif */
    }

    /* 1. Brand Header */
    .modern-brand {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .modern-logo {
        width: 150px;
        margin-bottom: 1rem;
        /* Use original color logo */
    }

    .modern-socials {
        display: flex;
        justify-content: center;
        gap: 12px;
    }

    .modern-social-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #f0fdf4;
        /* Very Light Green */
        border: 1px solid #dcfce7;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1a4d2e;
        /* Brand Green Icon */
        transition: all 0.3s ease;
    }

    .modern-social-btn:hover {
        background: #1a4d2e;
        color: #ffffff;
        transform: translateY(-3px);
    }

    /* 2. Grid Columns */
    .modern-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
        text-align: left;
        /* Clean Left Align for modern look (or center if mobile preference) */
    }

    @media (max-width: 480px) {
        .modern-grid {
            text-align: center;
            /* Center on small mobile */
        }
    }

    .modern-col h4 {
        color: #1a4d2e;
        font-size: 1rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 1.2rem;
    }

    .modern-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .modern-col li {
        margin-bottom: 0.8rem;
    }

    .modern-col a {
        color: #555555;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        transition: color 0.2s ease;
    }

    .modern-col a:hover {
        color: #1a4d2e;
        font-weight: 600;
    }

    /* 3. Contact Block (Clean Card) */
    .modern-contact {
        background: #f8f9fa;
        /* Very Light Grey Card */
        border-radius: 12px;
        padding: 1.5rem;
        margin-bottom: 2.5rem;
        text-align: center;
        border: 1px solid #e9ecef;
    }

    .modern-contact h4 {
        color: #1a4d2e;
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 1rem;
        display: inline-block;
        border-bottom: 2px solid #d4af37;
        /* Gold Accent */
    }

    .modern-contact-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .m-contact-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 0.9rem;
        color: #444;
    }

    .m-contact-item a {
        color: #333;
        text-decoration: none;
        font-weight: 600;
    }

    .m-icon {
        color: #1a4d2e;
        /* Green Icons */
        font-size: 1.1rem;
    }

    /* 4. Copyright */
    .modern-copy {
        border-top: 1px solid #eeeeee;
        padding-top: 1.5rem;
        text-align: center;
        font-size: 0.8rem;
        color: #777;
    }

    /* --- Royal Brand Green Footer Theme --- */
    .footer-royal {
        background: linear-gradient(135deg, #1b8941 0%, #051c0f 100%);
        /* Deep Emerald Gradient */
        color: #ffffff;
        padding: 3rem 1.5rem 1.5rem 1.5rem;
        position: relative;
        text-align: center;
        /* Center Aligned Strategy */
        border-top: 4px solid #d4af37;
        /* Gold Top Border */
    }

    /* Background Texture */
    .footer-royal::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../images/leaf-pattern.png');
        background-size: 350px;
        opacity: 0.05;
        pointer-events: none;
    }

    /* 1. Brand Header */
    .royal-brand {
        margin-bottom: 2.5rem;
    }

    .royal-logo {
        width: 140px;
        margin-bottom: 1rem;
        filter: brightness(0) invert(1);
        /* Pure White Logo */
        opacity: 0.95;
    }

    .royal-socials {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .royal-social-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        transition: all 0.3s ease;
    }

    .royal-social-btn:hover {
        background: #d4af37;
        border-color: #d4af37;
        color: #051c0f;
        transform: translateY(-3px);
    }

    /* 2. Content Stack */
    .royal-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
        text-align: center;
    }

    .royal-col h4 {
        color: #ffeaa7;
        /* Soft Gold */
        font-family: 'Playfair Display', serif;
        font-size: 1rem;
        margin-bottom: 1.2rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .royal-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .royal-col li {
        margin-bottom: 0.8rem;
    }

    .royal-col a {
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

    .royal-col a:hover {
        color: #ffeaa7;
    }

    /* 3. Highlighted Contact Block */
    .royal-contact {
        background: rgba(255, 255, 255, 0.05);
        /* Glass Effect */
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 2rem 1.5rem;
        margin-bottom: 2.5rem;
        position: relative;
        overflow: hidden;
    }

    .royal-contact h4 {
        color: #fff;
        font-family: 'Playfair Display', serif;
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        display: inline-block;
        border-bottom: 2px solid #d4af37;
        padding-bottom: 5px;
    }

    .royal-contact-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .r-contact-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.9);
    }

    .r-contact-item a {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
    }

    .r-icon {
        color: #ffeaa7;
        font-size: 1.1rem;
    }

    /* 4. Copyright */
    .royal-copy {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1.5rem;
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.5);
        letter-spacing: 0.5px;
    }

    /* --- Professional Structured Footer Theme --- */
    .footer-pro {
        background-color: #1a1a1a;
        color: #e0e0e0;
        padding: 3rem 1.5rem 1.5rem 1.5rem;
        font-family: 'Poppins', sans-serif;
        /* Clean Sans Serif */
        margin-top: 0 !important;
    }

    /* 1. Brand Section (Top) */
    .footer-pro-brand {
        text-align: center;
        margin-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 1.5rem;
    }

    .footer-pro-logo {
        width: 130px;
        margin-bottom: 1rem;
        filter: brightness(0) invert(1);
        opacity: 0.9;
    }

    .pro-socials {
        display: flex;
        justify-content: center;
        gap: 12px;
    }

    .pro-social-link {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        transition: background 0.3s ease;
    }

    .pro-social-link:hover {
        background: #1b8941;
        /* Brand Green Highlight */
    }

    /* 2. Content Grid (Middle) */
    .footer-pro-grid {
        display: grid;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    /* Contact Block */
    .pro-contact h4,
    .pro-links h4 {
        color: #fff;
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        position: relative;
        display: inline-block;
    }

    .pro-contact h4::after,
    .pro-links h4::after {
        content: "";
        display: block;
        width: 30px;
        height: 2px;
        background: #1b8941;
        margin-top: 5px;
    }

    .contact-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .contact-item {
        display: flex;
        gap: 10px;
        margin-bottom: 1rem;
        align-items: flex-start;
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .contact-icon {
        color: #1b8941;
        /* Green Icons */
        margin-top: 2px;
        min-width: 18px;
    }

    /* Links Grid (2 Columns) */
    .links-2-col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .links-2-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .links-2-col li {
        margin-bottom: 0.7rem;
    }

    .links-2-col a {
        color: #bbb;
        text-decoration: none;
        font-size: 0.85rem;
        transition: color 0.3s ease;
    }

    .links-2-col a:hover {
        color: #fff;
        text-decoration: underline;
    }

    /* 3. Bottom Bar */
    .footer-pro-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1.5rem;
        text-align: center;
        font-size: 0.75rem;
        color: #666;
    }

    .footer-pro-bottom p {
        margin: 0 0 5px 0;
    }

    /* Animate Checkmark Pop */
    /* --- Comparison Chart Grid Layout --- */
    .comparison-chart-container {
        display: flex;
        flex-direction: column;
    }

    .comp-header,
    .comp-row {
        display: grid;
        grid-template-columns: 1.2fr 1fr 1fr;
        /* Feature | Hamdaya | Others */
        align-items: center;
        border-bottom: 1px solid #eee;
    }

    .comp-header {
        background: #fafafa;
        font-weight: 700;
        color: #333;
        position: sticky;
        top: 0;
    }

    .comp-header-title {
        padding: 12px 08px;
        font-size: 0.85rem;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .comp-header-title.gold {
        color: #d4af37;
        background: linear-gradient(to bottom, #fffdf5, #fff);
        border-bottom: 2px solid #d4af37;
    }

    .comp-row {
        background: #fff;
        transition: background 0.3s;
    }

    .comp-row:last-child {
        border-bottom: none;
    }

    .comp-feature {
        padding: 12px 10px;
        font-size: 0.9rem;
        color: #555;
        font-weight: 500;
        border-right: 1px solid #f5f5f5;
    }

    .comp-val {
        padding: 12px 5px;
        text-align: center;
        font-size: 0.85rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .comp-val.hamdaya {
        background-color: rgba(212, 175, 55, 0.03);
        /* Subtle Gold Tint */
        color: #1b8941;
        font-weight: 600;
        border-right: 1px solid #f0f0f0;
    }

    .comp-val.other {
        color: #999;
    }

    .check-icon {
        font-size: 1.2rem;
        color: #1b8941;
        opacity: 0;
        /* Hidden initially for animation */
        transform: scale(0.5);
    }

    .cross-icon {
        font-size: 1rem;
        color: #ccc;
    }

    /* Animations */
    .comp-row.is-visible .check-icon {
        animation: popCheck 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    }

    @keyframes popCheck {
        0% {
            opacity: 0;
            transform: scale(0.5);
        }

        100% {
            opacity: 1;
            transform: scale(1);
        }
    }

    .footer-roots::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../images/leaf-pattern.png');
        background-size: 300px;
        opacity: 0.03;
        /* Barely visible texture */
        pointer-events: none;
    }

    /* --- Professional SVG Avatar Style --- */
    .testimonial-slider-container.pro-look {
        position: relative;
        overflow: hidden;
        padding: 5px 0 30px 0;
    }

    .testimonial-slide.pro-card {
        display: none;
        /* Slider Logic */
        flex-direction: column;
        width: 100%;
        background: #fff;
        border-radius: 12px;
        padding: 24px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        /* Clean professional shadow */
        border: 1px solid #f0f0f0;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .testimonial-slide.pro-card.active {
        display: flex;
        opacity: 1;
        animation: fadeIn 0.5s ease-out;
    }

    .pro-card-header {
        display: flex;
        align-items: center;
        margin-bottom: 16px;
    }

    .avatar-circle {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 16px;
        overflow: hidden;
        flex-shrink: 0;
    }

    .avatar-circle.male {
        background: #E8F5E9;
        /* Light Green Tint */
    }

    .avatar-circle.female {
        background: #FFF3E0;
        /* Light Orange Tint */
    }

    .avatar-svg {
        width: 32px;
        height: 32px;
    }

    .pro-user-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .pro-name {
        font-family: 'Product Sans', 'Roboto', sans-serif;
        font-size: 1.05rem;
        font-weight: 700;
        color: #202124;
        margin-bottom: 4px;
    }

    .pro-meta-row {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .pro-stars {
        color: #FBC02D;
        /* Professional Gold */
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .pro-verified {
        font-size: 0.75rem;
        color: #1B8941;
        background: rgba(27, 137, 65, 0.1);
        padding: 2px 6px;
        border-radius: 4px;
        font-weight: 500;
        display: inline-block;
    }

    .pro-review-text {
        font-family: 'Roboto', sans-serif;
        font-size: 1rem;
        color: #4A4A4A;
        line-height: 1.6;
        margin: 0;
    }

    /* 1. Trust Strip (Top Bar) */
    .trust-strip {
        background: #08381c;
        /* Slightly Lighter Green */
        padding: 12px 1rem;
        display: flex;
        justify-content: space-around;
        align-items: center;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        /* Subtle Gold Line */
    }

    .trust-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 4px;
    }

    .trust-icon {
        font-size: 1.2rem;
        color: #d4af37;
        /* Antique Gold */
    }

    .trust-text {
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #ccc;
    }

    /* 2. Main Footer Content */
    .footer-main-content {
        padding: 2rem 1.5rem 1rem 1.5rem;
        position: relative;
        z-index: 1;
    }

    /* Navigation Grid */
    .footer-nav-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .nav-col h4 {
        font-family: 'Playfair Display', serif;
        /* If available, else serif */
        color: #d4af37;
        /* Gold Header */
        font-size: 1.1rem;
        margin-bottom: 1rem;
        letter-spacing: 0.5px;
    }

    .nav-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .nav-col ul li {
        margin-bottom: 0.8rem;
    }

    .nav-col ul li a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease, padding-left 0.3s ease;
    }

    .nav-col ul li a:hover {
        color: #d4af37;
        padding-left: 5px;
        /* Slide effect */
    }

    /* 3. Brand & Social (Bottom) */
    .footer-brand-section {
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 2rem;
    }

    .footer-logo-roots {
        width: 140px;
        /* Refined size */
        margin-bottom: 1rem;
        filter: brightness(0) invert(1);
        /* Make logo white/gold if png allows, else normal */
        opacity: 0.9;
    }

    .social-roots {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 1.5rem;
    }

    .social-btn {
        width: 40px;
        height: 40px;
        border: 1px solid rgba(212, 175, 55, 0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #d4af37;
        transition: all 0.3s ease;
    }

    .social-btn:hover {
        background: #d4af37;
        color: #052b14;
        transform: translateY(-3px);
    }

    .copyright-roots {
        font-size: 0.7rem;
        color: rgba(255, 255, 255, 0.4);
        letter-spacing: 0.5px;
    }

    /* Animate Checkmark Pop */
    .comp-row.is-visible .check-icon {
        animation: popCheck 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    }

    @keyframes popCheck {
        0% {
            transform: scale(0) rotate(-45deg);
            opacity: 0;
        }

        100% {
            transform: scale(1) rotate(0);
            opacity: 1;
        }
    }

    /* --- Comparison Chart (Gold Standard) --- */
    .comparison-chart {
        background: #fff;
        border-radius: 12px;
        padding: 1rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        margin-top: 1rem;
    }

    .comp-header {
        display: grid;
        grid-template-columns: 1fr 1.2fr 1fr;
        /* Hamdaya slightly wider */
        gap: 10px;
        margin-bottom: 1rem;
        text-align: center;
        align-items: end;
    }

    .comp-header-title {
        font-weight: 700;
        font-size: 0.8rem;
        color: #555;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .comp-header-title.gold {
        color: #B8860B;
        /* Dark Gold */
        font-size: 1rem;
        border-bottom: 2px solid #B8860B;
        padding-bottom: 5px;
    }

    .comp-row {
        display: grid;
        grid-template-columns: 1fr 1.2fr 1fr;
        gap: 10px;
        padding: 0.8rem 0;
        border-bottom: 1px solid #f0f0f0;
        align-items: center;
        text-align: center;
    }

    .comp-row:last-child {
        border-bottom: none;
    }

    .comp-feature {
        font-weight: 600;
        font-size: 0.85rem;
        color: #333;
        text-align: left;
        padding-left: 5px;
    }

    .comp-val {
        font-size: 0.75rem;
        color: #666;
        line-height: 1.3;
    }

    .comp-val.hamdaya {
        background: rgba(27, 137, 65, 0.08);
        /* Light Green/Gold Tint */
        color: #1b8941;
        font-weight: 700;
        border-radius: 6px;
        padding: 8px 4px;
        border: 1px solid rgba(27, 137, 65, 0.2);
        position: relative;
    }

    /* Add checkmark icon before Hamdaya values */
    .comp-val.hamdaya::before {
        content: "✓";
        display: block;
        font-size: 1.2rem;
        margin-bottom: 2px;
    }

    .comp-val.other {
        color: #999;
        font-size: 0.7rem;
    }

    .comp-val.other.bad {
        color: #e74c3c;
    }

    .comp-val.other::before {
        content: "✕";
        display: block;
        font-size: 1rem;
        color: #ccc;
        margin-bottom: 2px;
    }

    /* Animation Keyframes */
    @keyframes slideUpRow {
        0% {
            opacity: 0;
            transform: translateY(15px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes popTick {
        0% {
            opacity: 0;
            transform: scale(0);
        }

        50% {
            transform: scale(1.4);
        }

        100% {
            opacity: 1;
            transform: scale(1);
        }
    }

    @keyframes sweepGold {
        0% {
            background-position: -200% 0;
        }

        100% {
            background-position: 200% 0;
        }
    }

    /* Trigger animations when parent chart is visible */
    .comparison-chart.is-visible .comp-row {
        animation: slideUpRow 0.5s ease-out forwards;
        opacity: 0;
        /* Init hidden */
        transform: translateY(15px);
    }

    .comparison-chart.is-visible .comp-row:nth-child(2) {
        animation-delay: 0.1s;
    }

    .comparison-chart.is-visible .comp-row:nth-child(3) {
        animation-delay: 0.2s;
    }

    .comparison-chart.is-visible .comp-row:nth-child(4) {
        animation-delay: 0.3s;
    }

    .comparison-chart.is-visible .comp-row:nth-child(5) {
        animation-delay: 0.4s;
    }

    /* Tick Mark Pop */
    .comparison-chart.is-visible .comp-val.hamdaya::before {
        animation: popTick 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
        opacity: 0;
        transform: scale(0);
    }

    .comparison-chart.is-visible .comp-row:nth-child(2) .comp-val.hamdaya::before {
        animation-delay: 0.3s;
    }

    .comparison-chart.is-visible .comp-row:nth-child(3) .comp-val.hamdaya::before {
        animation-delay: 0.4s;
    }

    .comparison-chart.is-visible .comp-row:nth-child(4) .comp-val.hamdaya::before {
        animation-delay: 0.5s;
    }

    .comparison-chart.is-visible .comp-row:nth-child(5) .comp-val.hamdaya::before {
        animation-delay: 0.6s;
    }

    /* Gold Shimmer Effect on Hamdaya Header */
    /* Gold Shimmer Effect on Hamdaya Header */
    .comp-header-title.gold {
        background: linear-gradient(90deg, #B8860B 0%, #FFD700 50%, #B8860B 100%);
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: sweepGold 3s linear infinite;
        display: inline-block;
    }
}

/* Mobile Tweak for very small screens */
@media (max-width: 360px) {

    .comp-header,
    .comp-row {
        grid-template-columns: 0.8fr 1.2fr 0.8fr;
    }

    .comp-label {
        font-size: 0.8rem;
        padding-left: 5px;
    }

    .brand-val {
        font-size: 0.8rem;
        padding: 8px 2px;
    }
}