/* MahaLaxmi Color Scheme - Refined from Reference Image */
:root {
    /* Primary Colors from Reference Image */
    --mahalaxmi-purple: #4A0E4E;        /* Deep purple/maroon - more refined */
    --mahalaxmi-gold: #C9A96E;          /* Rich gold - warmer tone */
    --mahalaxmi-gold-bright: #E6C547;   /* Bright gold for highlights */
    --mahalaxmi-white: #FFFFFF;         /* Pure white text */
    --mahalaxmi-beige: #F5F1E8;         /* Warm beige background */
    --mahalaxmi-cream: #FDF8F0;         /* Cream accent */
    --mahalaxmi-green: #8FBC8F;         /* Natural green accents */
    
    /* Secondary Colors */
    --mahalaxmi-purple-dark: #2D0A30;   /* Darker purple for depth */
    --mahalaxmi-purple-light: #6B1A70;  /* Lighter purple for gradients */
    --mahalaxmi-gold-dark: #A68B5B;     /* Darker gold for shadows */
    --mahalaxmi-gold-light: #F4E6C7;    /* Light gold for backgrounds */
    --mahalaxmi-gold-accent: #D4AF37;   /* Classic gold accent */
    
    /* Text Colors */
    --mahalaxmi-text-primary: #2C2C2C;  /* Dark text */
    --mahalaxmi-text-secondary: #5A5A5A; /* Medium gray text */
    --mahalaxmi-text-light: #8A8A8A;    /* Light gray text */
    --mahalaxmi-text-gold: #B8860B;     /* Gold text */
    
    /* Background Colors */
    --mahalaxmi-bg-primary: #FFFFFF;    /* White background */
    --mahalaxmi-bg-secondary: #F5F1E8;  /* Warm beige background */
    --mahalaxmi-bg-accent: #FDF8F0;     /* Cream accent background */
    --mahalaxmi-bg-card: #FAFAFA;       /* Card background */
}

/* Global Color Overrides */
body {
    background: var(--mahalaxmi-bg-secondary);
    color: var(--mahalaxmi-text-primary);
}

/* Main content area with warm beige background */
main {
    background: var(--mahalaxmi-bg-secondary);
}

/* Header Styling with MahaLaxmi Colors */
.tanishq-top-header {
    background: linear-gradient(135deg, var(--mahalaxmi-purple) 0%, var(--mahalaxmi-purple-dark) 100%);
    color: var(--mahalaxmi-white);
}

.tanishq-bottom-header {
    background: var(--mahalaxmi-white);
    border-top: 3px solid var(--mahalaxmi-gold);
    box-shadow: 0 2px 10px rgba(92, 0, 76, 0.1);
}

