/* Mognisis Cake Franchise - Custom Styles */

/* Color Variables */
:root {
    --pink-color: #FF6B9D;
    --brown-color: #8B4513;
    --cream-color: #FFF8DC;
    --light-pink: #FFE0EC;
    --dark-brown: #654321;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    --purple-color: #6f42c1;
}

/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Custom Button Styles */
.btn-pink {
    background-color: var(--pink-color);
    border-color: var(--pink-color);
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-pink:hover {
    background-color: #FF5A8C;
    border-color: #FF5A8C;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 107, 157, 0.3);
}

.btn-outline-pink {
    border-color: var(--pink-color);
    color: var(--pink-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-pink:hover {
    background-color: var(--pink-color);
    border-color: var(--pink-color);
    color: white;
    transform: translateY(-2px);
}

.btn-shadow {
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.btn-shadow:hover {
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

/* Text Colors */
.text-pink {
    color: var(--pink-color) !important;
}

.text-brown {
    color: var(--brown-color) !important;
}

.bg-pink {
    background-color: var(--pink-color) !important;
}

.bg-brown {
    background-color: var(--brown-color) !important;
}

.bg-cream {
    background-color: var(--cream-color) !important;
}

.bg-light-pink {
    background-color: var(--light-pink) !important;
}

/* Hero Section Enhancements */
.hero-section {
    background: linear-gradient(135deg, var(--cream-color) 0%, var(--light-pink) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23FF6B9D" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%238B4513" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s ease-in-out infinite;
    opacity: 0.3;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.stat-card {
    padding: 15px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.trust-indicators {
    opacity: 0.9;
}

.hero-image-container {
    position: relative;
}

.hero-main-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.hero-main-image:hover {
    transform: scale(1.02);
}

.floating-card {
    position: absolute;
    width: 150px;
    animation: floatCard 3s ease-in-out infinite;
}

.floating-card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 10%;
    left: -10%;
    animation-delay: 1.5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--pink-color);
    border-radius: 25px;
    position: relative;
    margin: 0 auto 10px;
}

.scroll-wheel {
    width: 6px;
    height: 6px;
    background: var(--pink-color);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* Success Stories */
.success-card {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.success-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.15);
    border-color: var(--pink-color);
}

.success-avatar {
    transition: all 0.3s ease;
}

.success-card:hover .success-avatar {
    transform: scale(1.1);
}

.success-badge {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.success-card:hover .success-badge {
    opacity: 1;
    transform: translateY(0);
}

/* ROI Calculator */
.calculator-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.roi-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pink-color);
    transition: all 0.3s ease;
}

.roi-results {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Product Cards */
.product-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 20px;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.25);
}

.product-card img {
    transition: transform 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}

/* Enhanced Review Cards */
.review-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 10px;
    font-size: 100px;
    color: var(--pink-color);
    opacity: 0.1;
    font-family: Georgia, serif;
}

.review-card:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 15px 30px rgba(139, 69, 19, 0.2);
}

/* Enhanced Buttons */
.btn-pink {
    background: linear-gradient(135deg, var(--pink-color) 0%, #FF8FAB 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-pink::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.5s ease;
}

.btn-pink:hover::before {
    left: 100%;
}

.btn-pink:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.4);
    background: linear-gradient(135deg, #FF5A8C 0%, var(--pink-color) 100%);
}

.btn-outline-pink {
    border: 2px solid var(--pink-color);
    color: var(--pink-color);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-pink:hover {
    background: var(--pink-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.3);
}

/* Enhanced Header Styles */
.top-info-bar {
    background: linear-gradient(135deg, var(--brown-color) 0%, #6B3410 100%);
    font-size: 0.9rem;
    border-bottom: 2px solid var(--pink-color);
}

.top-info-bar a {
    transition: all 0.3s ease;
}

.top-info-bar a:hover {
    color: var(--pink-color) !important;
    transform: translateY(-1px);
}

.brand-logo {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.brand-tagline {
    border-left: 2px solid var(--pink-color);
    padding-left: 10px;
    font-weight: 600;
    color: var(--pink-color);
}

.navbar {
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.98) !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 12px !important;
    margin: 0 2px;
    border-radius: 8px;
}

.nav-link:hover {
    background: rgba(255, 107, 157, 0.1);
    color: var(--pink-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--pink-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    padding: 10px 0;
    animation: dropdownSlide 0.3s ease;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 10px 20px;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 2px 10px;
}

.dropdown-item:hover {
    background: var(--light-pink);
    color: var(--brown-color);
    transform: translateX(5px);
}

/* Enhanced Footer Styles */
.footer-newsletter {
    background: linear-gradient(135deg, #2C1810 0%, var(--brown-color) 100%);
    border-radius: 15px;
    margin: -30px 15px 30px 15px;
    position: relative;
    overflow: hidden;
}

.footer-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pink-color), var(--brown-color), var(--pink-color));
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.footer-brand h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.social-links .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links .social-icon:hover {
    background: var(--pink-color);
    color: white;
    transform: translateY(-3px) scale(1.1);
}

.app-downloads .btn-outline-light {
    border-radius: 25px;
    transition: all 0.3s ease;
}

.app-downloads .btn-outline-light:hover {
    background: var(--pink-color);
    border-color: var(--pink-color);
    transform: translateY(-2px);
}

.contact-item {
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 10px;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.payment-partners {
    text-align: center;
}

.payment-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.payment-icon:hover {
    background: var(--pink-color);
    transform: translateY(-5px) scale(1.1);
}

.footer-badges .badge {
    font-size: 0.7rem;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.footer-badges .badge:nth-child(2) {
    animation-delay: 0.5s;
}

.footer-badges .badge:nth-child(3) {
    animation-delay: 1s;
}

/* WhatsApp Floating Button Enhancement */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 10px 40px rgba(37, 211, 102, 0.6); }
    100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .top-info-bar {
        display: none;
    }
    
    .navbar {
        background: rgba(255, 255, 255, 1) !important;
    }
    
    .brand-tagline {
        display: none !important;
    }
    
    .footer-newsletter {
        margin: 0 0 30px 0;
        border-radius: 0;
    }
    
    .footer-newsletter .row {
        text-align: center;
    }
    
    .footer-newsletter .col-lg-6 {
        margin-bottom: 15px;
    }
    
    .social-links .d-flex {
        justify-content: center;
    }
    
    .app-downloads .d-flex {
        justify-content: center;
    }
    
    .payment-partners .d-flex {
        justify-content: center;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 20px;
    }
    
    .contact-item .d-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item i {
        margin-bottom: 10px;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .footer-newsletter {
        margin: -30px 30px 30px 30px;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 6px 10px !important;
    }
}

/* Print Styles */
@media print {
    .top-info-bar,
    .navbar,
    .footer-newsletter,
    .social-links,
    .app-downloads,
    .payment-partners,
    .whatsapp-float {
        display: none !important;
    }
    
    footer {
        background: white !important;
        color: black !important;
    }
    
    footer h5,
    footer h6 {
        color: black !important;
    }
    
    footer .text-white-50 {
        color: #666 !important;
    }
}

/* Enhanced Cards */
.benefit-card {
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

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

.benefit-card:hover::before {
    top: -100%;
    left: -100%;
}

.benefit-card:hover {
    transform: translateY(-15px) rotate(2deg);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.3);
}

.icon-box {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--pink-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.4s ease;
    position: relative;
}

.icon-box::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-color), var(--brown-color));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover .icon-box::before {
    opacity: 1;
}

.benefit-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

/* Loading Animation */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 2rem 0;
    }
    
    .hero-section .row {
        flex-direction: column-reverse;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .floating-card {
        width: 120px;
    }
    
    .floating-card-1 {
        top: 5%;
        right: 5%;
    }
    
    .floating-card-2 {
        bottom: 5%;
        left: 5%;
    }
    
    .btn-pink, .btn-outline-pink {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .calculator-form {
        padding: 20px;
    }
    
    .roi-value {
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .hero-section,
    .scroll-indicator,
    .floating-card,
    .btn,
    .whatsapp-float {
        display: none !important;
    }
    
    .card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        page-break-inside: avoid;
    }
}

/* Navigation */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--pink-color) !important;
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-card {
    border-radius: 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.2);
}

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--pink-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.benefit-card:hover .icon-box {
    transform: scale(1.1);
}

/* Product Cards */
.product-card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(139, 69, 19, 0.2);
}

