/* Why Poshak Laddu - Carousel */
.why-poshak-section { position: relative; }
.why-carousel-container { max-width: 1100px; margin: 0 auto; position: relative; }
.carousel-wrapper { position: relative; min-height: 320px; }
.carousel-slide { position: absolute; inset: 0; opacity: 0; transform: scale(.985); transition: opacity .35s ease, transform .35s ease; display: grid; place-items: center; padding: 0 12px; }
.carousel-slide.active { opacity: 1; transform: scale(1); z-index: 1; }

/* Morph-in for incoming slide */
.carousel-slide.morph-in { opacity: 1; z-index: 2; clip-path: polygon(52% 48%, 60% 44%, 68% 48%, 62% 58%, 50% 64%, 40% 58%, 36% 50%, 42% 42%, 50% 36%, 58% 42%, 64% 50%, 56% 56%); animation: why-blob-reveal 700ms ease-in-out forwards; }
@keyframes why-blob-reveal { 0% { clip-path: polygon(52% 48%, 60% 44%, 68% 48%, 62% 58%, 50% 64%, 40% 58%, 36% 50%, 42% 42%, 50% 36%, 58% 42%, 64% 50%, 56% 56%);} 55% { clip-path: polygon(0% 10%, 70% 0%, 100% 20%, 100% 70%, 80% 100%, 25% 100%, 0% 85%, 0% 65%, 5% 35%, 20% 15%, 40% 5%, 10% 25%);} 100% { clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 100% 100%, 100% 100%, 0% 100%, 0% 100%, 0% 100%, 0% 0%, 0% 0%, 0% 0%, 0% 0%);} }

/* Curved decorative card design */
.feature-card-morph {
    background: linear-gradient(135deg, #E8A87C 0%, #CD5C5C 45%, #D2B48C 100%);
    border-radius: 40px;
    padding: 50px 40px;
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    color: white;
}

/* Decorative pattern overlay */
.feature-card-morph::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20px 20px, rgba(255,255,255,0.2) 2px, transparent 2px),
        radial-gradient(circle at 60px 20px, rgba(255,255,255,0.15) 1px, transparent 1px),
        radial-gradient(circle at 40px 60px, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 80px 80px, 60px 60px, 40px 40px;
    opacity: 0.4;
    pointer-events: none;
}

/* Cross pattern overlay */
.feature-card-morph::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 46%, rgba(255,255,255,0.2) 49%, rgba(255,255,255,0.2) 51%, transparent 54%),
        linear-gradient(-45deg, transparent 46%, rgba(255,255,255,0.2) 49%, rgba(255,255,255,0.2) 51%, transparent 54%);
    background-size: 60px 60px;
    opacity: 0.3;
    pointer-events: none;
}

.feature-card-morph .card-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 40px;
    align-items: center;
}

.feature-card-morph .text-content h3 {
    font-size: 2.8rem;
    font-weight: 300;
    color: #FFF8DC;
    margin-bottom: 15px;
    line-height: 1.2;
}

.feature-card-morph .text-content .subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
    font-weight: 400;
}

.feature-card-morph .shop-btn {
    background: rgba(255,255,255,0.95);
    color: #8B6F47;
    border: none;
    padding: 12px 32px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.feature-card-morph .shop-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    color: #8B6F47;
}

.feature-card-morph .product-showcase {
    position: relative;
}

.feature-card-morph .product-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    padding: 15px;
    backdrop-filter: blur(10px);
    display: grid;
    place-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.feature-card-morph .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.feature-card-morph .icon-replacement {
    font-size: 4rem;
    color: rgba(255,255,255,0.8);
}

/* Indicators */
.carousel-indicators { display: flex; gap: 12px; justify-content: center; margin-top: 25px; }
.carousel-indicators .indicator { width: 12px; height: 12px; border-radius: 50%; background: rgba(139,111,71,0.3); cursor: pointer; transition: all .3s ease; }
.carousel-indicators .indicator.active { background: var(--primary-color); transform: scale(1.3); box-shadow: 0 0 10px rgba(139,111,71,0.5); }