/* Search Bar Styling */
.tanishq-search-container {
    background: var(--mahalaxmi-white);
    border: 2px solid var(--mahalaxmi-gold);
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.tanishq-search-input {
    color: var(--mahalaxmi-text-primary);
}

.tanishq-search-input::placeholder {
    color: var(--mahalaxmi-text-light);
}

.tanishq-search-btn {
    background: linear-gradient(135deg, var(--mahalaxmi-gold) 0%, var(--mahalaxmi-gold-bright) 100%);
    color: var(--mahalaxmi-white);
}

.tanishq-search-btn:hover {
    background: linear-gradient(135deg, var(--mahalaxmi-gold-dark) 0%, var(--mahalaxmi-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* User Action Icons */
.tanishq-user-actions a {
    color: var(--mahalaxmi-white);
    transition: all 0.3s ease;
    font-size: 18px;
}

.tanishq-user-actions a:hover {
    color: var(--mahalaxmi-gold);
    transform: translateY(-2px);
}

/* Cart Badge Styling */
.tanishq-user-actions .badge {
    background-color: #E04F4F;
    color: var(--mahalaxmi-white);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -5px;
    right: -5px;
    border: 2px solid var(--mahalaxmi-white);
}

/* Navigation Styling */
.tanishq-nav-link {
    color: var(--mahalaxmi-text-primary);
    font-weight: 600;
    transition: all 0.3s ease;
}

.tanishq-nav-link:hover {
    color: var(--mahalaxmi-gold);
    background: linear-gradient(135deg, var(--mahalaxmi-gold-light) 0%, var(--mahalaxmi-white) 100%);
}

/* Category Cards with MahaLaxmi Colors */
.category-card-modern {
    background: var(--mahalaxmi-white);
    border: 2px solid transparent;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 4px 20px rgba(92, 0, 76, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card-modern:hover {
    border-color: var(--mahalaxmi-gold);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(92, 0, 76, 0.15);
}

/* Category Background Gradients - Refined Colors */
.category-card-modern:nth-child(1) .category-image-modern {
    background: linear-gradient(135deg, var(--mahalaxmi-purple) 0%, var(--mahalaxmi-purple-light) 100%);
}

.category-card-modern:nth-child(2) .category-image-modern {
    background: linear-gradient(135deg, var(--mahalaxmi-gold) 0%, var(--mahalaxmi-gold-bright) 100%);
}

.category-card-modern:nth-child(3) .category-image-modern {
    background: linear-gradient(135deg, var(--mahalaxmi-gold-accent) 0%, var(--mahalaxmi-gold-light) 100%);
}

.category-card-modern:nth-child(4) .category-image-modern {
    background: linear-gradient(135deg, var(--mahalaxmi-purple-dark) 0%, var(--mahalaxmi-purple) 100%);
}

/* Section Titles with MahaLaxmi Styling */
.section-title {
    background: linear-gradient(135deg, var(--mahalaxmi-purple) 0%, var(--mahalaxmi-gold) 50%, var(--mahalaxmi-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title::after {
    background: linear-gradient(90deg, var(--mahalaxmi-gold) 0%, var(--mahalaxmi-gold-bright) 100%);
}

/* Perfect Match Section */
.perfect-match-title {
    background: linear-gradient(135deg, var(--mahalaxmi-purple) 0%, var(--mahalaxmi-gold) 50%, var(--mahalaxmi-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.perfect-match-title::after {
    background: linear-gradient(90deg, var(--mahalaxmi-gold) 0%, var(--mahalaxmi-gold-bright) 100%);
}

.perfect-match-subtitle::before,
.perfect-match-subtitle::after {
    color: var(--mahalaxmi-gold);
}

/* Buttons with MahaLaxmi Styling */
.btn {
    background: linear-gradient(135deg, var(--mahalaxmi-purple) 0%, var(--mahalaxmi-purple-light) 100%);
    color: var(--mahalaxmi-white);
    border: 2px solid var(--mahalaxmi-gold);
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(74, 14, 78, 0.2);
}

/* Add to Cart Button - Smaller Size */
.add-in-cart-btn,
.add_to_cart {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.8rem !important;
    border-radius: 15px !important;
    font-weight: 500 !important;
    letter-spacing: 0.3px !important;
    min-height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.3rem !important;
}

.add-in-cart-btn:hover,
.add_to_cart:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(201, 169, 110, 0.3) !important;
}

.btn:hover {
    background: linear-gradient(135deg, var(--mahalaxmi-gold) 0%, var(--mahalaxmi-gold-bright) 100%);
    border-color: var(--mahalaxmi-purple);
    color: var(--mahalaxmi-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.4);
}

.viewmorebtn {
    background: linear-gradient(135deg, var(--mahalaxmi-gold) 0%, var(--mahalaxmi-gold-bright) 100%);
    color: var(--mahalaxmi-white);
    border: 2px solid var(--mahalaxmi-purple);
    border-radius: 25px;
    padding: 0.75rem 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.2);
}

.viewmorebtn:hover {
    background: linear-gradient(135deg, var(--mahalaxmi-purple) 0%, var(--mahalaxmi-purple-light) 100%);
    border-color: var(--mahalaxmi-gold);
    color: var(--mahalaxmi-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 14, 78, 0.4);
}

/* Mobile Responsive Add to Cart Button */
@media (max-width: 768px) {
    .add-in-cart-btn,
    .add_to_cart {
        padding: 0.3rem 0.6rem !important;
        font-size: 0.75rem !important;
        border-radius: 12px !important;
        min-height: 28px !important;
        gap: 0.2rem !important;
    }
}

@media (max-width: 575px) {
    .add-in-cart-btn,
    .add_to_cart {
        padding: 0.25rem 0.5rem !important;
        font-size: 0.7rem !important;
        border-radius: 10px !important;
        min-height: 26px !important;
        gap: 0.15rem !important;
    }
}

/* Extra Small Mobile Button Styles */
@media (max-width: 575px) {
    .viewmorebtn {
        padding: 0.4rem 1rem !important;
        font-size: 0.75rem !important;
        border-radius: 18px !important;
        letter-spacing: 0.2px !important;
        font-weight: 500 !important;
        min-width: 80px !important;
        min-height: 36px !important;
    }
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem 0;
    padding: 0;
    list-style: none;
}

.page-item {
    margin: 0;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    color: var(--mahalaxmi-purple);
    background-color: var(--mahalaxmi-white);
    border: 2px solid var(--mahalaxmi-gold);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    min-width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.page-link:hover {
    color: var(--mahalaxmi-white);
    background-color: var(--mahalaxmi-purple);
    border-color: var(--mahalaxmi-purple);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 14, 78, 0.3);
}

.page-item.active .page-link {
    color: var(--mahalaxmi-white);
    background: linear-gradient(135deg, var(--mahalaxmi-purple) 0%, var(--mahalaxmi-purple-dark) 100%);
    border-color: var(--mahalaxmi-purple);
    box-shadow: 0 4px 15px rgba(74, 14, 78, 0.4);
}

.page-item.disabled .page-link {
    color: var(--mahalaxmi-text-light);
    background-color: var(--mahalaxmi-bg-light);
    border-color: var(--mahalaxmi-border-light);
    cursor: not-allowed;
    opacity: 0.6;
}

.page-item.disabled .page-link:hover {
    color: var(--mahalaxmi-text-light);
    background-color: var(--mahalaxmi-bg-light);
    border-color: var(--mahalaxmi-border-light);
    transform: none;
    box-shadow: none;
}

/* Mobile Responsive Pagination */
@media (max-width: 768px) {
    .pagination {
        gap: 0.25rem;
        margin: 1.5rem 0;
    }
    
    .page-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        min-width: 35px;
        height: 35px;
    }
}

@media (max-width: 575px) {
    .pagination {
        gap: 0.2rem;
        margin: 1rem 0;
    }
    
    .page-link {
        padding: 0.3rem 0.5rem;
        font-size: 0.75rem;
        min-width: 32px;
        height: 32px;
    }
}

/* Ensure Clickable Elements Work Properly */
.btn,
button,
a,
input[type="button"],
input[type="submit"],
.add_to_cart,
.add-in-cart-btn,
.compare,
.shuffle,
.minus-btn,
.plus-btn,
.buy_now,
.add-btn {
    cursor: pointer !important;
    pointer-events: auto !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}

/* Ensure Product Page Elements Are Clickable */
.Product-Detail-card .btn,
.Product-Detail-card button,
.Product-Detail-card a,
.product-add-section .btn,
.product-add-section button,
.compare-share-btn a,
.compare-share-btn button {
    cursor: pointer !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Fix Any Overlapping Issues */
.product-img-section-md,
.product-add-section,
.compare-share-btn {
    position: relative !important;
    z-index: 1 !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--mahalaxmi-gold) 0%, var(--mahalaxmi-gold-bright) 100%);
    border-color: var(--mahalaxmi-purple);
    color: var(--mahalaxmi-purple);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 110, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--mahalaxmi-gold) 0%, var(--mahalaxmi-gold-bright) 100%);
    border: 2px solid var(--mahalaxmi-purple);
    color: var(--mahalaxmi-white);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--mahalaxmi-purple) 0%, var(--mahalaxmi-purple-light) 100%);
    border-color: var(--mahalaxmi-gold);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--mahalaxmi-gold);
    color: var(--mahalaxmi-gold);
}

.btn-outline:hover {
    background: var(--mahalaxmi-gold);
    color: var(--mahalaxmi-white);
    border-color: var(--mahalaxmi-gold);
}

.btn-success {
    background: linear-gradient(135deg, var(--mahalaxmi-green) 0%, #7CB342 100%);
    border: 2px solid var(--mahalaxmi-gold);
    color: var(--mahalaxmi-white);
}

.btn-success:hover {
    background: linear-gradient(135deg, #7CB342 0%, var(--mahalaxmi-green) 100%);
    border-color: var(--mahalaxmi-gold);
}

/* Product Cards */
.card {
    background: var(--mahalaxmi-bg-card);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(74, 14, 78, 0.05);
}

.card:hover {
    border-color: var(--mahalaxmi-gold);
    box-shadow: 0 8px 25px rgba(74, 14, 78, 0.15);
    transform: translateY(-5px);
}

.card-title {
    color: var(--mahalaxmi-text-primary);
    font-weight: 600;
}

.card-price {
    color: var(--mahalaxmi-gold);
    font-weight: 700;
}

/* Banner Slider with MahaLaxmi Colors - Keep Original Background */
.banner-container {
    background: transparent;
}

.banner-prev,
.banner-next {
    background: linear-gradient(135deg, var(--mahalaxmi-gold) 0%, var(--mahalaxmi-gold-bright) 100%);
    color: var(--mahalaxmi-white);
}

.banner-prev:hover,
.banner-next:hover {
    background: linear-gradient(135deg, var(--mahalaxmi-gold-dark) 0%, var(--mahalaxmi-gold) 100%);
}

.banner-pagination .swiper-pagination-bullet {
    background: var(--mahalaxmi-gold);
}

.banner-pagination .swiper-pagination-bullet-active {
    background: var(--mahalaxmi-gold-bright);
    transform: scale(1.3);
}

/* Preview Items */
.preview-item {
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.preview-item:hover,
.preview-item.active {
    border-color: var(--mahalaxmi-gold);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Footer Styling */
footer {
    background: #480d4c !important;
    color: var(--mahalaxmi-white);
}

footer h5,
footer h6 {
    color: var(--mahalaxmi-gold);
}

footer a {
    color: var(--mahalaxmi-white);
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--mahalaxmi-gold);
}

/* Footer Text Colors - Make All Text White */
footer p,
footer span,
footer div,
footer li,
footer .text-muted,
footer .text-secondary,
footer .text-gray,
footer .footer-text-section p,
footer .footer-text-section span,
footer .footer-text-section div,
footer .footer-text-section li {
    color: var(--mahalaxmi-white) !important;
}

/* Footer Links */
footer a {
    color: var(--mahalaxmi-white) !important;
    transition: color 0.3s ease;
}

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

/* Footer Contact Information */
footer .contact-info,
footer .contact-info p,
footer .contact-info span,
footer .contact-info div {
    color: var(--mahalaxmi-white) !important;
}

/* Footer Navigation Links */
footer .nav-link,
footer .nav-item a,
footer .footer-nav a {
    color: var(--mahalaxmi-white) !important;
}

footer .nav-link:hover,
footer .nav-item a:hover,
footer .footer-nav a:hover {
    color: var(--mahalaxmi-gold) !important;
}

/* Branches Section - Elegant Design */
.branches-section {
    background: #F8F6F0;
    padding: 2rem 0;
    position: relative;
}

.branches-header {
    text-align: center;
    margin-bottom: 4rem;
}

.branches-header .section-title {
    margin-bottom: 1.5rem;
    color: var(--mahalaxmi-purple);
}

.branches-header .section-subtitle {
    margin-bottom: 2rem;
    color: var(--mahalaxmi-text-secondary);
}

.branches-divider {
    width: 80px;
    height: 2px;
    background: var(--mahalaxmi-gold);
    margin: 0 auto;
    border-radius: 1px;
}

/* Elegant Branch Cards */
.elegant-branch-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.elegant-branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.branch-number-bg {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(201, 169, 110, 0.08);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    z-index: 1;
}

.branch-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.branch-icon {
    width: 48px;
    height: 48px;
    background: var(--mahalaxmi-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.elegant-branch-card:hover .branch-icon {
    transform: scale(1.05);
    background: var(--mahalaxmi-gold-bright);
}

.branch-icon i {
    font-size: 20px;
    color: #FFFFFF;
}

.branch-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--mahalaxmi-purple);
    margin: 0;
    line-height: 1.2;
    text-transform: capitalize;
}

.branch-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.branch-address,
.branch-phone {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.5;
}

.branch-address i,
.branch-phone i {
    color: #999999;
    font-size: 14px;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.branch-phone a {
    color: var(--mahalaxmi-purple);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.branch-phone a:hover {
    color: var(--mahalaxmi-gold);
}

/* Responsive Design for Elegant Branches */
@media (max-width: 768px) {
    .branches-section {
        padding: 4rem 0;
    }
    
    .elegant-branch-card {
        padding: 1.5rem 1.25rem;
    }
    
    .branch-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .branch-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto;
    }
    
    .branch-icon i {
        font-size: 18px;
    }
    
    .branch-name {
        font-size: 1.2rem;
    }
    
    .branch-address,
    .branch-phone {
        font-size: 0.85rem;
        justify-content: center;
    }
    
    .branch-number-bg {
        font-size: 3rem;
        top: 0.75rem;
        right: 1rem;
    }
}

@media (max-width: 576px) {
    .elegant-branch-card {
        padding: 1.25rem 1rem;
    }
    
    .branch-header {
        gap: 0.5rem;
    }
    
    .branch-icon {
        width: 36px;
        height: 36px;
    }
    
    .branch-icon i {
        font-size: 16px;
    }
    
    .branch-name {
        font-size: 1.1rem;
    }
    
    .branch-address,
    .branch-phone {
        font-size: 0.8rem;
    }
    
    .branch-number-bg {
        font-size: 2.5rem;
    }
}

/* About Us Page Styles */
.about-hero-section {
    background: linear-gradient(135deg, var(--mahalaxmi-bg-primary) 0%, var(--mahalaxmi-bg-secondary) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23C9A96E" opacity="0.1"/><circle cx="10" cy="10" r="0.5" fill="%234A0E4E" opacity="0.08"/><path d="M5 5 L15 5 L10 15 Z" fill="%23C9A96E" opacity="0.06"/></pattern></defs><rect width="100" height="100" fill="url(%23about-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--mahalaxmi-purple);
    margin-bottom: 1rem;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--mahalaxmi-gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--mahalaxmi-text-secondary);
    line-height: 1.8;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.jewelry-showcase {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jewelry-item {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mahalaxmi-gold) 0%, var(--mahalaxmi-gold-bright) 100%);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
    animation: float 6s ease-in-out infinite;
}

.jewelry-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--mahalaxmi-white);
    border-radius: 50%;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
}

.jewelry-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.jewelry-2 {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.jewelry-3 {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 4s;
}

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

.our-story-section {
    background: var(--mahalaxmi-white);
    padding: 6rem 0;
}

.story-text {
    font-size: 1.1rem;
    color: var(--mahalaxmi-text-secondary);
    line-height: 1.8;
    margin-bottom: 0;
}

.leadership-section {
    background: linear-gradient(135deg, var(--mahalaxmi-bg-secondary) 0%, var(--mahalaxmi-bg-accent) 100%);
    padding: 6rem 0;
    position: relative;
}

.leadership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leadership-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="%23C9A96E" opacity="0.05"/><circle cx="10" cy="10" r="1" fill="%234A0E4E" opacity="0.04"/><path d="M15 15 L45 15 L30 45 Z" fill="%23C9A96E" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23leadership-pattern)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.leader-card {
    background: var(--mahalaxmi-white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.5s ease;
    box-shadow: 0 8px 25px rgba(74, 14, 78, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(201, 169, 110, 0.2);
    border-color: var(--mahalaxmi-gold);
}

.leader-image {
    text-align: center;
    margin-bottom: 2rem;
}

.leader-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
    transition: all 0.4s ease;
    overflow: hidden;
    border: 4px solid var(--mahalaxmi-gold);
    background: var(--mahalaxmi-white);
}

.leader-card:hover .leader-avatar {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(201, 169, 110, 0.4);
    border-color: var(--mahalaxmi-gold-bright);
}

.leader-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.leader-card:hover .leader-photo {
    transform: scale(1.05);
}

.leader-content {
    flex: 1;
    text-align: center;
}

.leader-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--mahalaxmi-purple);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.leader-position {
    font-size: 1rem;
    color: var(--mahalaxmi-gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.leader-message {
    text-align: left;
}

.leader-message p {
    font-size: 0.95rem;
    color: var(--mahalaxmi-text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.leader-message p:last-child {
    margin-bottom: 0;
}

.our-promise-section {
    background: var(--mahalaxmi-white);
    padding: 6rem 0;
    position: relative;
}

.promise-content {
    max-width: 800px;
    margin: 0 auto;
}

.promise-text {
    font-size: 1.1rem;
    color: var(--mahalaxmi-text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.signature {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--mahalaxmi-gold);
}

.signature-text {
    font-size: 1rem;
    color: var(--mahalaxmi-text-secondary);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.signature-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--mahalaxmi-purple);
    margin-bottom: 0;
}

.values-section {
    background: linear-gradient(135deg, var(--mahalaxmi-bg-primary) 0%, var(--mahalaxmi-bg-secondary) 100%);
    padding: 6rem 0;
    position: relative;
}

.value-card {
    background: var(--mahalaxmi-white);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(74, 14, 78, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.1);
    height: 100%;
    position: relative;
    z-index: 2;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(201, 169, 110, 0.2);
    border-color: var(--mahalaxmi-gold);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--mahalaxmi-gold) 0%, var(--mahalaxmi-gold-bright) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(201, 169, 110, 0.4);
}

.value-icon i {
    font-size: 32px;
    color: var(--mahalaxmi-white);
}

.value-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--mahalaxmi-purple);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.value-description {
    font-size: 0.95rem;
    color: var(--mahalaxmi-text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Login Modal - Create Account Button */
.btn-create-account {
    background: linear-gradient(135deg, var(--mahalaxmi-purple) 0%, var(--mahalaxmi-purple-dark) 100%);
    border: 2px solid var(--mahalaxmi-gold);
    color: var(--mahalaxmi-white);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(74, 14, 78, 0.2);
    min-width: 160px;
}

.btn-create-account:hover {
    background: linear-gradient(135deg, var(--mahalaxmi-gold) 0%, var(--mahalaxmi-gold-bright) 100%);
    border-color: var(--mahalaxmi-purple);
    color: var(--mahalaxmi-purple);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 110, 0.4);
}

/* Contact Us Page Styles */
.contact-hero-section {
    background: linear-gradient(135deg, var(--mahalaxmi-bg-primary) 0%, var(--mahalaxmi-bg-secondary) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1.5" fill="%23C9A96E" opacity="0.08"/><circle cx="10" cy="10" r="1" fill="%234A0E4E" opacity="0.06"/><path d="M5 5 L15 5 L10 15 Z" fill="%23C9A96E" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.contact-showcase {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mahalaxmi-gold) 0%, var(--mahalaxmi-gold-bright) 100%);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
    animation: float 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--mahalaxmi-white);
    border-radius: 50%;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.contact-2 {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.contact-3 {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 4s;
}

.contact-form-section {
    background: var(--mahalaxmi-white);
    padding: 6rem 0;
}

.contact-form-wrapper {
    background: var(--mahalaxmi-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(74, 14, 78, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-group label {
    font-weight: 600;
    color: var(--mahalaxmi-purple);
    margin-bottom: 0.5rem;
    display: block;
}

.contact-form .form-control {
    border: 2px solid rgba(201, 169, 110, 0.2);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--mahalaxmi-white);
}

.contact-form .form-control:focus {
    border-color: var(--mahalaxmi-gold);
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 110, 0.25);
    outline: none;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-contact-submit {
    background: linear-gradient(135deg, var(--mahalaxmi-purple) 0%, var(--mahalaxmi-gold) 100%);
    color: var(--mahalaxmi-white);
    border: none;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 14, 78, 0.2);
    min-width: 200px;
}

.btn-contact-submit:hover {
    background: linear-gradient(135deg, var(--mahalaxmi-gold) 0%, var(--mahalaxmi-gold-bright) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.4);
    color: var(--mahalaxmi-white);
}

.contact-info-section {
    background: linear-gradient(135deg, var(--mahalaxmi-bg-secondary) 0%, var(--mahalaxmi-bg-accent) 100%);
    padding: 6rem 0;
    position: relative;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-info-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="%23C9A96E" opacity="0.05"/><circle cx="10" cy="10" r="0.5" fill="%234A0E4E" opacity="0.04"/><path d="M15 15 L45 15 L30 45 Z" fill="%23C9A96E" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-info-pattern)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.contact-info-card {
    background: var(--mahalaxmi-white);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(74, 14, 78, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.1);
    height: 100%;
    position: relative;
    z-index: 2;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(201, 169, 110, 0.2);
    border-color: var(--mahalaxmi-gold);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--mahalaxmi-gold) 0%, var(--mahalaxmi-gold-bright) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
    transition: all 0.4s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(201, 169, 110, 0.4);
}

.contact-icon i {
    font-size: 32px;
    color: var(--mahalaxmi-white);
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--mahalaxmi-purple);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.contact-details {
    font-size: 1rem;
    color: var(--mahalaxmi-text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details a {
    color: var(--mahalaxmi-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--mahalaxmi-gold);
}

.contact-subtitle {
    font-size: 0.9rem;
    color: var(--mahalaxmi-gold);
    font-style: italic;
    margin-bottom: 0;
}

.map-section {
    background: var(--mahalaxmi-white);
    padding: 4rem 0;
}

.map-wrapper {
    text-align: center;
}

.map-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--mahalaxmi-purple);
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(74, 14, 78, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Responsive Design for Contact Us */
@media (max-width: 768px) {
    .contact-hero-section {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .contact-showcase {
        height: 300px;
    }
    
    .contact-item {
        width: 60px;
        height: 60px;
    }
    
    .contact-item::before {
        width: 30px;
        height: 30px;
    }
    
    .contact-form-section,
    .contact-info-section,
    .map-section {
        padding: 4rem 0;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon i {
        font-size: 24px;
    }
    
    .contact-title {
        font-size: 1.1rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-showcase {
        height: 250px;
    }
    
    .contact-item {
        width: 50px;
        height: 50px;
    }
    
    .contact-item::before {
        width: 25px;
        height: 25px;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .contact-info-card {
        padding: 1.5rem 1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 20px;
    }
    
    .contact-title {
        font-size: 1rem;
    }
    
    .contact-details {
        font-size: 0.9rem;
    }
    
    .contact-subtitle {
        font-size: 0.8rem;
    }
    
    .map-container iframe {
        height: 250px;
    }
}

/* Responsive Design for About Us */
@media (max-width: 768px) {
    .about-hero-section {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .jewelry-showcase {
        height: 300px;
    }
    
    .jewelry-item {
        width: 60px;
        height: 60px;
    }
    
    .jewelry-item::before {
        width: 30px;
        height: 30px;
    }
    
    .our-story-section,
    .leadership-section,
    .our-promise-section,
    .values-section {
        padding: 4rem 0;
    }
    
    .leader-card {
        padding: 2rem 1.5rem;
    }
    
    .leader-avatar {
        width: 100px;
        height: 100px;
    }
    
    .leader-name {
        font-size: 1.3rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-icon i {
        font-size: 24px;
    }
    
    .value-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .jewelry-showcase {
        height: 250px;
    }
    
    .jewelry-item {
        width: 50px;
        height: 50px;
    }
    
    .jewelry-item::before {
        width: 25px;
        height: 25px;
    }
    
    .leader-card {
        padding: 1.5rem 1rem;
    }
    
    .leader-avatar {
        width: 90px;
        height: 90px;
    }
    
    .leader-name {
        font-size: 1.2rem;
    }
    
    .leader-position {
        font-size: 0.9rem;
    }
    
    .leader-message p {
        font-size: 0.9rem;
    }
    
    .value-card {
        padding: 1.5rem 1rem;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
    }
    
    .value-icon i {
        font-size: 20px;
    }
    
    .value-title {
        font-size: 1rem;
    }
    
    .value-description {
        font-size: 0.9rem;
    }
}

/* Features Section - New Modern Design */
.features-section {
    background: linear-gradient(135deg, var(--mahalaxmi-bg-secondary) 0%, var(--mahalaxmi-bg-accent) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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="%23C9A96E" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%234A0E4E" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23C9A96E" opacity="0.15"/><circle cx="10" cy="60" r="0.5" fill="%234A0E4E" opacity="0.15"/><circle cx="90" cy="40" r="0.5" fill="%23C9A96E" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

/* Features section uses standard section-title and section-subtitle classes */
.features-header .section-title {
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(74, 14, 78, 0.1);
}

.features-header .section-subtitle {
    margin-bottom: 2rem;
}

.features-divider {
    width: 120px;
    height: 2px;
    background: linear-gradient(135deg, var(--mahalaxmi-purple) 0%, var(--mahalaxmi-gold) 100%);
    margin: 0 auto;
    border-radius: 1px;
}

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

.feature-item {
    background: var(--mahalaxmi-white);
    border-radius: 25px;
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(74, 14, 78, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.2);
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--mahalaxmi-purple) 0%, var(--mahalaxmi-gold) 100%);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(201, 169, 110, 0.25);
    border-color: var(--mahalaxmi-gold);
}

.feature-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(201, 169, 110, 0.1);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    z-index: 1;
}

.feature-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--mahalaxmi-gold) 0%, var(--mahalaxmi-gold-bright) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.feature-item:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(201, 169, 110, 0.4);
}

.feature-icon-wrapper i {
    font-size: 28px;
    color: var(--mahalaxmi-white);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-wrapper i {
    transform: scale(1.1);
}

.feature-text {
    flex: 1;
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--mahalaxmi-purple);
    margin-bottom: 1rem;
    line-height: 1.3;
    text-transform: capitalize;
}

.feature-description {
    font-size: 1rem;
    color: var(--mahalaxmi-text-secondary);
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

.feature-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.1) 0%, rgba(74, 14, 78, 0.1) 100%);
    border-radius: 50%;
    transform: translate(30px, 30px);
    transition: all 0.4s ease;
}

.feature-item:hover .feature-decoration {
    transform: translate(20px, 20px) scale(1.2);
}

/* Responsive Design for New Features */
@media (max-width: 768px) {
    .features-section {
        padding: 4rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-item {
        padding: 2.5rem 2rem;
    }
    
    .feature-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
    
    .feature-icon-wrapper i {
        font-size: 24px;
    }
    
    .feature-title {
        font-size: 1.5rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
    
    .feature-number {
        font-size: 3rem;
        top: 1.5rem;
        right: 1.5rem;
    }
}

@media (max-width: 576px) {
    .feature-item {
        padding: 2rem 1.5rem;
    }
    
    .feature-content-wrapper {
        gap: 1rem;
    }
    
    .feature-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon-wrapper i {
        font-size: 20px;
    }
    
    .feature-title {
        font-size: 1.25rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
}

/* Form Elements */
.form-control {
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--mahalaxmi-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

/* Alert Messages */
.alert-success {
    background: linear-gradient(135deg, var(--mahalaxmi-gold-light) 0%, var(--mahalaxmi-white) 100%);
    border: 1px solid var(--mahalaxmi-gold);
    color: var(--mahalaxmi-text-primary);
}

.alert-danger {
    background: linear-gradient(135deg, #ffebee 0%, #ffffff 100%);
    border: 1px solid #f44336;
    color: #c62828;
}

/* Special MahaLaxmi Elements */
.mahalaxmi-accent {
    background: linear-gradient(135deg, var(--mahalaxmi-gold) 0%, var(--mahalaxmi-gold-bright) 100%);
    color: var(--mahalaxmi-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mahalaxmi-purple-bg {
    background: linear-gradient(135deg, var(--mahalaxmi-purple) 0%, var(--mahalaxmi-purple-dark) 100%);
    color: var(--mahalaxmi-white);
}

.mahalaxmi-gold-text {
    color: var(--mahalaxmi-gold);
    font-weight: 600;
}

/* Decorative Elements */
.mahalaxmi-pattern::before {
    content: '✨';
    color: var(--mahalaxmi-gold);
    margin-right: 0.5rem;
}

.mahalaxmi-pattern::after {
    content: '✨';
    color: var(--mahalaxmi-gold);
    margin-left: 0.5rem;
}

/* Natural Green Accents */
.mahalaxmi-green-accent {
    color: var(--mahalaxmi-green);
}

.mahalaxmi-leaf::before {
    content: '🍃';
    color: var(--mahalaxmi-green);
    margin-right: 0.5rem;
}

.mahalaxmi-leaf::after {
    content: '🍃';
    color: var(--mahalaxmi-green);
    margin-left: 0.5rem;
}

/* Section Color Variations */
.mahalaxmi-warm-section {
    background: var(--mahalaxmi-bg-secondary);
    padding: 2rem 0;
}

.mahalaxmi-cream-section {
    background: var(--mahalaxmi-bg-accent);
    padding: 2rem 0;
}

/* Different Section Backgrounds */
.section-purple {
    background: linear-gradient(135deg, var(--mahalaxmi-purple) 0%, var(--mahalaxmi-purple-light) 100%);
    color: var(--mahalaxmi-white);
    padding: 3rem 0;
}

.section-gold {
    background: linear-gradient(135deg, var(--mahalaxmi-gold-light) 0%, var(--mahalaxmi-cream) 100%);
    color: var(--mahalaxmi-text-primary);
    padding: 3rem 0;
}

.section-beige {
    background: var(--mahalaxmi-bg-secondary);
    color: var(--mahalaxmi-text-primary);
    padding: 3rem 0;
}

.section-cream {
    background: var(--mahalaxmi-bg-accent);
    color: var(--mahalaxmi-text-primary);
    padding: 3rem 0;
}

.section-white {
    background: var(--mahalaxmi-white);
    color: var(--mahalaxmi-text-primary);
    padding: 3rem 0;
    box-shadow: 0 2px 10px rgba(74, 14, 78, 0.1);
}

.section-gradient {
    background: linear-gradient(135deg, var(--mahalaxmi-purple-light) 0%, var(--mahalaxmi-gold-light) 50%, var(--mahalaxmi-cream) 100%);
    color: var(--mahalaxmi-text-primary);
    padding: 3rem 0;
}

/* Section-specific styling */
.section-purple .section-title {
    color: var(--mahalaxmi-white);
    background: none;
    -webkit-text-fill-color: var(--mahalaxmi-white);
}

.section-purple .section-title::after {
    background: linear-gradient(90deg, var(--mahalaxmi-gold) 0%, var(--mahalaxmi-gold-bright) 100%);
}

.section-gold .section-title {
    color: var(--mahalaxmi-purple);
    background: none;
    -webkit-text-fill-color: var(--mahalaxmi-purple);
}

.section-gold .section-title::after {
    background: linear-gradient(90deg, var(--mahalaxmi-purple) 0%, var(--mahalaxmi-purple-light) 100%);
}

.section-beige .section-title {
    background: linear-gradient(135deg, var(--mahalaxmi-purple) 0%, var(--mahalaxmi-gold) 50%, var(--mahalaxmi-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-cream .section-title {
    background: linear-gradient(135deg, var(--mahalaxmi-purple) 0%, var(--mahalaxmi-gold) 50%, var(--mahalaxmi-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-white .section-title {
    background: linear-gradient(135deg, var(--mahalaxmi-purple) 0%, var(--mahalaxmi-gold) 50%, var(--mahalaxmi-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-gradient .section-title {
    color: var(--mahalaxmi-purple);
    background: none;
    -webkit-text-fill-color: var(--mahalaxmi-purple);
}

.section-gradient .section-title::after {
    background: linear-gradient(90deg, var(--mahalaxmi-gold) 0%, var(--mahalaxmi-gold-bright) 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .tanishq-search-container {
        border-radius: 20px;
    }
    
    .category-card-modern {
        border-radius: 12px 12px 0 0;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .mahalaxmi-accent {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}
