/* Zerogas - Modern CSS Styles */

/* Custom Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0,-4px,0);
    }
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #f9fafb;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark {
    background-color: #111827;
    color: #f3f4f6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #3b82f6, #8b5cf6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #2563eb, #7c3aed);
}

body.dark ::-webkit-scrollbar-track {
    background: #1f2937;
}

body.dark ::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #1d4ed8, #6b21a8);
}

/* Header Styles */
header {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

/* Navigation Styles */
.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

/* Hamburger Menu Animation */
.hamburger-line {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

#mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Off-Canvas Menu Styles */
#offcanvas-overlay {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#offcanvas-menu {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

#offcanvas-menu.show {
    transform: translateX(0);
}

#offcanvas-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Modern Hero Section Styles */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Gradient Animation */
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.animate-gradient {
    background-size: 200% 200%;
    animation: gradient 3s ease infinite;
}

/* Floating Elements Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

@keyframes floatReverse {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(15px) rotate(-120deg);
    }
    66% {
        transform: translateY(-10px) rotate(-240deg);
    }
}

/* Modern Button Hover Effects */
.hero-section .group:hover {
    transform: translateY(-2px);
}

/* Stats Hover Animation */
.hero-section .group:hover .text-3xl,
.hero-section .group:hover .text-4xl {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Scroll Indicator Animation */
@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.hero-section .animate-bounce {
    animation: scrollBounce 2s infinite;
}

/* Backdrop Blur Support */
@supports (backdrop-filter: blur(10px)) {
    .hero-section .backdrop-blur-md {
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
}

/* Glass Morphism Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Modern Shadow Effects */
.modern-shadow {
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.modern-shadow-lg {
    box-shadow: 
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.modern-shadow-xl {
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Text Glow Effect */
.text-glow {
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

/* Pulse Animation for Badge */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(34, 197, 94, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.8);
    }
}

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Card Styles */
.card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

body.dark .card {
    background: rgba(31, 41, 55, 0.95);
    border: 1px solid rgba(75, 85, 99, 0.2);
}

body.dark .card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.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.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    padding: 10px 22px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Form Styles */
.form-input {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: rgba(255, 255, 255, 1);
}

body.dark .form-input {
    background: rgba(31, 41, 55, 0.9);
    border-color: #4b5563;
    color: #f3f4f6;
}

body.dark .form-input:focus {
    background: rgba(31, 41, 55, 1);
    border-color: #3b82f6;
}

/* Modal Styles */
.modal {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
    opacity: 1;
}

body.dark .modal-content {
    background: rgba(31, 41, 55, 0.95);
    border: 1px solid rgba(75, 85, 99, 0.2);
}

/* Modal Animation */
.modal .bg-white,
.modal .dark\\:bg-gray-800 {
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.show .bg-white,
.modal.show .dark\\:bg-gray-800 {
    transform: scale(1);
    opacity: 1;
}

/* Modern OwlCarousel Custom Styles */
.products-carousel-modern .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
}

.products-carousel-modern .owl-nav button {
    position: absolute;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    color: #3b82f6 !important;
    border-radius: 50% !important;
    width: 60px !important;
    height: 60px !important;
    font-size: 20px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(59, 130, 246, 0.2) !important;
    pointer-events: auto !important;
}

.products-carousel-modern .owl-nav button.owl-prev {
    left: -30px;
}

.products-carousel-modern .owl-nav button.owl-next {
    right: -30px;
}

.products-carousel-modern .owl-nav button:hover {
    background: rgba(59, 130, 246, 0.9) !important;
    color: white !important;
    transform: scale(1.1) !important;
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.3) !important;
}

.products-carousel-modern .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.products-carousel-modern .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 8px;
}

.products-carousel-modern .owl-dots .owl-dot span {
    background: rgba(59, 130, 246, 0.3) !important;
    width: 14px !important;
    height: 14px !important;
    border-radius: 50% !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 2px solid transparent !important;
}

.products-carousel-modern .owl-dots .owl-dot.active span {
    background: #3b82f6 !important;
    transform: scale(1.3) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1) !important;
}

.products-carousel-modern .owl-dots .owl-dot:hover span {
    background: rgba(59, 130, 246, 0.6) !important;
    transform: scale(1.1) !important;
}

/* Dark Mode Carousel Styles */
body.dark .products-carousel-modern .owl-nav button {
    background: rgba(31, 41, 55, 0.9) !important;
    color: #60a5fa !important;
    border-color: rgba(96, 165, 250, 0.3) !important;
}

body.dark .products-carousel-modern .owl-nav button:hover {
    background: rgba(59, 130, 246, 0.9) !important;
    color: white !important;
}

/* Responsive Carousel Navigation */
@media (max-width: 768px) {
    .products-carousel-modern .owl-nav button {
        width: 50px !important;
        height: 50px !important;
        font-size: 18px !important;
    }
    
    .products-carousel-modern .owl-nav button.owl-prev {
        left: -25px;
    }
    
    .products-carousel-modern .owl-nav button.owl-next {
        right: -25px;
    }
}

@media (max-width: 480px) {
    .products-carousel-modern .owl-nav {
        display: none !important;
    }
    
    .products-carousel-modern .owl-dots {
        margin-top: 20px;
    }
}

/* Carousel Item Spacing */
.products-carousel-modern .owl-item {
    padding: 0 10px;
}

/* Carousel Animation */
.products-carousel-modern .owl-item {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.products-carousel-modern .owl-item.active {
    opacity: 1;
}

/* Legacy OwlCarousel Styles for other carousels */
.owl-nav button {
    background: rgba(59, 130, 246, 0.8) !important;
    color: white !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    font-size: 18px !important;
    transition: all 0.3s ease !important;
}

.owl-nav button:hover {
    background: rgba(59, 130, 246, 1) !important;
    transform: scale(1.1) !important;
}

.owl-dots .owl-dot span {
    background: rgba(59, 130, 246, 0.3) !important;
    width: 12px !important;
    height: 12px !important;
    margin: 0 5px !important;
    transition: all 0.3s ease !important;
}

.owl-dots .owl-dot.active span {
    background: #3b82f6 !important;
    transform: scale(1.2) !important;
}

.owl-dots .owl-dot:hover span {
    background: rgba(59, 130, 246, 0.6) !important;
}

/* Testimonial Styles */
.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

body.dark .testimonial-card {
    background: rgba(31, 41, 55, 0.9);
    border: 1px solid rgba(75, 85, 99, 0.2);
}

/* Service Card Styles */
.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-card .group:hover .w-20 {
    transform: scale(1.1) rotate(5deg);
}

.service-card .group:hover .text-3xl {
    animation: pulse 1s ease-in-out infinite;
}

body.dark .service-card {
    background: rgba(31, 41, 55, 0.9);
    border: 1px solid rgba(75, 85, 99, 0.2);
}

/* Service Process Styles */
.service-process-step {
    position: relative;
}

.service-process-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -2rem;
    width: 4rem;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transform: translateY(-50%);
    opacity: 0.3;
}

.service-process-step:last-child::after {
    display: none;
}

@media (max-width: 768px) {
    .service-process-step::after {
        display: none;
    }
}

/* Expert Team Styles */
.expert-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.expert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.expert-card:hover::before {
    opacity: 1;
}

.expert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.expert-card .w-20 {
    transition: all 0.3s ease;
}

.expert-card:hover .w-20 {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

body.dark .expert-card {
    background: rgba(31, 41, 55, 0.9);
    border: 1px solid rgba(75, 85, 99, 0.2);
}

/* Service Price Styles */
.service-price {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 12px;
    padding: 0.5rem 1rem;
    display: inline-block;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.service-price::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.5s ease;
}

.service-card:hover .service-price::before {
    left: 100%;
}

/* Service Button Styles */
.service-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-btn::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.5s ease;
}

.service-btn:hover::before {
    left: 100%;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Enhanced Product Card Styles */
.product-card-enhanced {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.product-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card-enhanced:hover::before {
    opacity: 1;
}

.product-card-enhanced:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(59, 130, 246, 0.15);
}

.product-card-enhanced img {
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-enhanced:hover img {
    transform: scale(1.15);
}

/* Enhanced OwlCarousel Styles */
.products-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.products-carousel .owl-nav button {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(59, 130, 246, 0.2) !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.products-carousel .owl-nav button:hover {
    background: rgba(59, 130, 246, 0.1) !important;
    border-color: rgba(59, 130, 246, 0.4) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.2) !important;
}

.products-carousel .owl-nav .owl-prev {
    left: -25px;
}

.products-carousel .owl-nav .owl-next {
    right: -25px;
}

.products-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.products-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.products-carousel .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease;
}

.products-carousel .owl-dots .owl-dot.active span,
.products-carousel .owl-dots .owl-dot:hover span {
    background: rgba(59, 130, 246, 0.8);
    transform: scale(1.2);
}

/* Dark Mode Support for Products Carousel */
body.dark .products-carousel .owl-nav button {
    background: rgba(31, 41, 55, 0.9) !important;
    color: #60a5fa !important;
    border-color: rgba(96, 165, 250, 0.3) !important;
}

body.dark .products-carousel .owl-nav button:hover {
    background: rgba(59, 130, 246, 0.9) !important;
    color: white !important;
    border-color: rgba(59, 130, 246, 0.6) !important;
}

body.dark .products-carousel .owl-dots .owl-dot span {
    background: rgba(96, 165, 250, 0.3) !important;
}

body.dark .products-carousel .owl-dots .owl-dot.active span,
body.dark .products-carousel .owl-dots .owl-dot:hover span {
    background: rgba(96, 165, 250, 0.8) !important;
}

/* Line clamp utility */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Product Card Hover Effects */
.product-card-modern .group:hover .text-lg {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Line Clamp Utility */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Aspect Ratio Utilities */
.aspect-w-16 {
    position: relative;
    padding-bottom: 75%; /* 16:12 aspect ratio */
}

.aspect-w-16 > * {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* Modern Badge Styles */
.product-badge {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.9), rgba(236, 72, 153, 0.9));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

/* Feature Tags */
.feature-tag {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(34, 197, 94, 0.2);
    transform: scale(1.05);
}

/* Modern Button Styles */
.modern-btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-btn::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.5s ease;
}

.modern-btn:hover::before {
    left: 100%;
}

.modern-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Call to Action Styles */
.cta-section {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.1"><circle cx="30" cy="30" r="2"/></g></svg>');
    animation: float 20s ease-in-out infinite;
}

/* Empty State Styles */
.empty-state {
    background: linear-gradient(135deg, rgba(249, 250, 251, 0.8), rgba(243, 244, 246, 0.8));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 231, 235, 0.5);
}

body.dark .empty-state {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.8));
    border: 1px solid rgba(75, 85, 99, 0.5);
}