.product-card img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

/* Review Cards */
.review-card {
    border-radius: 15px;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.15);
}

.avatar-circle {
    background: linear-gradient(135deg, var(--pink-color) 0%, #FF8FAB 100%);
    font-weight: 600;
    font-size: 1.2rem;
}

/* Success Icon */
.success-icon {
    animation: successPulse 2s infinite;
}

@keyframes successPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.5);
}

/* Form Styles */
.form-control,
.form-select {
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--pink-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 157, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--brown-color);
    margin-bottom: 8px;
}

/* Alert Styles */
.alert {
    border-radius: 10px;
    border: none;
    padding: 15px 20px;
}

.alert-pink {
    background-color: var(--light-pink);
    color: var(--brown-color);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--brown-color) 0%, var(--dark-brown) 100%);
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--pink-color) !important;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }
    
    .hero-section .row {
        flex-direction: column-reverse;
    }
    
    .benefit-card,
    .product-card,
    .review-card {
        margin-bottom: 20px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream-color);
}

::-webkit-scrollbar-thumb {
    background: var(--pink-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF5A8C;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.5s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Badge Styles */
.badge {
    padding: 8px 12px;
    font-weight: 500;
    border-radius: 20px;
}

/* Table Styles */
.table {
    border-radius: 10px;
    overflow: hidden;
}

.table td {
    vertical-align: middle;
}

/* Status Badge Colors */
.bg-warning {
    background-color: var(--warning-color) !important;
}

.bg-success {
    background-color: var(--success-color) !important;
}

.bg-danger {
    background-color: var(--danger-color) !important;
}

.bg-info {
    background-color: var(--info-color) !important;
}

/* Special Effects */
.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* Custom Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--pink-color) 0%, var(--brown-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.border-pink {
    border-color: var(--pink-color) !important;
}

.border-brown {
    border-color: var(--brown-color) !important;
}

/* Enhanced Hero Section with Floating Cakes */
.hero-image-container {
    position: relative;
}

.hero-main-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.floating-card {
    position: absolute;
    z-index: 10;
    transition: all 0.3s ease;
}

.floating-card-1 {
    top: -20px;
    right: -30px;
    animation: float 3s ease-in-out infinite;
}

.floating-card-2 {
    bottom: -20px;
    right: 40px;
    animation: float 3s ease-in-out infinite 1s;
}

.floating-card-3 {
    top: 50%;
    left: -40px;
    animation: float 3s ease-in-out infinite 2s;
}

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

/* Benefit Cards with Images */
.benefit-image {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-image {
    transform: scale(1.05);
}

/* Cake Gallery Styles */
.gallery-grid {
    transition: all 0.3s ease;
}

.gallery-item {
    transition: all 0.3s ease;
}

.gallery-card {
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-image {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(139, 69, 19, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-info {
    padding: 1rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-info {
    transform: translateY(0);
}

/* Gallery Filter Animation */
.gallery-item.hide {
    display: none;
}

.gallery-item.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Enhanced Product Cards */
.product-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .card-img-top {
    transform: scale(1.05);
}

/* Product Card Enhancements */
.product-card {
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-card .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .card-img-top {
    transform: scale(1.08);
}

.product-card .badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card .card-body {
    padding: 1.5rem;
}

.product-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.product-card .card-text {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Custom Badge Colors */
.badge-purple {
    background-color: #6f42c1 !important;
    color: white !important;
}

/* Featured Cakes Section */
.cake-thumb {
    transition: all 0.3s ease;
    cursor: pointer;
}

.cake-thumb:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-image {
        height: 200px;
    }
    
    .floating-card {
        position: relative;
        margin: 10px 0;
        animation: none;
    }
    
    .floating-card-1,
    .floating-card-2,
    .floating-card-3 {
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
}

/* Product Inquiry Modal */
.inquiry-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: white;
    max-width: 600px;
    margin: 50px auto;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-header {
    background: linear-gradient(135deg, var(--pink-color) 0%, var(--brown-color) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

.product-info {
    background: var(--cream-color);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--pink-color);
}

.inquiry-form .form-label {
    font-weight: 600;
    color: var(--brown-color);
    margin-bottom: 0.5rem;
}

.inquiry-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.inquiry-form .form-control:focus {
    border-color: var(--pink-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 157, 0.25);
}

.inquiry-form .form-control.is-invalid {
    border-color: #dc3545;
    background-image: none;
}

.inquiry-form .invalid-feedback {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* Inquiry Button Styles */
.inquire-btn {
    background: linear-gradient(135deg, var(--pink-color) 0%, var(--brown-color) 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.inquire-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
    color: white;
}

.inquire-btn:active {
    transform: translateY(0);
}

/* Enhanced Product Cards with Inquiry Button */
.product-card .card-body {
    position: relative;
}

.product-card .inquire-btn-wrapper {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.product-card .btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Product Image Container */
.product-image-container {
    position: relative;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.product-badge .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    background: rgba(255, 107, 157, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Product Overlay Effects */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.product-image-container:hover .product-overlay {
    opacity: 1;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.product-image-container:hover .product-actions {
    transform: translateY(0);
}

.product-actions .btn {
    min-width: 140px;
    border-radius: 25px;
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-actions .btn:hover {
    transform: scale(1.05);
}

/* Product Features */
.product-features {
    margin: 1rem 0;
}

.product-features .badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.65rem;
    border-radius: 15px;
    font-weight: 500;
    background: rgba(248, 249, 250, 0.9) !important;
    color: #495057 !important;
    border: 1px solid rgba(222, 226, 230, 0.8);
    transition: all 0.2s ease;
}

.product-features .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Enhanced Product Card Animations */
.product-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 157, 0.1);
    background: white;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 107, 157, 0.25);
    border-color: rgba(255, 107, 157, 0.3);
}

.product-card .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .card-img-top {
    transform: scale(1.1);
}

.product-card .card-body {
    padding: 1.75rem;
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
}

.product-card .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brown-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.product-card .card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 1.25rem;
}

.product-card .text-pink {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--pink-color) !important;
}

.product-card .btn-group {
    display: flex;
    gap: 0.75rem;
}

.product-card .btn-group .btn {
    flex: 1;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-card .btn-group .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-card .card-img-top {
        height: 200px;
    }
    
    .product-card .card-body {
        padding: 1.25rem;
    }
    
    .product-card .btn-group {
        flex-direction: column;
    }
    
    .product-actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .product-actions .btn {
        min-width: 120px;
        font-size: 0.875rem;
    }
}

/* Success Message Styles */
.inquiry-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.inquiry-success i {
    font-size: 1.5rem;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 20px;
        max-height: calc(100vh - 40px);
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-title {
        font-size: 1.25rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

/* Loading State */
.btn.loading {
    position: relative;
    color: transparent !important;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-float,
    .btn,
    footer {
        display: none !important;
    }
    
    .card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}

/* Missing Badge Classes */
.bg-purple {
    background-color: var(--purple-color) !important;
    color: white !important;
}

/* Enhanced Gallery Styles */
.gallery-grid {
    transition: all 0.3s ease;
}

.gallery-item {
    transition: all 0.3s ease;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cake Thumbnail Styles */
.cake-thumb {
    transition: all 0.3s ease;
    cursor: pointer;
}

.cake-thumb:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Enhanced Product Card Styles */
.inquire-btn-wrapper {
    display: flex;
    gap: 0.5rem;
}

.inquire-btn {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
}

/* Benefit Card Image Styles */
.benefit-image {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-image {
    transform: scale(1.05);
}

/* Enhanced Hero Image Styles */
.hero-main-image {
    transition: transform 0.3s ease;
}

.hero-main-image:hover {
    transform: scale(1.02);
}

.floating-card {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    background: white;
    padding: 0.5rem;
}

.floating-card:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.floating-card img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.floating-card-1 {
    top: -20px;
    right: -20px;
    transform: rotate(15deg);
}

.floating-card-2 {
    bottom: -30px;
    right: 40px;
    transform: rotate(-10deg);
}

.floating-card-3 {
    top: 50%;
    left: -30px;
    transform: rotate(-20deg);
}

/* Filter Button Active State */
.btn-group .btn.active {
    background-color: var(--pink-color);
    border-color: var(--pink-color);
    color: white;
}

/* Gallery Overlay Enhancement */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-info {
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .floating-card {
        width: 80px;
        height: 80px;
    }
    
    .floating-card img {
        height: 50px;
    }
    
    .gallery-grid .col-lg-3 {
        margin-bottom: 1rem;
    }
}
