/* ========== CSS RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #374151;
    background: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========== HEADER STYLES ========== */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2563eb;
    margin: 0;
    text-decoration: none;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
}

nav ul li a:hover {
    color: #2563eb;
    background: #f3f4f6;
}

nav ul li a.active {
    color: #2563eb;
    background: #eff6ff;
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-actions a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.header-actions a:hover {
    color: #2563eb;
    background: #f3f4f6;
}

.login, .register {
    color: #374151;
    font-weight: 500;
}

.login:hover, .register:hover {
    color: #2563eb;
}

.cart {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.cart:hover {
    background: #e5e7eb;
}

.cart-count {
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========== HERO BANNER ========== */
.hero-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: white;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.1) 0%, 
        rgba(118, 75, 162, 0.1) 50%,
        rgba(102, 126, 234, 0.1) 100%);
    z-index: 1;
}

.floating-elements, .dot-pattern {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

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

.hero-text-container {
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #667eea;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.1rem;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-text {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ========== SECTIONS ========== */
.categories, .why-us, .featured-products, .featured-section, .testimonials, .about-us {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.view-all-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.view-all-link:hover {
    color: #764ba2;
}

/* ========== CATEGORIES ========== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-item {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.category-link {
    text-decoration: none;
    color: inherit;
}

.category-image {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.category-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.category-item p {
    color: #64748b;
    font-size: 0.9rem;
}

.coming-soon {
    opacity: 0.7;
    position: relative;
}

.coming-soon-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #fbbf24;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ========== MODERN COMING SOON CENTER ========== */
.modern-coming-soon-center {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;
    padding: 3rem 0;
    width: 100%;
}

.coming-soon-modern {
    background: var(--card-bg, #fff);
    border-radius: 16px;
    padding: 2.5rem 3rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    max-width: 800px;
    width: 100%;
    position: relative;
    border-left: 4px solid #667eea;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0 auto;
    transition: all 0.3s;
}

.coming-soon-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.coming-soon-icon {
    flex-shrink: 0;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    position: relative;
    animation: iconFloat 3s ease-in-out infinite;
}

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

.main-emoji {
    color: white;
}

.coming-soon-content {
    flex: 1;
    text-align: left;
}

.coming-soon-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.coming-soon-content p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Alternative layouts for different sections */
.featured-section .coming-soon-modern {
    border-left-color: #10b981;
}

.featured-section .icon-circle {
    background: linear-gradient(135deg, #10b981, #059669);
}

.testimonials .coming-soon-modern {
    border-left-color: #f59e0b;
}

.testimonials .icon-circle {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* ========== WHY US ========== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-item {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.why-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.8rem;
}

.why-item p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.why-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 2px solid #667eea;
    border-radius: 8px;
    transition: all 0.3s;
}

.why-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* ========== ABOUT US ========== */
/* ========== ABOUT US SIMPLE LAYOUT ========== */
.about-us {
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    padding: 5rem 0;
    position: relative;
}

.about-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

/* Main content layout - no grid */
.about-main-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* About story section */
.about-story {
    text-align: center;
    margin-bottom: 2rem;
}

/* Simple about description */
.about-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #64748b;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

/* Mission box */
.about-mission-box {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.mission-icon {
    font-size: 3rem;
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mission-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.premium {
    position: relative;
}

.section-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-icon {
    font-size: 1rem;
}

.badge-text {
    font-weight: 600;
}

/* ========== FOOTER ========== */
footer {
    background: #1a202c;
    color: #e5e7eb;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #667eea;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .coming-soon-modern {
        max-width: 700px;
        padding: 2rem 2.5rem;
        gap: 1.8rem;
    }
    
    .icon-circle {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .coming-soon-content h3 {
        font-size: 1.4rem;
    }
    
    .coming-soon-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-btn-group {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .categories-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .modern-coming-soon-center {
        padding: 2rem 1rem;
    }
    
    .coming-soon-modern {
        padding: 1.5rem 2rem;
        gap: 1.5rem;
        margin: 0 1rem;
        max-width: none;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .coming-soon-content h3 {
        font-size: 1.2rem;
    }
    
    .coming-soon-content p {
        font-size: 0.95rem;
    }
    
    .dark-mode-toggle {
        top: 100px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .coming-soon-modern {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .coming-soon-content {
        text-align: center;
    }
    
    .dark-mode-toggle {
        top: 80px;
        right: 15px;
        padding: 3px;
    }
    
    .toggle-switch {
        width: 50px;
        height: 25px;
    }
    
    .toggle-slider {
        width: 19px;
        height: 19px;
        font-size: 10px;
    }
    
    .dark-mode .toggle-slider {
        transform: translateX(25px);
    }
}

/* ========== DARK MODE STYLES ========== */
.dark-mode body {
    background: #0f172a;
    color: #e2e8f0;
}

.dark-mode header {
    background: rgba(15, 23, 42, 0.95);
    border-bottom-color: #334155;
}

.dark-mode .logo {
    color: #60a5fa;
}

.dark-mode nav ul li a {
    color: #cbd5e1;
}

.dark-mode nav ul li a:hover {
    color: #60a5fa;
    background: #1e293b;
}

.dark-mode nav ul li a.active {
    color: #60a5fa;
    background: #1e293b;
}

.dark-mode .header-actions a {
    color: #cbd5e1;
}

.dark-mode .header-actions a:hover {
    color: #60a5fa;
    background: #1e293b;
}

.dark-mode .cart {
    background: #1e293b;
}

.dark-mode .cart:hover {
    background: #334155;
}

[data-theme="dark"] .why-us {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%) !important;
}

[data-theme="dark"] .why-us::before {
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%) !important;
}

[data-theme="dark"] .why-us h2 {
    color: #e2e8f0 !important;
}

[data-theme="dark"] .why-item {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%) !important;
    border-color: rgba(102, 126, 234, 0.2) !important;
    color: #e2e8f0 !important;
}

[data-theme="dark"] .why-item:hover {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 1) 100%) !important;
    border-color: rgba(102, 126, 234, 0.4) !important;
    box-shadow: 
        0 15px 50px rgba(0,0,0,0.3),
        0 8px 30px rgba(102, 126, 234, 0.3) !important;
}

[data-theme="dark"] .why-icon-container {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4) !important;
}

[data-theme="dark"] .why-item h3 {
    color: #f1f5f9 !important;
}

[data-theme="dark"] .why-item p {
    color: #cbd5e1 !important;
}

[data-theme="dark"] .why-item h3 {
    color: #f1f5f9 !important;
}

[data-theme="dark"] .why-item p {
    color: #cbd5e1 !important;
}

[data-theme="dark"] .why-link {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2)) !important;
    border-color: rgba(102, 126, 234, 0.3) !important;
    color: #a5b4fc !important;
}

[data-theme="dark"] .why-link:hover {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    color: #ffffff !important;
}

.dark-mode .category-item,
.dark-mode .why-item {
    background: #1e293b !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
}

.dark-mode .category-item h3,
.dark-mode .why-item h3,
.dark-mode .coming-soon-content h3 {
    color: #f1f5f9;
}

.dark-mode .coming-soon-content p {
    color: #cbd5e1 !important;
}

.dark-mode .section-header h2,
.dark-mode .about-text h2 {
    color: #f1f5f9;
}

.dark-mode .about-mission {
    background: linear-gradient(135deg, #1e40af, #3730a3);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.dark-mode .about-description {
    color: #e2e8f0 !important;
}

.dark-mode .about-description strong {
    color: #ffffff !important;
    font-weight: 700;
}

[data-theme="dark"] .featured-products,
[data-theme="dark"] .featured-section {
    background: #1a1a2e !important;
}

[data-theme="dark"] .featured-products .section-header h2,
[data-theme="dark"] .featured-section .section-header h2 {
    color: #e2e8f0 !important;
}

[data-theme="dark"] .product-card {
    background: rgba(26, 26, 46, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #e2e8f0 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}

[data-theme="dark"] .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2) !important;
    border-color: rgba(102, 126, 234, 0.4) !important;
}

[data-theme="dark"] footer {
    background: #1a1a2e !important;
}

/* Dark mode for About Us section */
[data-theme="dark"] .about-us {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
}

[data-theme="dark"] .about-text h2 {
    color: #e2e8f0 !important;
}

[data-theme="dark"] .about-text .highlight {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}

[data-theme="dark"] .about-description {
    color: #cbd5e1 !important;
}

[data-theme="dark"] .about-description strong {
    color: #e2e8f0 !important;
}

[data-theme="dark"] .about-mission {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%) !important;
    color: #ffffff !important;
}

[data-theme="dark"] .section-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%) !important;
    color: white !important;
}

[data-theme="dark"] .feature-item.premium {
    background: var(--card-bg, #ffffff) !important;
    border: 1px solid #334155 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .feature-content h4 {
    color: #1f2937 !important;
}

[data-theme="dark"] .feature-content p {
    color: #4b5563 !important;
}
/* ===== FULL CSS HALAMAN BERANDA ARDANY STORE ===== */

/* ========== RESET & BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #374151;
    background: #f8f9fa;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== HEADER & NAVIGATION ========== */
header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e7eb;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2563eb;
    margin: 0;
    text-decoration: none;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
}

nav ul li a:hover {
    color: #2563eb;
    background: #f3f4f6;
}

nav ul li a.active {
    color: #2563eb;
    background: #eff6ff;
    font-weight: 600;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: #374151;
    border-radius: 2px;
    transition: all 0.3s;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-actions a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.header-actions a:hover {
    color: #2563eb;
    background: #f3f4f6;
}

.cart {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.cart:hover {
    background: #e5e7eb;
}

.cart-count {
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========== MODERN COMING SOON CENTER ========== */

.modern-coming-soon-center {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;
    padding: 3rem 0;
    width: 100%;
}

.coming-soon-modern {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 3rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    max-width: 800px;
    width: 100%;
    position: relative;
    border-left: 4px solid #667eea;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0 auto;
}

.coming-soon-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.coming-soon-icon {
    flex-shrink: 0;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    position: relative;
    animation: iconFloat 3s ease-in-out infinite;
}

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

.icon-ring {
    display: none;
}

.coming-soon-content {
    flex: 1;
    text-align: left;
}

.coming-soon-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.coming-soon-content p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.coming-features-modern,
.coming-progress {
    display: none;
}

.testimonials .coming-soon-modern {
    border-left-color: #f59e0b;
}

.testimonials .icon-circle {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .coming-soon-modern {
        max-width: 700px;
        padding: 2rem 2.5rem;
        gap: 1.8rem;
    }
    
    .icon-circle {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .coming-soon-content h3 {
        font-size: 1.4rem;
    }
    
    .coming-soon-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .modern-coming-soon-center {
        padding: 2rem 1rem;
    }
    
    .coming-soon-modern {
        padding: 1.5rem 2rem;
        gap: 1.5rem;
        margin: 0 1rem;
        max-width: none;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .coming-soon-content h3 {
        font-size: 1.2rem;
    }
    
    .coming-soon-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-modern {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .coming-soon-content {
        text-align: center;
    }
}

/* ========== EXISTING MODERN PRODUCT SECTIONS (REMOVE OLD) ========== */

/* PRODUK REKOMENDASI Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.product-card.featured {
    border: 2px solid #667eea;
    background: linear-gradient(135deg, #f8faff 0%, #fff 100%);
}

.product-image {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.product-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.product-content p {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-price {
    margin-bottom: 1rem;
}

.product-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.product-price .period {
    color: #718096;
    font-size: 0.9rem;
}

.product-features {
    margin-bottom: 1.5rem;
}

.product-features .feature {
    display: block;
    color: #4a5568;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.product-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.featured-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.featured-card.highlight {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.featured-card.highlight .featured-content h3,
.featured-card.highlight .featured-content p,
.featured-card.highlight .stat-number,
.featured-card.highlight .stat-label {
    color: white;
}

.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.featured-icon {
    font-size: 2.5rem;
}

.featured-rating {
    text-align: right;
}

.featured-rating .stars {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.featured-rating .rating-text {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 600;
}

.featured-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.8rem;
}

.featured-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.featured-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.stat-label {
    font-size: 0.8rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.featured-card.highlight .tag {
    background: rgba(255,255,255,0.2);
    color: white;
}

/* TESTIMONI Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #e2e8f0;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-left-color: #667eea;
}

.testimonial-card.featured {
    border-left-color: #667eea;
    background: linear-gradient(135deg, #f8faff 0%, #fff 100%);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.customer-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0;
}

.customer-info p {
    font-size: 0.8rem;
    color: #718096;
    margin: 0;
}

.testimonial-rating {
    margin-left: auto;
}

.testimonial-content p {
    color: #4a5568;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.verified {
    color: #10b981;
    font-weight: 500;
}

.date {
    color: #9ca3af;
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 16px;
    color: white;
}

.testimonials-stats .stat-item {
    text-align: center;
}

.testimonials-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonials-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== RESPONSIVE DESIGN FOR NEW SECTIONS ========== */
@media (max-width: 768px) {
    .products-grid,
    .featured-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card,
    .featured-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .testimonials-stats .stat-number {
        font-size: 2rem;
    }
}

/* ========== EXISTING FEATURED PRODUCTS ========== */
.hero-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: white;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: visible;
    transform: none !important;
}

/* Override any scroll animations on hero banner */
.hero-banner.scroll-active {
    transform: none !important;
}

.hero-banner[style*="transform"] {
    transform: none !important;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.1) 0%, 
        rgba(118, 75, 162, 0.1) 50%,
        rgba(102, 126, 234, 0.1) 100%);
    z-index: 1;
}

/* Simplified Background Elements */
.hero-banner::before {
    display: none;
}

.hero-banner::after {
    display: none;
}

/* Simplified Floating Elements */
.hero-banner .floating-elements {
    display: none;
}

.hero-banner .floating-elements::before {
    display: none;
}

.hero-banner .floating-elements::after {
    display: none;
}

/* Simplified Dot Pattern */
.hero-banner .dot-pattern {
    display: none;
}

/* Smooth Performance Optimizations */
.hero-banner * {
    will-change: auto;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out both;
}

/* Enhanced Mobile Animations */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        animation: slideInFromTop 0.6s ease-out 0.2s both;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 2rem;
        margin-top: 3rem;
        max-width: 320px;
        padding: 0 1rem;
    }
    
    .feature-card {
        padding: 2.5rem 2rem;
        border-radius: 25px 12px 20px 15px;
        min-width: unset;
        width: 100%;
        transform: perspective(800px) rotateX(0deg) rotateY(0deg);
    }
    
    .feature-card:hover {
        transform: perspective(800px) rotateX(-3deg) rotateY(3deg) translateY(-8px) scale(1.02);
        border-radius: 20px 25px 15px 22px;
    }
    
    .feature-icon {
        font-size: 3rem;
        margin-bottom: 1.2rem;
        transform: perspective(400px) rotateX(0deg) rotateY(0deg);
    }
    
    .feature-card:hover .feature-icon {
        transform: perspective(400px) rotateX(-8deg) rotateY(8deg) scale(1.2) translateZ(15px);
    }
    
    .feature-text {
    font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-desc {
        font-size: 0.9rem;
    }
    
    .hero-banner .floating-elements,
    .hero-banner .dot-pattern {
        display: none;
    }
    
    .btn-primary, .btn-secondary {
        min-width: 150px;
        padding: 1.1rem 2rem;
        font-size: 1rem;
        gap: 0.6rem;
    }
    
    .btn-primary:hover, .btn-secondary:hover {
        transform: translateY(-1px);
    }
    
    .hero-btn-group {
        gap: 1rem;
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 2rem auto 3rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .hero-features {
        max-width: 280px;
        padding: 0 0.5rem;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
        border-radius: 20px 10px 18px 12px;
    }
    
    .feature-card:hover {
        border-radius: 18px 22px 12px 20px;
        transform: perspective(600px) rotateX(-2deg) rotateY(2deg) translateY(-6px) scale(1.01);
    }
    
    .feature-icon {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }
    
    .feature-card:hover .feature-icon {
        transform: perspective(300px) rotateX(-6deg) rotateY(6deg) scale(1.15) translateZ(10px);
    }
    
    .feature-text {
        font-size: 1.1rem;
    }
    
    .feature-desc {
        font-size: 0.85rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-features {
        max-width: 700px;
        gap: 1.8rem;
    }
    
    .feature-card {
        min-width: 160px;
        padding: 2.3rem 1.8rem;
        border-radius: 28px 14px 23px 18px;
    }
    
    .feature-card:hover {
        border-radius: 23px 30px 18px 26px;
    }
}

/* Prefers-reduced-motion support - Light Animations Only */
@media (prefers-reduced-motion: reduce) {
    .hero-banner *,
    .hero-title,
    .highlight,
    .btn-primary,
    .btn-secondary,
    .feature-card {
        animation: none !important;
        transition: opacity 0.2s ease, transform 0.2s ease !important;
    }
    
    .hero-banner::before,
    .hero-banner::after,
    .floating-elements,
    .dot-pattern {
        animation: none !important;
        display: none;
    }
    
    .feature-card:hover {
        transform: translateY(-2px) !important;
    }
    
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: translateY(-2px) !important;
    }
}

.hero-text-container {
    margin-bottom: 3rem;
    animation: slideInFromBottom 1.2s ease-out 0.2s both;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #dbeafe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInFromTop 1s ease-out 0.4s both;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
}

.highlight {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-desc {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.6s both;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-btn-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    margin-top: 2.5rem;
    animation: slideInFromBottom 1s ease-out 0.8s both;
    position: relative;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.3rem 2.8rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    text-align: center;
    backdrop-filter: blur(20px);
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.btn-primary:hover .btn-icon,
.btn-secondary:hover .btn-icon {
    transform: scale(1.1) rotate(-5deg);
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.25);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.4s ease;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(255, 255, 255, 0.1));
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

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

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-4px) scale(1.02);
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(255,255,255,0.2);
}

.hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 1rem 4rem;
    animation: fadeInUp 1.2s ease-out 1s both;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hero-features::-webkit-scrollbar {
    display: none;
}

.feature-card {
    background: radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    padding: 1.2rem 1.8rem;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(25px) saturate(150%);
    position: relative;
    cursor: pointer;
    min-width: 220px;
    flex: 1;
    max-width: 260px;
    height: 140px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.12),
        0 5px 15px rgba(255, 255, 255, 0.1) inset,
        0 1px 3px rgba(255, 255, 255, 0.3) inset;
    overflow: hidden;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.2) 25%,
        rgba(255, 255, 255, 0.3) 75%,
        rgba(255, 255, 255, 0.4) 100%);
    border-radius: 53px;
    z-index: -1;
    opacity: 0;
    transition: all 0.6s ease;
    filter: blur(8px);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse at 30% 30%, 
        rgba(255, 255, 255, 0.15), 
        rgba(255, 255, 255, 0.05),
        transparent 70%);
    border-radius: 40px;
    opacity: 0.7;
    transition: all 0.6s ease;
    z-index: 1;
}