/* Stats Hover Animation */
.stats-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stats-item:hover {
    transform: translateY(-4px);
}

.stats-item:hover .text-2xl {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Dark Mode Product Cards */
body.dark .product-card-modern {
    background: rgba(31, 41, 55, 0.95);
    border: 1px solid rgba(75, 85, 99, 0.2);
}

body.dark .product-card-modern:hover {
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(59, 130, 246, 0.2);
}

/* Responsive Product Grid */
@media (max-width: 640px) {
    .product-card-modern {
        margin-bottom: 1rem;
    }
    
    .product-card-modern:hover {
        transform: translateY(-4px) scale(1.01);
    }
}

/* Animation Delays for Staggered Effect */
.product-card-modern:nth-child(1) { animation-delay: 0.1s; }
.product-card-modern:nth-child(2) { animation-delay: 0.2s; }
.product-card-modern:nth-child(3) { animation-delay: 0.3s; }
.product-card-modern:nth-child(4) { animation-delay: 0.4s; }
.product-card-modern:nth-child(5) { animation-delay: 0.5s; }
.product-card-modern:nth-child(6) { animation-delay: 0.6s; }
.product-card-modern:nth-child(7) { animation-delay: 0.7s; }
.product-card-modern:nth-child(8) { animation-delay: 0.8s; }

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    border-top-color: #3b82f6;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
    }
    
    .card {
        margin-bottom: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .form-input {
        padding: 10px 14px;
    }
    
    .modal-content {
        margin: 1rem;
        max-height: 90vh;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 70vh;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .form-input {
        padding: 8px 12px;
    }
}

/* Dark Mode Specific Styles */
body.dark {
    color-scheme: dark;
}

body.dark .text-gray-900 {
    color: #f9fafb !important;
}

body.dark .text-gray-800 {
    color: #f3f4f6 !important;
}

body.dark .text-gray-700 {
    color: #e5e7eb !important;
}

body.dark .text-gray-600 {
    color: #d1d5db !important;
}

body.dark .text-gray-500 {
    color: #9ca3af !important;
}

body.dark .text-gray-400 {
    color: #6b7280 !important;
}

body.dark .text-gray-300 {
    color: #4b5563 !important;
}

body.dark .bg-gray-50 {
    background-color: #1f2937 !important;
}

body.dark .bg-gray-100 {
    background-color: #374151 !important;
}

body.dark .bg-gray-200 {
    background-color: #4b5563 !important;
}

body.dark .border-gray-200 {
    border-color: #4b5563 !important;
}

body.dark .border-gray-300 {
    border-color: #6b7280 !important;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles */
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Notification Styles */
.notification {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.notification.bg-green-500 {
    border-left-color: #10b981;
}

.notification.bg-red-500 {
    border-left-color: #ef4444;
}

.notification.bg-yellow-500 {
    border-left-color: #f59e0b;
}

.notification.bg-blue-500 {
    border-left-color: #3b82f6;
}

body.dark .notification {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .card {
        border: 1px solid #ccc !important;
        box-shadow: none !important;
    }
}