/* Responsive adjustments */
@media (max-width: 992px) {
    .feature-card-morph .card-content {
        gap: 30px;
    }
    
    .feature-card-morph .text-content h3 {
        font-size: 2.5rem;
    }
    
    .feature-card-morph {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .feature-card-morph .card-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .feature-card-morph .text-content h3 {
        font-size: 1.9rem;
        line-height: 1.3;
    }
    
    .feature-card-morph .text-content .subtitle {
        font-size: 1rem;
    }
    
    .feature-card-morph {
        padding: 30px 20px;
    }
    
    .carousel-wrapper {
        min-height: 320px;
    }
    
    .feature-card-morph .product-showcase {
        display: flex;
        justify-content: center;
    }
    
    .feature-card-morph .product-image {
        width: 150px;
        height: 150px;
    }
    
    .feature-card-morph .icon-replacement {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .feature-card-morph .text-content h3 {
        font-size: 1.6rem;
    }
    
    .feature-card-morph .text-content .subtitle {
        font-size: 0.95rem;
    }
    
    .feature-card-morph {
        padding: 25px 15px;
    }
    
    /* Further slow down animations on small mobile screens for smoother experience */
    *, *::before, *::after {
        animation-duration: 0.8s !important;
        transition-duration: 0.6s !important;
    }
    
    /* Specifically target scroll animations for slower small mobile experience */
    .scroll-animate,
    .scroll-animate-left,
    .scroll-animate-right,
    .scroll-animate-scale {
        transition: all 1.4s ease !important;
    }
    
    /* Disable hover effects on mobile to prevent jarring movements */
    .btn:hover,
    .product-card:hover,
    .feature-card-morph .shop-btn:hover,
    .navbar-logo:hover {
        transform: none !important;
        transition: none !important;
    }
    
    /* Override JavaScript-based transforms on mobile for smoother experience */
    .product-card {
        transition: none !important;
    }
    
    /* Prevent JavaScript inline transforms on mobile */
    .product-card[style*="translateY"] {
        transform: none !important;
    }
}
    
    .carousel-wrapper {
        min-height: 350px;
    }
    
    .feature-card-morph .shop-btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
    
    .feature-card-morph .product-image {
        width: 130px;
        height: 130px;
    }
    
    .feature-card-morph .icon-replacement {
        font-size: 2.5rem;
    }
}

/* ========================================
   Poshak Laddu - Custom Styles
   ======================================== */

/* Root Variables */
:root {
    --primary-color: #8B6F47;
    --secondary-color: #D4A574;
    --success-color: #5C8A3D;
    --danger-color: #C84B31;
    --dark-color: #2C1810;
    --light-bg: #F3E7D9;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: var(--light-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Mobile Touch Optimizations */
@media (max-width: 768px) {
    /* Improve tap targets for mobile */
    a, button, .btn, .nav-link {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Slow down animations on mobile for smoother experience */
    *, *::before, *::after {
        animation-duration: 0.6s !important;
        transition-duration: 0.5s !important;
    }
    
    /* Specifically target scroll animations for slower mobile experience */
    .scroll-animate,
    .scroll-animate-left,
    .scroll-animate-right,
    .scroll-animate-scale {
        transition: all 1.2s ease !important;
    }
    
    /* Disable hover effects on mobile to prevent jarring movements */
    .btn:hover,
    .product-card:hover,
    .feature-card-morph .shop-btn:hover,
    .navbar-logo:hover {
        transform: none !important;
        transition: none !important;
    }
    
    /* Override JavaScript-based transforms on mobile for smoother experience */
    .product-card {
        transition: none !important;
    }
    
    /* Prevent JavaScript inline transforms on mobile */
    .product-card[style*="translateY"] {
        transform: none !important;
    }
    
    /* Prevent text size adjustment on mobile */
    html {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    /* Additional mobile performance improvements */
    .product-card-3d,
    .testimonial-card,
    .feature-card {
        will-change: auto;
    }
    
    /* Better image rendering on mobile */
    img {
        max-width: 100%;
        height: auto;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

/* Override Bootstrap Primary Color */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #6d563a;
    border-color: #6d563a;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Glassmorphism Navbar */
.glassmorphism-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.glassmorphism-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 6px 40px rgba(0, 0, 0, 0.15);
}

.navbar-logo {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    padding: 20px 0 40px 0;
    /* Use provided hero image with a soft overlay for readability */
    background-image: linear-gradient(rgba(243, 231, 217, 0.55), rgba(243, 231, 217, 0.55)), url('../images/hero_section.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--light-bg);
    position: relative;
    /* Allow all hero content (buttons, images) to be fully visible on smaller viewports */
    overflow: visible;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 165, 116, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 111, 71, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.min-vh-75 {
    min-height: auto;
}

.hero-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: heroContentSlide 1s ease 0.2s forwards;
}

.hero-title {
    color: var(--dark-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: nowrap; /* keep buttons side by side */
    opacity: 0;
    transform: translateY(20px);
    animation: heroButtonsSlide 1s ease 0.8s forwards;
}

/* Hero Image Styling */
.hero-image-container {
    position: relative;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Prevent hero from growing too tall compared to the viewport height */
    max-height: calc(100vh - 180px);
}

.hero-image-wrapper {
    position: relative;
    opacity: 0;
    transform: translateX(50px) scale(0.8);
    animation: heroImageSlide 1.2s ease 0.5s forwards;
}

.hero-image {
    width: 100%;
    max-width: 480px;
    /* Keep the full image visible inside the banner */
    max-height: 420px;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(139, 111, 71, 0.2),
        0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    animation: heroFloat 6s ease-in-out infinite;
}

.hero-image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, 
        var(--primary-color), 
        var(--secondary-color), 
        var(--primary-color)
    );
    border-radius: 30px;
    opacity: 0.1;
    z-index: -1;
    animation: decorationPulse 4s ease-in-out infinite;
}

/* Hero Animations */
@keyframes heroContentSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroButtonsSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroImageSlide {
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Disable hero image animation on mobile screens */
@media (max-width: 768px) {
    .hero-image-wrapper {
        animation: none !important;
        opacity: 1 !important;
        transform: translateX(0) scale(1) !important;
    }
    
    /* Also disable continuous floating animations on mobile */
    .hero-image {
        animation: none !important;
        transform: none !important;
    }
    
    .hero-image-decoration {
        animation: none !important;
        opacity: 0 !important; /* Hide decoration entirely to prevent any movement */
    }
}

@media (max-width: 576px) {
    .hero-image-wrapper {
        animation: none !important;
        opacity: 1 !important;
        transform: translateX(0) scale(1) !important;
    }
    
    /* Also disable continuous floating animations on mobile */
    .hero-image {
        animation: none !important;
        transform: none !important;
    }
    
    .hero-image-decoration {
        animation: none !important;
        opacity: 0 !important; /* Hide decoration entirely to prevent any movement */
    }
}

@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes decorationPulse {
    0%, 100% {
        opacity: 0.1;
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        transform: scale(1.05);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: var(--light-bg);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-body {
    padding: 1.5rem;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.testimonial-card-large {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Testimonial Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-card-large {
        padding: 2rem;
    }
    
    .testimonial-card p {
        font-size: 0.95rem;
    }
    
    .testimonial-avatar {
        margin-bottom: 10px;
    }
    
    .stars {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 1.2rem;
    }
    
    .testimonial-card-large {
        padding: 1.5rem;
    }
    
    .testimonial-card p {
        font-size: 0.9rem;
    }
    
    .testimonial-card h6 {
        font-size: 0.95rem;
    }
    
    .testimonial-card small {
        font-size: 0.8rem;
    }
}

/* Platform Cards (Buy Page) */
.platform-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.platform-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact Cards */
.contact-card {
    background: white;
    border-radius: 15px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Social Cards */
.social-card {
    background: white;
    border-radius: 15px;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Benefit & Ingredient Cards */
.benefit-card,
.ingredient-card {
    background: white;
    border-radius: 15px;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.benefit-card:hover,
.ingredient-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Filter Buttons */
.filter-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: var(--transition);
}

.filter-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Product Grid */
.product-item {
    transition: var(--transition);
}

.product-item.hidden {
    display: none;
}

/* Page Header */
.page-header {
    padding: 60px 0;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE4D6 100%);
}

/* Page Header Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 30px 0;
    }
    
    .page-header h1 {
        font-size: 1.7rem;
    }
    
    .page-header p {
        font-size: 0.95rem;
    }
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 111, 71, 0.25);
}

/* Form Responsive */
@media (max-width: 768px) {
    .form-control,
    .form-select {
        font-size: 16px;
        padding: 12px 15px;
    }
    
    textarea.form-control {
        min-height: 120px;
    }
    
    .form-label {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .form-control,
    .form-select {
        font-size: 16px;
        padding: 10px 12px;
    }
}

/* Accordion Styles */
.accordion-button:not(.collapsed) {
    background-color: var(--light-bg);
    color: var(--dark-color);
}

.accordion-button:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 111, 71, 0.25);
}

/* Footer Styles */
footer {
    margin-top: auto;
    position: relative;
    z-index: 10;
}

footer.bg-dark {
    background-color: #1a1a1a !important;
}

footer .text-muted {
    color: #adb5bd !important;
}

footer .text-light {
    color: #f8f9fa !important;
}

footer a {
    transition: var(--transition);
    color: #adb5bd !important;
}

footer a:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

.social-links a {
    display: inline-block;
    transition: var(--transition);
    color: #f8f9fa !important;
}

.social-links a:hover {
    transform: translateY(-5px);
    color: var(--secondary-color) !important;
}

/* Footer Responsive */
@media (max-width: 768px) {
    footer {
        text-align: center;
    }
    
    footer .row {
        text-align: center;
    }
    
    footer .col-lg-4,
    footer .col-lg-2,
    footer .col-lg-3,
    footer .col-md-6 {
        margin-bottom: 30px;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
    
    footer h5,
    footer h6 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    footer ul li {
        margin-bottom: 8px;
    }
    
    .contact-info li {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    footer {
        padding: 30px 15px !important;
    }
    
    footer h5,
    footer h6 {
        font-size: 1rem;
    }
    
    .social-links a {
        font-size: 1.5rem;
        margin: 0 10px;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
    }
    
    .newsletter-form .form-control {
        border-radius: 8px;
        margin-bottom: 10px;
    }
    
    .newsletter-form .btn {
        width: 100%;
        border-radius: 8px;
    }
}

/* Badges */
.badge {
    padding: 0.5rem 1rem;
    font-weight: 500;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

/* Loading Animation */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-section {
        padding: 30px 0 50px 0;
    }
    
    .display-3 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 25px 0 35px 0;
    }
    
    .display-3 {
        font-size: 2.8rem;
    }
    
    .display-4 {
        font-size: 2.2rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .hero-image {
        max-width: 400px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .product-image {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 18px 0 26px 0;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 30px;
    }
    
    /* Keep hero buttons side-by-side and let them wrap instead of stacking vertically */
    .hero-buttons {
        justify-content: center;
    }
    
    .display-3 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .display-4 {
        font-size: 1.8rem;
    }
    
    .display-5 {
        font-size: 1.6rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .hero-image {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .hero-image-container {
        padding: 20px 10px;
    }
    
    /* Remove animation from hero image on mobile for smoother experience */
    .hero-image-wrapper {
        animation: none !important;
        opacity: 1 !important;
        transform: translateX(0) scale(1) !important;
    }
    
    .product-image {
        height: 200px;
    }
    
    .platform-card {
        padding: 2rem;
        margin-bottom: 20px;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 15px;
    }
    
    .navbar-nav {
        padding: 15px 0;
    }
    
    .nav-link {
        padding: 10px 15px;
        text-align: center;
    }
    
    section {
        padding: 40px 0 !important;
    }
    
    .py-5 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    .row.g-4 {
        row-gap: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .navbar-logo {
        height: 50px;
    }
    
    .hero-section {
        padding: 12px 0 22px 0;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .btn-lg {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .display-3 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .display-4 {
        font-size: 1.6rem;
    }
    
    .display-5 {
        font-size: 1.4rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .hero-image {
        max-width: 260px;
    }
    
    .hero-image-container {
        padding: 15px 5px;
        max-height: none; /* Let mobile stack naturally; no clipping */
    }
    
    /* Remove animation from hero image on mobile for smoother experience */
    .hero-image-wrapper {
        animation: none !important;
        opacity: 1 !important;
        transform: translateX(0) scale(1) !important;
    }
    
    .platform-card {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.2rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    h4 {
        font-size: 1.2rem;
    }
    
    h5 {
        font-size: 1.1rem;
    }
    
    section {
        padding: 30px 0 !important;
    }
    
    .py-5 {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    
    .mb-5 {
        margin-bottom: 2rem !important;
    }
    
    .mt-5 {
        margin-top: 2rem !important;
    }
    
    .text-center.mb-5 {
        margin-bottom: 2rem !important;
    }
}

@media (max-width: 400px) {
    .navbar-logo {
        height: 45px;
    }
    
    .display-3 {
        font-size: 1.6rem;
    }
    
    .display-5 {
        font-size: 1.3rem;
    }
    
    .hero-image {
        max-width: 230px;
    }
    
    .btn-lg {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Utility Classes */
.rounded-4 {
    border-radius: 15px !important;
}

.shadow-lg {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.text-justify {
    text-align: justify;
}

/* Newsletter Form */
.newsletter-form .input-group {
    border-radius: 8px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    background: rgba(255,255,255,0.9);
}

.newsletter-form .btn {
    border: none;
}

/* Scroll to Top Button (optional) */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 110px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #6d563a;
    transform: translateY(-5px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6d563a;
}

/* Mobile Scrollbar */
@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 6px;
    }
}

/* ========================================
   WhatsApp Floating Button
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: floatPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(1.1);
}

@keyframes floatPulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    }
}

/* Responsive adjustments for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon {
        width: 42px;
        height: 42px;
    }
    
    .scroll-to-top {
        right: 95px;
        bottom: 25px;
    }
}

@media (max-width: 576px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-icon {
        width: 38px;
        height: 38px;
    }
    
    .scroll-to-top {
        right: 85px;
        bottom: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 400px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 12px;
        right: 12px;
    }
    
    .whatsapp-icon {
        width: 35px;
        height: 35px;
    }
}

/* ========================================
   Scroll-Triggered Animations
   ======================================== */

.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.scroll-animate-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.scroll-animate-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease;
}

.scroll-animate-scale.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animation for multiple elements */
.scroll-animate.delay-1 { transition-delay: 0.1s; }
.scroll-animate.delay-2 { transition-delay: 0.2s; }
.scroll-animate.delay-3 { transition-delay: 0.3s; }
.scroll-animate.delay-4 { transition-delay: 0.4s; }
.scroll-animate.delay-5 { transition-delay: 0.5s; }
.scroll-animate.delay-6 { transition-delay: 0.6s; }

/* ========================================
   3D Product Cards with Hover Effects
   ======================================== */

/* 3D Product Card */
.product-card-3d {
    background: linear-gradient(145deg, #ffffff, #f8f4f0);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 10px 30px rgba(139, 111, 71, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.product-card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        145deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(248, 244, 240, 0.8) 50%,
        rgba(243, 231, 217, 0.6) 100%
    );
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

/* Removed hover effects as requested */

/* 3D Product Image Container */
.product-image-3d {
    position: relative;
    height: 320px;
    background: linear-gradient(135deg, #f8f4f0 0%, #ede3d6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(139, 111, 71, 0.1);
}

.product-image-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(139, 111, 71, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Product Image with Animation */
.product-img {
    width: 260px;
    height: 260px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 25px rgba(139, 111, 71, 0.2));
    /* Initial state for animation */
    opacity: 0;
    transform: translateY(50px);
    animation: slideInFromBottom 0.8s ease-out forwards;
}

/* Slide in from bottom animation */
@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating particles and hover effects removed */

/* Enhanced Product Body */
.product-card-3d .product-body {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95));
}

.product-card-3d .product-body h5 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.3rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.product-card-3d .product-body p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Enhanced Button */
.product-card-3d .btn {
    background: linear-gradient(145deg, var(--primary-color), #6d563a);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 25px;
    box-shadow: 
        0 8px 15px rgba(139, 111, 71, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Staggered animation delays for product cards */
.product-card-3d:nth-child(1) .product-img {
    animation-delay: 0.1s;
}

.product-card-3d:nth-child(2) .product-img {
    animation-delay: 0.3s;
}

.product-card-3d:nth-child(3) .product-img {
    animation-delay: 0.5s;
}

.product-card-3d:nth-child(4) .product-img {
    animation-delay: 0.7s;
}

/* Responsive Design for 3D Cards */
@media (max-width: 992px) {
    .product-image-3d {
        height: 280px;
    }
    
    .product-img {
        width: 220px;
        height: 220px;
    }
    
    .product-card-3d .product-body h5 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .product-image-3d {
        height: 250px;
    }
    
    .product-img {
        width: 200px;
        height: 200px;
    }
    
    .product-card-3d .product-body {
        padding: 18px 15px;
    }
    
    .product-card-3d .product-body h5 {
        font-size: 1.15rem;
    }
    
    .product-card-3d .product-body p {
        font-size: 0.9rem;
    }
    
    .product-card-3d {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .product-image-3d {
        height: 220px;
    }
    
    .product-img {
        width: 170px;
        height: 170px;
    }
    
    .product-card-3d .product-body {
        padding: 15px 12px;
    }
    
    .product-card-3d .product-body h5 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .product-card-3d .product-body p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .product-card-3d .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .product-image-3d {
        height: 200px;
    }
    
    .product-img {
        width: 150px;
        height: 150px;
    }
}

/* ========================================
   Unique Our Story Section Design
   ======================================== */

.our-story-section {
    background: linear-gradient(135deg, #FFF8F0 0%, #F8F0E8 50%, #F0E8D8 100%);
    position: relative;
    overflow: hidden;
}

.our-story-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 111, 71, 0.05) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Story Image Container with Floating Frame */
.story-image-container {
    position: relative;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-frame {
    position: relative;
    transform-style: preserve-3d;
    animation: floatFrame 6s ease-in-out infinite;
}

@keyframes floatFrame {
    0%, 100% {
        transform: translateY(0px) rotateY(0deg) rotateX(0deg);
    }
    33% {
        transform: translateY(-10px) rotateY(5deg) rotateX(2deg);
    }
    66% {
        transform: translateY(-5px) rotateY(-3deg) rotateX(-1deg);
    }
}

.inner-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(139, 111, 71, 0.3),
        0 8px 25px rgba(0, 0, 0, 0.1),
        inset 0 0 0 8px rgba(255, 255, 255, 0.8),
        inset 0 0 0 12px rgba(139, 111, 71, 0.2);
    background: linear-gradient(45deg, #f8f4f0, #ede3d6);
    padding: 8px;
}

.story-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 22px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

/* Animated Pattern Overlay */
.image-overlay-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%),
        radial-gradient(circle at 30% 70%, rgba(139, 111, 71, 0.1) 0%, transparent 50%);
    background-size: 200px 200px, 300px 300px;
    animation: patternMove 8s linear infinite;
    border-radius: 22px;
    pointer-events: none;
    z-index: 3;
}

@keyframes patternMove {
    0% {
        background-position: 0% 0%, 0% 0%;
    }
    100% {
        background-position: 100% 100%, 50% 50%;
    }
}

/* Floating Decorative Elements */
.floating-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.7;
    animation: floatElement 4s ease-in-out infinite;
    z-index: 1;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 70%;
    right: 15%;
    animation-delay: 1.5s;
}

.element-3 {
    top: 40%;
    left: 5%;
    animation-delay: 3s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    50% {
        transform: translateY(-20px) rotate(10deg) scale(1.1);
    }
}

/* Decorative Circles */
.decorative-circle {
    position: absolute;
    border: 3px solid rgba(139, 111, 71, 0.2);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.circle-1 {
    width: 100px;
    height: 100px;
    top: 15%;
    right: 20%;
    animation-delay: 0s;
}

.circle-2 {
    width: 60px;
    height: 60px;
    bottom: 25%;
    left: 15%;
    animation-delay: 1.5s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

/* Decorative Dots */
.decorative-dots {
    position: absolute;
    bottom: 20%;
    right: 10%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.decorative-dots span {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.decorative-dots span:nth-child(1) { animation-delay: 0s; }
.decorative-dots span:nth-child(2) { animation-delay: 0.2s; }
.decorative-dots span:nth-child(3) { animation-delay: 0.4s; }
.decorative-dots span:nth-child(4) { animation-delay: 0.6s; }
.decorative-dots span:nth-child(5) { animation-delay: 0.8s; }
.decorative-dots span:nth-child(6) { animation-delay: 1s; }

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

/* Story Content Styling */
.story-content {
    position: relative;
    z-index: 2;
    padding: 20px 0;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3);
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3);
    }
    50% {
        box-shadow: 0 6px 25px rgba(139, 111, 71, 0.5);
    }
}

.story-title {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.story-quote {
    position: relative;
    padding: 20px 0;
    margin: 20px 0;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -30px;
    font-size: 3rem;
    color: var(--secondary-color);
    opacity: 0.3;
}

.story-quote p {
    font-style: italic;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    position: relative;
}

/* Animated Stats */
.story-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    min-width: 120px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    animation: countUp 2s ease-out;
}

.stat-label {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 0.9rem;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced CTA Button */
.story-cta {
    background: linear-gradient(135deg, var(--primary-color), #6d563a);
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(139, 111, 71, 0.3);
    text-transform: none;
}

.story-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
}

.story-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 111, 71, 0.4);
    background: linear-gradient(135deg, #a0824a, var(--primary-color));
}

.story-cta:hover::before {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 992px) {
    .story-image-container {
        padding: 30px;
        margin-bottom: 40px;
    }
    
    .story-image {
        height: 350px;
    }
    
    .floating-element {
        font-size: 1.5rem;
    }
    
    .story-stats {
        gap: 20px;
        justify-content: center;
    }
    
    .decorative-circle {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .our-story-section {
        text-align: center;
    }
    
    .story-image-container {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .story-image {
        height: 300px;
    }
    
    .quote-icon {
        position: relative;
        left: 0;
        top: 0;
        display: block;
        margin-bottom: 10px;
        font-size: 2.5rem;
    }
    
    .story-quote p {
        border-left: none;
        padding-left: 0;
        border-top: 4px solid var(--primary-color);
        padding-top: 15px;
        font-size: 1rem;
    }
    
    .story-stats {
        justify-content: center;
        gap: 15px;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-badge {
        font-size: 0.85rem;
        padding: 6px 16px;
    }
    
    .story-cta {
        padding: 12px 28px;
        font-size: 1rem;
    }
    
    .decorative-circle {
        width: 60px;
        height: 60px;
    }
    
    .decorative-dots {
        gap: 6px;
    }
    
    .decorative-dots span {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 576px) {
    .story-image-container {
        padding: 15px;
    }
    
    .story-image {
        height: 250px;
    }
    
    .story-quote p {
        font-size: 0.95rem;
        padding-top: 12px;
    }
    
    .story-stats {
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .stat-item {
        min-width: 90px;
        padding: 12px;
    }
    
    .stat-number {
        font-size: 1.7rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .story-cta {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
    
    .floating-element {
        font-size: 1.2rem;
        display: none;
    }
}

/* ========================================
   Sweet Product Cards - Laddu Theme
   ======================================== */

.product-card-sweet {
    position: relative;
    background: linear-gradient(145deg, #ffffff 0%, #FFF8F0 100%);
    border-radius: 20px;
    overflow: visible;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 
        0 5px 20px rgba(139, 111, 71, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(212, 165, 116, 0.15);
}

.product-card-sweet:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(139, 111, 71, 0.25),
        0 5px 15px rgba(212, 165, 116, 0.2);
    border-color: rgba(212, 165, 116, 0.3);
}

/* Sweet Sparkles Animation */
.sweet-sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #FFD700, #FFA500);
    border-radius: 50%;
    opacity: 0;
    animation: sparkle 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    pointer-events: none;
}

.sweet-sparkle:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.sweet-sparkle:nth-child(2) {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.sweet-sparkle:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.5) rotate(180deg);
    }
}

.product-card-sweet:hover .sweet-sparkle {
    animation-duration: 1.5s;
}

/* Product Image Container */
.product-image-container {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE4D6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.product-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 248, 220, 0.6) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 228, 196, 0.4) 0%, transparent 50%);
    pointer-events: none;
}

/* Sweet Circle Background */
.sweet-circle {
    position: absolute;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, 
        rgba(255, 215, 0, 0.15) 0%, 
        rgba(255, 165, 0, 0.1) 40%, 
        transparent 70%);
    border-radius: 50%;
    transition: all 0.6s ease;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.product-card-sweet:hover .sweet-circle {
    transform: scale(1.5);
    opacity: 1;
}

/* Product Image */
.product-img-sweet {
    width: 180px;
    height: 180px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 8px 16px rgba(139, 111, 71, 0.2));
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.product-card-sweet:hover .product-img-sweet {
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 12px 25px rgba(139, 111, 71, 0.3));
}

/* Sweet Badges */
.badge-sweet {
    position: absolute;
    top: 16px;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.badge-sweet.badge-jaggery {
    left: 16px;
    background: linear-gradient(135deg, #5C8A3D, #7AB359);
    color: white;
}

.badge-sweet.badge-dates {
    left: 16px;
    background: linear-gradient(135deg, #17a2b8, #3dc2d4);
    color: white;
}

.badge-sweet.badge-seeds {
    right: 16px;
    background: linear-gradient(135deg, #8B6F47, #A8865F);
    color: white;
}

.badge-sweet.badge-millets {
    right: 16px;
    background: linear-gradient(135deg, #FFC107, #FFD54F);
    color: #2C1810;
}

.product-card-sweet:hover .badge-sweet {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Product Info */
.product-info {
    padding: 18px 16px;
    background: white;
    border-radius: 0 0 20px 20px;
    position: relative;
}

.product-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 10px 0 8px 0;
    transition: all 0.3s ease;
    text-align: center;
}

.product-card-sweet:hover .product-name {
    color: var(--primary-color);
}

.product-desc {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 16px;
    text-align: center;
    min-height: 60px;
}

/* Sweet Button */
.btn-sweet {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FFD93D 50%, #FF6B6B 100%);
    background-size: 200% 100%;
    color: white;
    padding: 11px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 6px 20px rgba(255, 107, 107, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-sweet::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.btn-sweet:hover::before {
    transform: scale(1);
}

.btn-sweet:hover {
    background-position: 100% 0;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 10px 30px rgba(255, 107, 107, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    color: white;
}

.btn-sweet i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-sweet:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* Scroll Animation */
.product-card-sweet.scroll-animate {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
}

.product-card-sweet.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Stagger delays */
.product-card-sweet.delay-1 { transition-delay: 0.1s; }
.product-card-sweet.delay-2 { transition-delay: 0.2s; }
.product-card-sweet.delay-3 { transition-delay: 0.3s; }
.product-card-sweet.delay-4 { transition-delay: 0.4s; }
.product-card-sweet.delay-5 { transition-delay: 0.5s; }
.product-card-sweet.delay-6 { transition-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 992px) {
    .product-image-container {
        height: 210px;
    }
    
    .product-img-sweet {
        width: 170px;
        height: 170px;
    }
}

@media (max-width: 768px) {
    .product-image-container {
        height: 200px;
    }
    
    .product-img-sweet {
        width: 160px;
        height: 160px;
    }
    
    .product-info {
        padding: 16px 14px;
    }
    
    .product-name {
        font-size: 1.1rem;
    }
    
    .product-desc {
        min-height: auto;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .product-card-sweet:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    .product-image-container {
        height: 180px;
    }
    
    .product-img-sweet {
        width: 140px;
        height: 140px;
    }
}

/* ========================================
   Quick View Modal Styles
   ======================================== */

.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.quick-view-modal.show {
    opacity: 1;
    visibility: visible;
}

.quick-view-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 80px rgba(0,0,0,0.3);
}

.quick-view-modal.show .quick-view-content {
    transform: scale(1);
}

.quick-view-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.quick-view-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.quick-view-image {
    height: 400px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.quick-view-info {
    padding: 20px 0;
}

.quick-view-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.quick-view-actions .btn {
    flex: 1;
    min-width: 150px;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .quick-view-content {
        padding: 30px 20px;
        margin: 20px;
        width: calc(100% - 40px);
    }
    
    .quick-view-image {
        height: 250px;
        font-size: 4rem;
    }
    
    .quick-view-actions {
        flex-direction: column;
    }
    
    .quick-view-actions .btn {
        width: 100%;
    }
}

/* Additional animations for enhanced user experience */
@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.quick-view-modal.show .quick-view-content {
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   Shop Now On Section - Delivery Design
   ======================================== */

/* Amazon Button */
.btn-amazon {
    background: linear-gradient(135deg, #FF9900 0%, #FFB84D 100%);
    border: none;
    color: #131921;
    padding: 14px 40px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.3);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-amazon:hover {
    background: linear-gradient(135deg, #E68A00 0%, #FF9900 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 153, 0, 0.4);
    color: #131921;
}

/* Flipkart Button */
.btn-flipkart {
    background: linear-gradient(135deg, #2874F0 0%, #4A8FF5 100%);
    border: none;
    color: white;
    padding: 14px 50px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: lowercase;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(40, 116, 240, 0.3);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-flipkart:hover {
    background: linear-gradient(135deg, #1E5FD6 0%, #2874F0 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(40, 116, 240, 0.4);
    color: white;
}

/* Delivery Person Image Container */
.delivery-image-container {
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.delivery-person-frame {
    position: relative;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #FFE5E0 0%, #FFF0EE 100%);
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.15);
    z-index: 1;
}

.delivery-person-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Arrow Animation */
.delivery-arrow {
    animation: arrowFloat 3s ease-in-out infinite;
}

@keyframes arrowFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design for Delivery Section */
@media (max-width: 992px) {
    .delivery-person-frame {
        width: 380px;
        height: 380px;
    }
}

@media (max-width: 768px) {
    .shop-content {
        text-align: center;
    }
    
    .shop-content .d-flex {
        justify-content: center;
    }
    
    .delivery-person-frame {
        width: 320px;
        height: 320px;
    }
    
    .delivery-arrow {
        width: 150px;
        height: 90px;
        top: -30px;
    }
}

@media (max-width: 576px) {
    .delivery-person-frame {
        width: 280px;
        height: 280px;
    }
    
    .btn-amazon, .btn-flipkart {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

/* ========================================
   Benefits Section - Modern Cards
   ======================================== */

.benefits-section {
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE4D6 100%);
}

.benefit-card-modern {
    background: white;
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(139, 111, 71, 0.1);
    border: 2px solid transparent;
}

.benefit-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.2);
    border-color: var(--secondary-color);
}

.benefit-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.benefit-card-modern:hover .benefit-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

/* ========================================
   Coming Soon Section
   ======================================== */

.coming-soon-section {
    background: white;
}

.coming-soon-image-wrapper {
    position: relative;
}

.coming-soon-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
    animation: pulse 2s ease-in-out infinite;
    z-index: 2;
}

.coming-soon-badge i {
    margin-right: 8px;
}

.badge-modern {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.benefits-list {
    padding-left: 0;
}

.benefit-item {
    display: flex;
    align-items: start;
    gap: 15px;
    padding: 15px;
    background: rgba(139, 111, 71, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(139, 111, 71, 0.1);
    transform: translateX(5px);
}

.benefit-icon {
    color: #5C8A3D;
    font-size: 1.5rem;
    min-width: 30px;
}

.benefit-item strong {
    color: #2C1810;
    display: block;
    margin-bottom: 3px;
}

.waitlist-form {
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.05), rgba(212, 165, 116, 0.05));
    padding: 25px;
    border-radius: 15px;
    border: 2px dashed var(--secondary-color);
}

/* ========================================
   Bulk Orders Section
   ======================================== */

.bulk-orders-section {
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE4D6 100%);
}

.bulk-orders-card {
    background: linear-gradient(135deg, var(--primary-color), #6d563a);
    color: white;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(139, 111, 71, 0.3);
    position: relative;
    overflow: hidden;
}

.bulk-orders-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.bulk-icon {
    color: var(--secondary-color);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.btn-bulk-contact {
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-bulk-contact:hover {
    background: var(--light-bg);
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* ========================================
   FAQ Section
   ======================================== */

.faq-section {
    background: white;
}

.faq-section .accordion-item {
    border: 2px solid rgba(139, 111, 71, 0.1);
    border-radius: 15px !important;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-section .accordion-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 5px 20px rgba(139, 111, 71, 0.15);
}

.faq-section .accordion-button {
    background: white;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 25px;
    border: none;
}

.faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.1), rgba(212, 165, 116, 0.1));
    color: var(--primary-color);
    box-shadow: none;
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238B6F47'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-body {
    padding: 20px 25px;
    background: white;
    color: #6c757d;
    line-height: 1.8;
}

/* Responsive Design for All Sections */
@media (max-width: 992px) {
    .bulk-orders-card {
        padding: 45px 35px;
    }
    
    .bulk-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .bulk-orders-card {
        padding: 35px 25px;
        text-align: center;
    }
    
    .bulk-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .benefit-item {
        padding: 12px;
    }
    
    .benefit-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .benefit-icon-wrapper i {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .bulk-orders-card {
        padding: 30px 20px;
    }
    
    .bulk-orders-card h2 {
        font-size: 1.6rem;
    }
    
    .bulk-icon {
        font-size: 1.8rem;
    }
    
    .benefit-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon-wrapper i {
        font-size: 1.8rem;
    }
}

/* ========================================
   About Page - Sweet Theme Styles
   ======================================== */

/* Story Section */
.story-section-about {
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE4D6 100%);
    position: relative;
    overflow: hidden;
}

.about-story-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-story-img {
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.about-story-image-wrapper:hover .about-story-img {
    transform: scale(1.03);
}

.story-decorative-circle {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.15));
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
    z-index: -1;
}

.story-decorative-dots {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    gap: 10px;
}

.story-decorative-dots span {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.story-decorative-dots span:nth-child(2) { animation-delay: 0.2s; }
.story-decorative-dots span:nth-child(3) { animation-delay: 0.4s; }

.story-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-text-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.1);
    border-left: 4px solid var(--primary-color);
    position: relative;
    transition: all 0.3s ease;
}

.story-text-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(139, 111, 71, 0.15);
}

.quote-icon-small {
    position: absolute;
    top: 15px;
    left: -15px;
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.3;
}

/* Values Section */
.values-section-sweet {
    background: linear-gradient(135deg, #fff 0%, #FFF8F0 100%);
}

.section-badge-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3);
}

.value-card-sweet {
    background: linear-gradient(145deg, #ffffff, #FFF8F0);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.15);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.value-card-sweet:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 50px rgba(139, 111, 71, 0.25);
}

.value-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.love-icon {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.natural-icon {
    background: linear-gradient(135deg, #5C8A3D, #7AB359);
    box-shadow: 0 10px 30px rgba(92, 138, 61, 0.4);
}

.quality-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.4);
}

.value-card-sweet:hover .value-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.value-sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #FFD700, #FFA500);
    border-radius: 50%;
    opacity: 0;
    animation: sparkleFloat 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.sparkle-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.sparkle-2 {
    bottom: 25%;
    right: 20%;
    animation-delay: 1.5s;
}

@keyframes sparkleFloat {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.5) rotate(180deg);
    }
}

/* Ingredients Section */
.ingredients-section-sweet {
    background: white;
    position: relative;
}

.ingredients-image-wrapper {
    position: relative;
    padding: 20px;
}

.ingredients-img {
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.ingredients-image-wrapper:hover .ingredients-img {
    transform: scale(1.03);
}

.ingredients-badge {
    position: absolute;
    top: 40px;
    right: 40px;
    background: linear-gradient(135deg, #5C8A3D, #7AB359);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(92, 138, 61, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: badgeFloat 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.ingredients-decoration {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(92, 138, 61, 0.1), rgba(122, 179, 89, 0.05));
    border-radius: 50%;
    z-index: -1;
}

.ingredient-feature-card {
    background: linear-gradient(145deg, #ffffff, #FFF8F0);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(139, 111, 71, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.ingredient-feature-card:hover {
    border-color: var(--secondary-color);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.2);
}

.feature-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.sugar-free {
    background: linear-gradient(135deg, #17a2b8, #3dc2d4);
    box-shadow: 0 5px 15px rgba(23, 162, 184, 0.3);
}

.preservative-free {
    background: linear-gradient(135deg, #5C8A3D, #7AB359);
    box-shadow: 0 5px 15px rgba(92, 138, 61, 0.3);
}

.ayurveda {
    background: linear-gradient(135deg, #FFC107, #FFD54F);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.ingredient-feature-card:hover .feature-icon-circle {
    transform: scale(1.2) rotate(10deg);
}

/* Promise Section */
.promise-section-sweet {
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE4D6 100%);
    position: relative;
    overflow: hidden;
}

.promise-card-wrapper {
    background: linear-gradient(135deg, var(--primary-color), #6d563a);
    border-radius: 30px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(139, 111, 71, 0.3);
}

.promise-decoration-1,
.promise-decoration-2 {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.promise-decoration-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.promise-decoration-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

.promise-icon-float {
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}

.promise-icon-float i {
    font-size: 3rem;
    color: var(--secondary-color);
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.text-white-soft {
    color: rgba(255, 255, 255, 0.95);
}

.btn-promise-explore {
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 15px;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-promise-explore::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.3), transparent);
    transition: left 0.7s ease;
}

.btn-promise-explore:hover {
    background: var(--light-bg);
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.btn-promise-explore:hover::before {
    left: 100%;
}

/* Responsive Design for About Page */
@media (max-width: 992px) {
    .story-decorative-circle {
        width: 100px;
        height: 100px;
    }
    
    .value-card-sweet {
        padding: 30px 20px;
    }
    
    .promise-card-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .about-story-image-wrapper,
    .ingredients-image-wrapper {
        margin-bottom: 30px;
    }
    
    .story-text-card {
        padding: 15px;
    }
    
    .value-card-sweet {
        margin-bottom: 20px;
    }
    
    .ingredient-feature-card {
        padding: 15px;
    }
    
    .promise-card-wrapper {
        padding: 30px 20px;
        text-align: center;
    }
    
    .promise-icon-float i {
        font-size: 2rem;
    }
    
    .ingredients-badge {
        top: 30px;
        right: 30px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* ========================================
   Mothers Page - Sweet Theme Styles
   ======================================== */

/* Nurturing Section */
.nurturing-section {
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE4D6 100%);
    position: relative;
    overflow: hidden;
}

.nurturing-image-wrapper {
    position: relative;
    padding: 30px;
}

.nurturing-img {
    border-radius: 25px;
    transition: transform 0.4s ease;
    box-shadow: 0 15px 40px rgba(139, 111, 71, 0.2);
}

.nurturing-image-wrapper:hover .nurturing-img {
    transform: scale(1.05) rotate(-2deg);
}

.nurturing-decoration-1 {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.2), transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
    z-index: -1;
}

.nurturing-decoration-2 {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15), transparent 70%);
    border-radius: 50%;
    animation: pulse 5s ease-in-out infinite;
    animation-delay: 1s;
    z-index: -1;
}

.nurturing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    animation: badgeGlow 3s ease-in-out infinite;
}

.nurturing-text-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(139, 111, 71, 0.12);
    border-left: 5px solid #FF6B6B;
    transition: all 0.3s ease;
}

.nurturing-text-card:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 40px rgba(139, 111, 71, 0.18);
}

.nurturing-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item-inline {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(145deg, #ffffff, #FFF8F0);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.1);
    transition: all 0.3s ease;
}

.benefit-item-inline:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(139, 111, 71, 0.15);
}

.benefit-item-inline i {
    color: #5C8A3D;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-item-inline span {
    font-weight: 600;
    color: var(--dark-color);
}

/* Traditional Ingredients Section */
.traditional-ingredients-section {
    background: white;
    position: relative;
}

.mother-ingredient-card {
    background: linear-gradient(145deg, #ffffff, #FFF8F0);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(139, 111, 71, 0.15);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.mother-ingredient-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 50px rgba(139, 111, 71, 0.25);
}

.ingredient-visual-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.ingredient-icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.sonth-icon {
    background: linear-gradient(135deg, #FFC107, #FFD54F);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
}

.seeds-icon {
    background: linear-gradient(135deg, #5C8A3D, #7AB359);
    box-shadow: 0 10px 30px rgba(92, 138, 61, 0.4);
}

.mother-ingredient-card:hover .ingredient-icon-circle {
    transform: scale(1.15) rotate(10deg);
}

.ingredient-sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.ingredient-sparkles span {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, #FFD700, #FFA500);
    border-radius: 50%;
    opacity: 0;
    animation: sparkleFloat 3s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.ingredient-sparkles span:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.ingredient-sparkles span:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.ingredient-sparkles span:nth-child(3) {
    bottom: 25%;
    left: 20%;
    animation-delay: 2s;
}

.ingredient-content {
    text-align: center;
}

.ingredient-content h4 {
    color: var(--dark-color);
}

/* Mother CTA Section */
.mother-cta-section {
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE4D6 100%);
    position: relative;
    overflow: hidden;
}

.mother-cta-wrapper {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    border-radius: 30px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(255, 107, 107, 0.35);
}

.cta-background-decoration-1,
.cta-background-decoration-2 {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
}

.cta-background-decoration-1 {
    width: 350px;
    height: 350px;
    top: -180px;
    right: -120px;
    animation: float 7s ease-in-out infinite;
}

.cta-background-decoration-2 {
    width: 250px;
    height: 250px;
    bottom: -120px;
    left: -80px;
    animation: float 9s ease-in-out infinite reverse;
}

.cta-icon-float {
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}

.cta-icon-float i {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cta-feature-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(10px);
}

.cta-feature-item i {
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.cta-feature-item span {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.cta-image-wrapper {
    position: relative;
    padding: 20px;
}

.cta-product-img {
    max-width: 300px;
    animation: floatProduct 4s ease-in-out infinite;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.2));
}

@keyframes floatProduct {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(3deg);
    }
}

.cta-decoration-1,
.cta-decoration-2 {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
}

.cta-decoration-1 {
    width: 150px;
    height: 150px;
    top: -30px;
    right: -30px;
    animation: pulse 3s ease-in-out infinite;
}

.cta-decoration-2 {
    width: 100px;
    height: 100px;
    bottom: -20px;
    left: -20px;
    animation: pulse 4s ease-in-out infinite;
    animation-delay: 1s;
}

.btn-cta-explore {
    background: white;
    color: #FF6B6B;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-cta-explore::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.2), transparent);
    transition: left 0.7s ease;
}

.btn-cta-explore:hover {
    background: var(--light-bg);
    color: #FF4444;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta-explore:hover::before {
    left: 100%;
}

/* Responsive Design for Mothers Page */
@media (max-width: 992px) {
    .nurturing-decoration-1,
    .nurturing-decoration-2 {
        width: 120px;
        height: 120px;
    }
    
    .mother-ingredient-card {
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .mother-cta-wrapper {
        padding: 50px 40px;
    }
    
    .cta-product-img {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .nurturing-image-wrapper {
        margin-bottom: 40px;
    }
    
    .nurturing-text-card {
        padding: 20px;
    }
    
    .benefit-item-inline {
        padding: 12px 15px;
    }
    
    .mother-ingredient-card {
        padding: 25px;
        text-align: center;
    }
    
    .ingredient-icon-circle {
        width: 100px;
        height: 100px;
    }
    
    .ingredient-icon-circle i {
        font-size: 2.5rem;
    }
    
    .mother-cta-wrapper {
        padding: 40px 25px;
        text-align: center;
    }
    
    .cta-icon-float i {
        font-size: 2.5rem;
    }
    
    .cta-product-img {
        max-width: 200px;
        margin-bottom: 20px;
    }
    
    .cta-features {
        margin-top: 20px;
    }
}

/* ========================================
   Contact Page - Sweet Theme Styles
   ======================================== */

/* Contact Options Section */
.contact-options-sweet {
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE4D6 100%);
    position: relative;
    overflow: hidden;
}

.contact-sweet-card {
    background: linear-gradient(145deg, #ffffff, #FFF8F0);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(139, 111, 71, 0.15);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.contact-sweet-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 50px rgba(139, 111, 71, 0.25);
}

.contact-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.whatsapp-card .contact-icon-wrapper {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.email-card .contact-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.4);
}

.phone-card .contact-icon-wrapper {
    background: linear-gradient(135deg, #17a2b8, #3dc2d4);
    box-shadow: 0 10px 30px rgba(23, 162, 184, 0.4);
}

.contact-sweet-card:hover .contact-icon-wrapper {
    transform: scale(1.2) rotate(10deg);
}

.contact-sparkle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, #FFD700, #FFA500);
    border-radius: 50%;
    opacity: 0;
    animation: sparkleFloat 3s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.contact-sparkle.sparkle-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.contact-sparkle.sparkle-2 {
    bottom: 25%;
    right: 20%;
    animation-delay: 1.5s;
}

.btn-contact-sweet {
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    color: white;
}

.email-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 6px 20px rgba(139, 111, 71, 0.3);
}

.email-btn:hover {
    background: linear-gradient(135deg, #a0824a, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 111, 71, 0.5);
    color: white;
}

.phone-btn {
    background: linear-gradient(135deg, #17a2b8, #3dc2d4);
    box-shadow: 0 6px 20px rgba(23, 162, 184, 0.3);
}

.phone-btn:hover {
    background: linear-gradient(135deg, #138496, #17a2b8);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(23, 162, 184, 0.5);
    color: white;
}

/* Contact Form Section */
.contact-form-sweet {
    background: white;
    position: relative;
}

.contact-form-wrapper-sweet {
    background: linear-gradient(145deg, #ffffff, #FFF8F0);
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(139, 111, 71, 0.2);
    border: 2px solid rgba(212, 165, 116, 0.2);
    position: relative;
    overflow: hidden;
}

.form-decoration-1,
.form-decoration-2 {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1), transparent 70%);
}

.form-decoration-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation: pulse 4s ease-in-out infinite;
}

.form-decoration-2 {
    width: 250px;
    height: 250px;
    bottom: -125px;
    left: -125px;
    animation: pulse 5s ease-in-out infinite;
    animation-delay: 1s;
}

.form-icon-float {
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}

.form-icon-float i {
    font-size: 3rem;
    color: var(--primary-color);
}

.contact-form-wrapper-sweet .form-control,
.contact-form-wrapper-sweet .form-select {
    border: 2px solid rgba(139, 111, 71, 0.2);
    border-radius: 12px;
    padding: 12px 18px;
    transition: all 0.3s ease;
    background: white;
}

.contact-form-wrapper-sweet .form-control:focus,
.contact-form-wrapper-sweet .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 111, 71, 0.15);
    background: white;
}

.contact-form-wrapper-sweet .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.btn-form-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 15px;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(139, 111, 71, 0.3);
    position: relative;
    overflow: hidden;
    color: white;
}

.btn-form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
}

.btn-form-submit:hover {
    background: linear-gradient(135deg, #a0824a, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 111, 71, 0.4);
    color: white;
}

.btn-form-submit:hover::before {
    left: 100%;
}

/* Social Media Section */
.social-sweet-section {
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE4D6 100%);
}

.social-sweet-card {
    background: linear-gradient(145deg, #ffffff, #FFF8F0);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(139, 111, 71, 0.12);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.social-sweet-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(212, 165, 116, 0.3);
    box-shadow: 0 15px 45px rgba(139, 111, 71, 0.2);
}

.social-icon-circle {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.4s ease;
}

.facebook-card .social-icon-circle {
    background: linear-gradient(135deg, #1877F2, #4A9FF5);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
}

.instagram-card .social-icon-circle {
    background: linear-gradient(135deg, #E4405F, #F77737, #FCAF45);
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.3);
}

.twitter-card .social-icon-circle {
    background: linear-gradient(135deg, #1DA1F2, #4AB3F4);
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.3);
}

.youtube-card .social-icon-circle {
    background: linear-gradient(135deg, #FF0000, #FF4444);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.social-sweet-card:hover .social-icon-circle {
    transform: scale(1.2) rotate(10deg);
}

/* FAQ Section */
.faq-sweet-section {
    background: white;
}

.accordion-sweet .accordion-sweet-item {
    border: 2px solid rgba(139, 111, 71, 0.15);
    border-radius: 15px !important;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: linear-gradient(145deg, #ffffff, #FFF8F0);
}

.accordion-sweet .accordion-sweet-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(139, 111, 71, 0.15);
}

.accordion-sweet-button {
    background: white;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 25px;
    border: none;
    display: flex;
    align-items: center;
}

.accordion-sweet-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.1), rgba(212, 165, 116, 0.1));
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-sweet-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238B6F47'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-sweet .accordion-body {
    padding: 20px 25px;
    background: white;
    color: #6c757d;
    line-height: 1.8;
}

/* Responsive Design for Contact Page */
@media (max-width: 992px) {
    .contact-sweet-card {
        padding: 35px 25px;
        margin-bottom: 20px;
    }
    
    .contact-form-wrapper-sweet {
        padding: 40px 30px;
    }
    
    .social-sweet-card {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .contact-icon-wrapper {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .contact-sweet-card {
        padding: 30px 20px;
    }
    
    .contact-form-wrapper-sweet {
        padding: 30px 20px;
    }
    
    .form-icon-float i {
        font-size: 2.5rem;
    }
    
    .social-icon-circle {
        width: 75px;
        height: 75px;
        font-size: 2rem;
    }
    
    .social-sweet-card {
        margin-bottom: 15px;
    }
}

/* Reduced Motion Preference - For users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-animate,
    .scroll-animate-left,
    .scroll-animate-right,
    .scroll-animate-scale {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .product-card,
    .feature-card-morph .shop-btn,
    .btn,
    .navbar-logo {
        transition: none !important;
        transform: none !important;
    }
    
    /* Disable hero image animations for users preferring reduced motion */
    .hero-image-wrapper,
    .hero-image,
    .hero-image-decoration {
        animation: none !important;
        transform: none !important;
    }
    
    .hero-image-decoration {
        opacity: 0 !important;
    }
}