.feature-card:hover::before {
    opacity: 1;
    filter: blur(4px);
    animation: liquidFlow 3s ease-in-out infinite;
}

.feature-card:hover::after {
    transform: scale(1.1) rotate(10deg);
    opacity: 1;
    border-radius: 50px;
}

.feature-card:hover {
    background: radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.08));
    transform: perspective(1000px) rotateX(-2deg) rotateY(2deg) translateY(-15px) scale(1.02);
    border-radius: 60px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.18),
        0 10px 30px rgba(255, 255, 255, 0.15) inset,
        0 2px 8px rgba(255, 255, 255, 0.4) inset;
    border-color: rgba(255, 255, 255, 0.3);
    z-index: 10;
}

@keyframes liquidFlow {
    0%, 100% {
        border-radius: 53px;
        transform: scale(1) rotate(0deg);
    }
    25% {
        border-radius: 60px;
        transform: scale(1.02) rotate(2deg);
    }
    50% {
        border-radius: 45px;
        transform: scale(1.01) rotate(-1deg);
    }
    75% {
        border-radius: 55px;
        transform: scale(1.03) rotate(1deg);
    }
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    display: block;
    line-height: 1;
    position: relative;
    z-index: 5;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4));
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    transform: perspective(500px) rotateX(0deg) rotateY(0deg);
}

