/* General Styles */
body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background: #f7fafc;
    padding-top: 80px;
}

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

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

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

/* Gradient text */
.gradient-text {
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
/* Enhanced Hero Section */
/* Clean Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    z-index: 1;
}

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

/* Clean Badge */
.hero-badge {
    display: inline-block;
    margin-bottom: 2rem;
}

.badge-text {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

/* Simple Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: #3b82f6;
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    border-radius: 2px;
}

/* Clean Description */
.hero-description {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* Simple Buttons */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-actions .btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-actions .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.hero-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.hero-actions .btn-outline {
    background: transparent;
    color: #3b82f6;
    border-color: #3b82f6;
}

.hero-actions .btn-outline:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

/* Clean Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.hero-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    display: block;
    margin-bottom: 0.5rem;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Hero Image */
.hero-image {
    position: relative;
    z-index: 2;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.image-container:hover .main-image {
    transform: scale(1.05);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

/* Feature Cards */
.feature-card {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #1e293b;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    color: #3b82f6;
    font-size: 1.2rem;
}

.card-1 {
    top: 20%;
    right: -10%;
    animation: float-gentle 3s ease-in-out infinite;
}

.card-2 {
    bottom: 30%;
    left: -10%;
    animation: float-gentle 3s ease-in-out infinite 1s;
}

.card-3 {
    top: 60%;
    right: 10%;
    animation: float-gentle 3s ease-in-out infinite 2s;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .feature-card {
        position: relative;
        margin: 1rem 0;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        margin-bottom: 2rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-stats .stat-number {
        font-size: 2rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.8rem;
    }
    
    .feature-card {
        display: none;
    }
    
    .image-decoration {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-stats .stat-item {
        min-width: 120px;
    }
}

/* Responsive Design for Hero */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .floating-badge {
        display: none;
    }
    
    .hero-image-wrapper {
        margin-top: 3rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Feature Boxes */
.feature-box {
    padding: 2.5rem;
    border-radius: 20px;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.feature-box i {
    margin-bottom: 1.5rem;
    font-size: 3rem;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-icon {
    position: relative;
    display: inline-block;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(102,126,234,0.1), rgba(240,147,251,0.1));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon::before {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(102,126,234,0.2), rgba(240,147,251,0.2));
}

.feature-stats {
    margin-top: 1rem;
}

.feature-stats .badge {
    font-size: 0.8rem;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
}

/* Product Cards */
.card {
    border: none;
    border-radius: 20px;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102,126,234,0.05), rgba(240,147,251,0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

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

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

.card-title {
    font-weight: 700;
    color: #2d3748;
    font-size: 1.1rem;
}

.card-text {
    color: #718096;
    font-weight: 400;
}

/* Buttons */
.btn {
    border-radius: 50px;
    padding: 14px 35px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: none;
    font-size: 0.95rem;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 50%, #2E5F8A 100%);
    color: black !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #357ABD 0%, #2E5F8A 50%, #1E3A5F 100%);
    color: black !important;
}



.btn-warning {
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 50%, #ff9ff3 100%);
    color: black !important;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-warning:hover {
    background: linear-gradient(135deg, #ff9ff3 0%, #feca57 50%, #ff6b6b 100%);
    color: black !important;
}

.btn-success {
    color: black !important;
}

.btn-success:hover {
    color: black !important;
}

.btn-info {
    color: black !important;
}

.btn-info:hover {
    color: black !important;
}

.btn-secondary {
    color: black !important;
}

.btn-secondary:hover {
    color: black !important;
}

.btn-danger {
    color: #FF6B35 !important;
}

.btn-danger:hover {
    color: #FF6B35 !important;
}

.btn-outline-primary {
    border: 2px solid #4A90E2;
    color: #4A90E2;
    background: transparent;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

/* Navigation */
/* Modern Navbar Styles */
.modern-navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
}

.modern-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 0.8rem 0;
}

/* Modern Brand */
.modern-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.modern-brand:hover {
    transform: scale(1.02);
    text-decoration: none;
}

.brand-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.brand-icon i {
    color: white;
    font-size: 1.5rem;
}

.modern-brand:hover .brand-icon {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-main {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: -2px;
}

.brand-sub {
    font-size: 0.9rem;
    font-weight: 600;
    color: #8b949e;
    letter-spacing: 2px;
}

/* Modern Navigation */
.modern-nav {
    gap: 1rem;
}

.modern-link {
    display: flex;
    align-items: center;
    font-weight: 600;
    padding: 12px 20px !important;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #4a5568 !important;
    position: relative;
    text-decoration: none;
    overflow: hidden;
}

.modern-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    transition: all 0.4s ease;
    z-index: -1;
}

.modern-link:hover::before,
.modern-link.active::before {
    left: 0;
}

.modern-link:hover,
.modern-link.active {
    color: #667eea !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    text-decoration: none;
}

.nav-icon {
    margin-right: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.modern-link:hover .nav-icon {
    transform: scale(1.1);
}

/* Modern Buttons */
.modern-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: black;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.modern-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transition: all 0.4s ease;
    z-index: 0;
}

.modern-btn-primary:hover::before {
    left: 0;
}

.modern-btn-primary:hover {
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    text-decoration: none;
}

.modern-btn-outline {
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modern-btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: all 0.4s ease;
    z-index: -1;
}

.modern-btn-outline:hover::before {
    left: 0;
}

.modern-btn-outline:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    text-decoration: none;
}

/* Modern Toggler */
.modern-toggler {
    border: none;
    padding: 8px;
    background: transparent;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.modern-toggler:focus {
    box-shadow: none;
}

.toggler-line {
    display: block;
    width: 25px;
    height: 3px;
    background: #667eea;
    margin: 5px auto;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-toggler:hover .toggler-line {
    background: #764ba2;
}

.modern-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.modern-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
    opacity: 0;
}

.modern-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 0%;
    transition: width 0.1s ease;
    border-radius: 0 3px 3px 0;
}

/* Navbar Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .modern-nav {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(0,0,0,0.1);
    }
    
    .navbar-actions {
        margin-top: 1rem;
        justify-content: center;
    }
    
    .modern-link {
        justify-content: center;
        margin: 0.25rem 0;
    }
    
    .brand-text {
        display: none;
    }
    
    .brand-icon {
        margin-right: 0;
    }
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%) !important;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
}

footer .text-light {
    color: #e2e8f0 !important;
}

footer h5 {
    color: #f7fafc !important;
    font-weight: 700;
}

footer a {
    color: #cbd5e0 !important;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #667eea !important;
    transform: translateX(5px);
}

/* Contact Section */
#contact {
    background: #f8f9fa;
}

#contact i {
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .feature-box {
        margin-bottom: 2rem;
    }
}

/* Product Page Styles */
.filter-sidebar {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.filter-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #667eea;
}

.form-control, .form-select {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Product Details Page */
.product-gallery {
    position: sticky;
    top: 20px;
}

.main-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.thumbnail-images {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #667eea;
}

.product-info {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 2rem;
    color: #e74c3c;
    font-weight: 700;
    margin-bottom: 1rem;
}

.order-form {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    border: 2px solid #e9ecef;
}

.order-form h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Admin Panel Styles */
.admin-sidebar {
    background: #2c3e50;
    min-height: 100vh;
    padding: 2rem 0;
}

.admin-sidebar .nav-link {
    color: #bdc3c7;
    padding: 1rem 1.5rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background: #34495e;
    color: #ecf0f1;
}

.admin-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.stats-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
}

.stats-label {
    color: #7f8c8d;
    font-weight: 500;
}

/* Table Styles */
.table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.table thead {
    background: #667eea;
    color: #2c3e50;
}

.table tbody tr:hover {
    background: #f8f9fa;
}

/* Status Badges */
.badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
}

.badge.bg-warning {
    background: #f39c12 !important;
}

.badge.bg-info {
    background: #3498db !important;
}

.badge.bg-success {
    background: #27ae60 !important;
}

.badge.bg-danger {
    background: #e74c3c !important;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Search and Filter Animations */
.search-results {
    animation: fadeIn 0.5s ease-in-out;
}

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

/* Fix for form elements interaction - Enhanced */
input[type="text"], 
input[type="search"], 
select, 
button, 
.form-control, 
.form-select, 
.btn {
    position: relative !important;
    z-index: 9999 !important;
    pointer-events: auto !important;
    background: white !important;
}

/* Specific fixes for admin forms */
.card-body input,
.card-body select,
.card-body button {
    z-index: 10000 !important;
    pointer-events: auto !important;
}

/* Remove any overlays that might block interaction */
.card::before {
    pointer-events: none !important;
}

/* Ensure form containers don't block interaction */
.form-group, 
.col-md-2, 
.col-md-4, 
.row {
    position: relative;
    z-index: 1;
}

/* Alert Styling for Admin Panel - Hidden by default */
.alert {
    display: none;
    border: none;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

/* Show alerts only when explicitly needed */
.alert.show-alert {
    display: block;
}

.alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: currentColor;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
    border-left: 4px solid #ffc107;
}

.alert-info {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

.alert-light {
    background: linear-gradient(135deg, #fefefe 0%, #f8f9fa 100%);
    color: #6c757d;
    border-left: 4px solid #e9ecef;
}

.alert i {
    margin-right: 8px;
    font-size: 1.1em;
}

.alert .btn-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.2em;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.alert .btn-close:hover {
    opacity: 1;
}

.alert.fade {
    transition: opacity 0.3s ease-in-out;
}

.alert.show {
    opacity: 1;
}

/* Alert animations */
@keyframes slideInDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.alert.alert-dismissible {
    animation: slideInDown 0.5s ease-out;
}

/* Fix for Bootstrap form elements */
.form-control:focus,
.form-select:focus {
    z-index: 10001 !important;
}

/* تنسيقات قسم التواصل معنا - تصميم عصري */
.contact-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

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

.contact-section h4 {
    color: white;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.contact-item {
    position: relative;
    z-index: 2;
}

.contact-item .btn {
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    margin: 10px 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

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

.contact-item .btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 1);
}

.contact-item .btn i {
    font-size: 2.2rem;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.contact-item .btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

.contact-item .btn strong {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: #333;
}

.contact-item .btn small {
    font-size: 0.85rem;
    opacity: 0.8;
    color: #666;
}

/* ألوان مخصصة لكل زر */
.contact-item:nth-child(1) .btn i {
    color: #25D366; /* واتساب */
}

.contact-item:nth-child(2) .btn i {
    color: #007bff; /* هاتف */
}

.contact-item:nth-child(3) .btn i {
    color: #dc3545; /* إيميل */
}

/* تأثير النبضة للأزرار */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(102, 126, 234, 0); }
    100% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0); }
}

.contact-item .btn:focus {
    animation: pulse 1.5s infinite;
}

/* تحسين للشاشات الصغيرة */
@media (max-width: 768px) {
    .contact-section {
        padding: 20px;
        margin: 20px 0;
    }
    
    .contact-item .btn {
        height: 100px;
    }
    
    .contact-item .btn i {
        font-size: 1.8rem;
    }
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5a6fd8;
}

/* تنسيقات قسم من نحن */
.about-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.about-image-container img {
    transition: transform 0.5s ease;
}

.about-image-container:hover img {
    transform: scale(1.05);
}

.about-stat {
    text-align: center;
    padding: 20px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.about-stat:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-5px);
}

/* تنسيقات صورة قطع الغيار الواحدة */
.about-parts-single {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.parts-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.parts-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.parts-image-container img {
    transition: transform 0.4s ease;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.parts-image-container:hover img {
    transform: scale(1.05);
}

.parts-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.parts-image-container:hover .parts-overlay {
    transform: translateY(0);
}

.parts-label {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* تحسينات متجاوبة لصورة قطع الغيار */
@media (max-width: 768px) {
    .parts-image-container img {
        height: 160px;
    }
    
    .parts-label {
        font-size: 0.8rem;
    }
    
    .about-parts-single {
        margin-top: 2rem !important;
    }
}

.feature-point {
    display: flex;
    align-items: center;
    font-weight: 500;
}

/* تنسيقات قسم فريق العمل */
.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

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

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(5deg);
    color: white;
}

.team-info {
    padding: 25px;
    text-align: center;
    position: relative;
}

.team-info h4 {
    color: #333;
    margin-bottom: 8px;
}

.team-info .text-primary {
    font-weight: 600;
    font-size: 0.95rem;
}

/* تأثيرات إضافية للأقسام الجديدة */
.about-content {
    padding: 20px 0;
}

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

/* تحسينات للشاشات الصغيرة */
@media (max-width: 768px) {
    .team-image {
        height: 250px;
    }
    
    .team-info {
        padding: 20px;
    }
    
    .about-stat {
        margin-bottom: 15px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
}

/* إضافة أي تنسيقات إضافية هنا */