/* Dark mode icon improvements */
[data-theme="dark"] .feature-icon {
    color: #ffffff;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.7));
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* Light mode icon improvements */
[data-theme="light"] .feature-icon {
    color: #4f46e5;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.3));
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(ellipse at center, 
        rgba(255, 255, 255, 0.2) 0%,
        rgba(102, 126, 234, 0.1) 40%,
        transparent 70%);
    border-radius: 50% 30% 60% 40%;
    z-index: -1;
    opacity: 0;
    transition: all 0.8s ease;
    animation: iconFloat 4s ease-in-out infinite;
}

.feature-card:hover .feature-icon {
    transform: perspective(500px) rotateX(-5deg) rotateY(5deg) scale(1.1) translateZ(10px);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4));
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
    transform: scale(1.2) rotate(15deg);
    border-radius: 50px;
}

@keyframes iconFloat {
    0%, 100% {
        border-radius: 50px;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 60px;
        transform: rotate(5deg) scale(1.05);
    }
    50% {
        border-radius: 40px;
        transform: rotate(-3deg) scale(0.98);
    }
    75% {
        border-radius: 55px;
        transform: rotate(7deg) scale(1.02);
    }
}

.feature-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0 0 0.5rem 0;
    position: relative;
    z-index: 5;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
    transition: all 0.6s ease;
}

/* Dark mode card improvements */
[data-theme="dark"] .feature-card {
    background: radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .feature-card:hover {
    background: radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    border-color: rgba(255, 255, 255, 0.3);
}

/* Light mode card improvements */
[data-theme="light"] .feature-card {
    background: radial-gradient(ellipse at top left, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.02));
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px) saturate(120%);
}

[data-theme="light"] .feature-card:hover {
    background: radial-gradient(ellipse at top left, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.03));
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.1),
        0 10px 30px rgba(255, 255, 255, 0.8) inset,
        0 2px 8px rgba(255, 255, 255, 0.6) inset;
}

/* Dark mode text improvements */
[data-theme="dark"] .feature-text {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* Light mode text improvements */
[data-theme="light"] .feature-text {
    color: #1f2937;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.feature-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent);
    border-radius: 50px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateX(-50%);
}

.feature-card:hover .feature-text::after {
    width: 80%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.feature-desc {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin: 0;
    position: relative;
    z-index: 5;
    opacity: 0.9;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
    transition: all 0.6s ease;
}

/* Dark mode description text improvements */
[data-theme="dark"] .feature-desc {
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

/* Light mode description improvements */
[data-theme="light"] .feature-desc {
    color: rgba(31, 41, 55, 0.9);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Light mode hover effects */
[data-theme="light"] .feature-card:hover .feature-text {
    color: #1f2937;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.9);
}

[data-theme="light"] .feature-card:hover .feature-desc {
    color: rgba(31, 41, 55, 0.95);
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .feature-card:hover .feature-icon {
    color: #4f46e5;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.9);
}

.feature-card:hover .feature-text {
    transform: translateY(-1px);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    color: #ffffff;
}

.feature-card:hover .feature-desc {
    opacity: 1;
    transform: translateY(-1px);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* ========== CATEGORIES SECTION ========== */
.categories {
    min-height: 100vh;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
}

.view-all-link {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 2px solid #4f46e5;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    background: #4f46e5;
    color: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.category-item {
    background: white;
    border-radius: 15px;
    padding: 1.8rem 1.2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

.category-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.15);
    border-color: #4f46e5;
}

.category-image {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    line-height: 1;
}

.category-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin: 0;
    text-align: center;
    line-height: 1.3;
}

/* Category Link Styling */
.category-link {
    text-decoration: none;
    color: inherit;
}

.category-link:hover {
    text-decoration: none;
    color: inherit;
}

.category-link h4 {
    color: #374151;
    transition: color 0.3s ease;
}

.category-link:hover h4 {
    color: #4f46e5;
}

/* Coming Soon Category Items */
.category-item.coming-soon {
    position: relative;
    opacity: 0.8;
    cursor: not-allowed;
}

.category-item.coming-soon:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-color: #e5e7eb;
}

.category-item.coming-soon .category-image,
.category-item.coming-soon h4 {
    opacity: 0.6;
}

.coming-soon-label {
    position: absolute;
    top: 6px;
    right: 6px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
}

/* ========== WHY US SECTION ========== */
.why-us {
    min-height: 100vh;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #f8fafc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    display: none;
}

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

.why-us .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.why-us h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: #1f2937;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.why-us h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: 
        0 6px 25px rgba(0,0,0,0.06),
        0 3px 12px rgba(102, 126, 234, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 200px;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 40px rgba(0,0,0,0.12),
        0 6px 25px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.25);
}

.why-item:hover::before {
    opacity: 1;
}

.why-icon-container {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.why-icon {
    font-size: 1.5rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.why-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.why-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #1f2937;
}

.why-item p {
    color: #64748b;
    line-height: 1.4;
    font-size: 0.85rem;
    margin: 0;
    font-weight: 400;
}

.why-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 2px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-link::after {
    content: '→';
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.why-link:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.why-link:hover::after {
    transform: translateX(4px);
}

/* ========== PRODUCTS SECTION ========== */
.featured-products {
    min-height: 100vh;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-section {
    min-height: 100vh;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-products .container,
.featured-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.featured-products .section-header h2,
.about-us .section-header h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.15);
    border-color: #4f46e5;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ef4444;
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.product-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.product-desc {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.product-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price-old {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 0.9rem;
}

.price-new {
    font-size: 1.2rem;
    font-weight: 700;
    color: #059669;
}

.price-sharing {
    color: #059669;
    font-size: 0.9rem;
    font-weight: 600;
}

.price-private {
    color: #dc2626;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-stock, .product-rating {
    display: inline-block;
    margin: 0.2rem;
    font-size: 0.8rem;
    color: #6b7280;
}

.add-to-cart, .product-btn {
    background: #4f46e5;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: 100%;
}

.add-to-cart:hover, .product-btn:hover {
    background: #4338ca;
    transform: translateY(-2px);
}

.products-cta {
    text-align: center;
    margin-top: 2rem;
}

.view-all-btn {
    background: #2563eb;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* ========== FEATURED PRODUCTS SECTION ========== */
#featured.about-us {
    min-height: 100vh;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

#featured.about-us .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== ABOUT SECTION - REDESIGNED ========== */
#about.about-us {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

#about.about-us .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.badge-icon {
    font-size: 1rem;
}

/* Text Content */
.about-text h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-text .highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    font-size: 1.2rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-mission {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 3rem;
    font-style: italic;
}

/* Features Grid - Premium Style */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.feature-item.premium {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.feature-item.premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon-wrapper {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-wrapper .feature-icon {
    font-size: 1.5rem;
    color: #667eea;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.5;
    margin: 0;
}

/* Stats Section - Enhanced */
.about-stats {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.stats-header {
    text-align: center;
    margin-bottom: 3rem;
}

.stats-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.stats-header p {
    font-size: 1.1rem;
    color: #6b7280;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card.premium {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.stat-card.premium:hover::before {
    animation: shimmer 0.6s ease-out;
}

.stat-card.premium:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-description {
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Shimmer Animation */
@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
    min-height: 100vh;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.testimonials .section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    margin: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.15);
    border-color: #4f46e5;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #4f46e5;
    font-family: serif;
    line-height: 1;
}

.testimonial-rating {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.testimonial-author strong {
    color: #1f2937;
    font-weight: 600;
    font-size: 1rem;
    display: block;
}

.testimonial-author span {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* ========== FOOTER ========== */
footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-contact {
    margin-top: 1rem;
}

.footer-contact .contact-item {
    margin-bottom: 0.75rem;
    color: #e5e7eb;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #2563eb;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content p {
    color: #9ca3af;
    margin: 0;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-social span {
    color: #9ca3af;
    font-size: 0.9rem;
}

.social-link {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.social-link:hover {
    color: #2563eb;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-text h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Header */
    header .container {
        height: 60px;
    }
    
    .header-left {
        gap: 1rem;
    }
    
    nav ul {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    /* Hero */
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    .hero-btn-group {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    /* Categories */
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
    }
    
    .category-item {
        padding: 1.5rem 1rem;
        min-height: 120px;
    }
    
    .category-image {
        font-size: 2.5rem;
    }
    
    .category-item h4 {
        font-size: 0.9rem;
    }
    
    /* Why Us */
    .why-us h2 {
        font-size: 2rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* About - New Design */
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 1.1rem;
    }
    
    .about-mission {
        font-size: 1rem;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item.premium {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stats-header h3 {
        font-size: 1.5rem;
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    /* Categories */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .category-item {
        padding: 1rem;
        min-height: 100px;
    }
    
    .category-image {
        font-size: 2rem;
    }
    
    /* About - Small Screens */
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .about-mission {
        font-size: 0.95rem;
    }
    
    .feature-item.premium {
        padding: 1.2rem;
        flex-direction: column;
        text-align: center;
    }
    
    .about-stats {
        padding: 2rem 1.5rem;
    }
    
    .stat-card.premium {
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-card::before {
        font-size: 3rem;
        top: -5px;
        left: 15px;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
    opacity: 0;
    transform: translateY(30px);
}
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

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

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

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

.slide-up {
    animation: slideInUp 0.5s ease-out;
}

.bounce {
    animation: bounce 2s infinite;
}

/* Enhanced Hero Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px) translateZ(0);
    }
    to {
    opacity: 1;
        transform: translateY(0) translateZ(50px);
    }
}

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

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

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

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

/* ========== MODERN COMING SOON DESIGN ========== */
.modern-coming-soon {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.coming-soon-card {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 80px 60px;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.05) 0%, 
        rgba(118, 75, 162, 0.05) 50%, 
        rgba(102, 126, 234, 0.05) 100%);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 40px 80px -20px rgba(102, 126, 234, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

.coming-soon-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 
        0 60px 120px -20px rgba(102, 126, 234, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.card-bg-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 45deg,
        transparent 0deg,
        rgba(102, 126, 234, 0.1) 90deg,
        transparent 180deg,
        rgba(118, 75, 162, 0.1) 270deg,
        transparent 360deg
    );
    animation: rotateBackground 20s linear infinite;
    z-index: 0;
}

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

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: floatAround 8s ease-in-out infinite;
}

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

.element-2 {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 4s;
}

.element-4 {
    bottom: 40%;
    right: 10%;
    animation-delay: 6s;
}

@keyframes floatAround {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-40px) translateX(-10px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-20px) translateX(-25px) rotate(270deg);
        opacity: 0.5;
    }
}

.coming-soon-main {
    position: relative;
    z-index: 2;
    text-align: center;
}

.icon-showcase {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.main-icon {
    font-size: 5rem;
    position: relative;
    z-index: 3;
    display: inline-block;
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    color: white;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 30px 60px rgba(102, 126, 234, 0.5);
    }
}

.icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 3px solid rgba(102, 126, 234, 0.2);
    border-radius: 50%;
    animation: ringRotate 4s linear infinite;
}

.icon-ring::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
}

@keyframes ringRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.coming-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.coming-desc {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coming-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #667eea;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

.countdown-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.countdown-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
    background-size: 200% 100%;
    border-radius: 10px;
    width: 75%;
    animation: progressFlow 2s ease-in-out infinite;
}

@keyframes progressFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Dark Mode Support */
.dark-theme .coming-soon-card {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(0, 0, 0, 0.3) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.dark-theme .coming-desc {
    color: #ccc;
}

.dark-theme .countdown-wrapper {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-coming-soon {
        padding: 60px 0;
    }
    
    .coming-soon-card {
        margin: 0 20px;
        padding: 50px 30px;
    }
    
    .main-icon {
        font-size: 3.5rem;
        padding: 20px;
    }
    
    .icon-ring {
        width: 150px;
        height: 150px;
    }
    
    .coming-title {
        font-size: 2.5rem;
    }
    
    .coming-desc {
        font-size: 1.1rem;
    }
    
    .coming-features {
        gap: 10px;
    }
    
    .feature-tag {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .float-element {
        font-size: 1.5rem;
    }
}
