/**
 * OSUS.AI Luxury Arabic Theme
 * Premium design system for Middle East market
 * Version 1.0
 */

:root {
    /* Luxury Arabic Gold & Deep Colors */
    --gold: #D4AF37;
    --gold-light: #E8C547;
    --gold-dark: #B8960C;
    --gold-pale: #F5E6B8;
    --royal-purple: #4A1942;
    --royal-blue: #1A365D;
    --emerald: #0D5C4D;
    --ruby: #8B1538;
    --pearl: #FAF7F2;
    --ivory: #FFFFF0;
    --onyx: #0A0A0F;
    --charcoal: #1C1C24;

    /* Primary Palette - Luxury Gold Theme */
    --primary: #D4AF37;
    --primary-dark: #B8960C;
    --primary-light: #E8C547;
    --secondary: #8B1538;
    --secondary-dark: #6B1028;
    --accent: #0D5C4D;
    --accent-light: #14806A;

    /* Dark Theme with Arabic Elegance */
    --dark: #0A0A0F;
    --dark-light: #1C1C24;
    --dark-medium: #2A2A35;
    --light: #FAF7F2;
    --gray: #6B7280;
    --gray-light: #9CA3AF;
    --gray-dark: #374151;

    /* Status Colors */
    --success: #0D5C4D;
    --danger: #8B1538;
    --warning: #D4AF37;
    --info: #1A365D;

    /* Luxury Gradients */
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F5E6B8 50%, #D4AF37 100%);
    --gradient-royal: linear-gradient(135deg, #1A365D 0%, #4A1942 100%);
    --gradient-primary: linear-gradient(135deg, #D4AF37 0%, #E8C547 50%, #B8960C 100%);
    --gradient-dark: linear-gradient(135deg, #0A0A0F 0%, #1C1C24 50%, #2A2A35 100%);
    --gradient-glow: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(232, 197, 71, 0.15) 100%);
    --gradient-ruby: linear-gradient(135deg, #8B1538 0%, #C41E3A 100%);
    --gradient-emerald: linear-gradient(135deg, #0D5C4D 0%, #14806A 100%);
    --gradient-success: linear-gradient(135deg, #0D5C4D 0%, #14806A 100%);

    /* Arabic Pattern Overlays */
    --pattern-arabesque: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='none' stroke='rgba(212,175,55,0.1)' stroke-width='1'/%3E%3Ccircle cx='30' cy='30' r='10' fill='none' stroke='rgba(212,175,55,0.08)' stroke-width='1'/%3E%3C/svg%3E");

    /* Typography */
    --font-primary: 'Cairo', sans-serif;
    --font-secondary: 'Tajawal', sans-serif;
    --font-display: 'Amiri', serif;

    /* Shadows with Gold Tint */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(212, 175, 55, 0.3);
    --shadow-gold: 0 0 60px rgba(212, 175, 55, 0.4);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background: var(--dark);
    color: var(--light);
    line-height: 1.7;
    background-image: var(--pattern-arabesque);
    background-attachment: fixed;
}

html {
    scroll-behavior: smooth;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* Selection */
::selection {
    background: var(--gold);
    color: var(--dark);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--light);
}

.text-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-luxury {
    background: var(--gradient-gold);
    color: var(--dark);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

.btn-luxury:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    color: var(--dark);
}

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

.btn-luxury-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-luxury-outline:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* Cards */
.luxury-card {
    background: rgba(28, 28, 36, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

/* Ornament Divider */
.ornament-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.ornament-divider::before,
.ornament-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ornament-divider i {
    color: var(--gold);
    font-size: 1.5rem;
}

/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 25px;
    color: var(--gold);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--light);
}

.section-title span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--gray-light);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Form Elements */
.form-input-luxury {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    background: rgba(28, 28, 36, 0.6);
    color: var(--light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input-luxury::placeholder {
    color: var(--gray-light);
}

.form-input-luxury:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(28, 28, 36, 0.9);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

/* Header Styles */
.main-header {
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.95) 0%, rgba(28, 28, 36, 0.9) 100%);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
}

.main-header.scrolled {
    background: rgba(10, 10, 15, 0.98);
    box-shadow: 0 4px 30px rgba(212, 175, 55, 0.1);
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Footer Styles */
.main-footer {
    background: linear-gradient(180deg, var(--dark-light) 0%, var(--dark) 100%);
    padding: 100px 0 40px;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-title {
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 25px;
}

/* Payment Icons */
.payment-icon-wrapper {
    width: 48px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    color: #1a1a2e;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.payment-icon-wrapper:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.payment-icon-wrapper.china-pay {
    background: linear-gradient(135deg, #1677FF, #00B96B);
    color: white;
}

.payment-icon-wrapper.mena-pay {
    background: linear-gradient(135deg, #6B3FA0, #00A884);
    color: white;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(1deg); }
}

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.5); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse-gold {
    animation: pulse-gold 2s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .btn-luxury,
    .btn-luxury-outline {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* ============================================================
   CYCLE 91-100: FINAL POLISH & ENHANCEMENT STYLES
   Enhanced animations, accessibility, and visual polish
   ============================================================ */

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

/* Utility Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.5s ease-out forwards;
}

.animate-slide-in {
    animation: slideInRight 0.6s ease-out forwards;
}

/* Staggered Animation Delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Enhanced Focus States for Accessibility */
.btn-luxury:focus,
.btn-luxury-outline:focus,
.form-input-luxury:focus,
button:focus,
a:focus {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* Skip to Content Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 0 0 12px 12px;
    z-index: 9999;
    font-weight: 700;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Enhanced Image Loading */
img {
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded,
img:not([loading="lazy"]) {
    opacity: 1;
}

/* Enhanced Card Hover Effects */
.luxury-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.luxury-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
}

/* Badge Styles - Unified */
.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.badge-premium i {
    font-size: 0.85rem;
}

.badge-success {
    background: rgba(13, 92, 77, 0.2);
    border-color: rgba(13, 92, 77, 0.3);
    color: var(--emerald);
}

.badge-info {
    background: rgba(26, 54, 93, 0.2);
    border-color: rgba(26, 54, 93, 0.3);
    color: #60a5fa;
}

.badge-ruby {
    background: rgba(139, 21, 56, 0.2);
    border-color: rgba(139, 21, 56, 0.3);
    color: #f87171;
}

/* Enhanced Stats Display */
.stats-highlight {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px 0;
}

.stat-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
}

.stat-pill i {
    color: var(--gold);
}

.stat-pill strong {
    color: var(--gold);
    font-weight: 700;
}

/* Trust Indicators */
.trust-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-light);
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--emerald);
    font-size: 1.2rem;
}

/* Enhanced Tooltip Styles */
[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 14px;
    background: var(--dark);
    color: var(--light);
    border: 1px solid var(--gold);
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 10px);
}

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(
        90deg,
        rgba(28, 28, 36, 0.8) 0%,
        rgba(42, 42, 53, 0.8) 50%,
        rgba(28, 28, 36, 0.8) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

/* Enhanced Progress Bar */
.progress-luxury {
    height: 8px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    overflow: hidden;
}

.progress-luxury .progress-bar {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 10px;
    transition: width 0.6s ease;
}

/* Notification Badge */
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    background: var(--ruby);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0 5px;
}

/* Enhanced Star Rating */
.star-rating {
    display: flex;
    gap: 3px;
}

.star-rating i {
    color: var(--gold);
    font-size: 0.9rem;
}

.star-rating i.empty {
    color: rgba(212, 175, 55, 0.3);
}

/* Price Display Styles */
.price-display {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-original {
    font-size: 1rem;
    color: var(--gray);
    text-decoration: line-through;
    margin-right: 10px;
}

.price-discount {
    display: inline-block;
    background: var(--ruby);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: 10px;
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
    }

    .main-header,
    .main-footer,
    .btn-luxury,
    .btn-luxury-outline {
        display: none !important;
    }

    .luxury-card {
        border: 1px solid #ddd;
        break-inside: avoid;
    }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================
   CYCLES 1-50: STANDARDIZED UTILITY CLASSES
   Complete design system for consistency across all pages
   ============================================================ */

/* Hero Section Styles - Unified */
.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-light);
    margin-bottom: 30px;
    max-width: 600px;
}

/* Page Header Styles - Unified */
.page-header {
    background: linear-gradient(135deg, rgba(28, 28, 36, 0.95) 0%, rgba(10, 10, 15, 0.98) 100%);
    padding: 80px 0 60px;
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.page-header-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-header-subtitle {
    font-size: 1.1rem;
    color: var(--gray-light);
    max-width: 600px;
}

/* Breadcrumb Styles */
.breadcrumb-luxury {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb-luxury a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-luxury a:hover {
    color: var(--gold);
}

.breadcrumb-luxury span {
    color: var(--gold);
}

.breadcrumb-luxury i {
    color: var(--gray);
    font-size: 0.75rem;
}

/* Card Grid Layouts */
.card-grid {
    display: grid;
    gap: 30px;
}

.card-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.card-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
    .card-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .card-grid-3,
    .card-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .card-grid-2,
    .card-grid-3,
    .card-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Feature Card - Unified */
.feature-card {
    background: rgba(28, 28, 36, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-lg);
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--gold);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: var(--gradient-gold);
    color: var(--dark);
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--light);
}

.feature-desc {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Stats Section - Unified */
.stats-section {
    background: rgba(28, 28, 36, 0.6);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 60px 0;
}

.stat-card {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--gray-light);
    font-size: 1rem;
    font-weight: 500;
}

/* Image Cards with Overlay */
.image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.image-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
}

.image-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 8px;
}

.image-card-subtitle {
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* Section Spacing */
.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 60px 0;
}

/* Text Utilities */
.text-center { text-align: center; }
.text-start { text-align: start; }
.text-end { text-align: end; }

.text-light { color: var(--light); }
.text-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-muted { color: var(--gray-light); }
.text-success { color: var(--emerald); }
.text-danger { color: var(--ruby); }

/* Spacing Utilities */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* Container Extensions */
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sidebar Layout - Account Pages */
.sidebar-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    min-height: calc(100vh - 200px);
}

@media (max-width: 992px) {
    .sidebar-layout {
        grid-template-columns: 1fr;
    }
}

.sidebar-nav {
    background: rgba(28, 28, 36, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-lg);
    padding: 25px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    color: var(--gray-light);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.sidebar-nav-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.sidebar-nav-item.active {
    background: var(--gradient-gold);
    color: var(--dark);
}

.sidebar-nav-item i {
    width: 20px;
    text-align: center;
}

/* Dashboard Cards */
.dashboard-card {
    background: rgba(28, 28, 36, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.dashboard-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--light);
}

/* Table Styles */
.table-luxury {
    width: 100%;
    border-collapse: collapse;
}

.table-luxury th {
    text-align: start;
    padding: 15px 20px;
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.table-luxury td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--light);
}

.table-luxury tr:hover td {
    background: rgba(212, 175, 55, 0.03);
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.active,
.status-badge.completed {
    background: rgba(13, 92, 77, 0.2);
    color: var(--emerald);
}

.status-badge.pending,
.status-badge.processing {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
}

.status-badge.inactive,
.status-badge.cancelled {
    background: rgba(139, 21, 56, 0.2);
    color: var(--ruby);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 40px;
}

.empty-state-icon {
    width: 100px;
    height: 100px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.5;
}

.empty-state-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 12px;
}

.empty-state-desc {
    color: var(--gray-light);
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Action Buttons Row */
.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Icon Circle */
.icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
}

.icon-circle.sm {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.icon-circle.lg {
    width: 70px;
    height: 70px;
    font-size: 1.6rem;
}

/* Dividers */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    margin: 40px 0;
}

.divider-vertical {
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

/* Floating Labels Form */
.floating-label-group {
    position: relative;
    margin-bottom: 25px;
}

.floating-label-group input,
.floating-label-group textarea {
    width: 100%;
    padding: 20px 18px 8px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    background: rgba(28, 28, 36, 0.6);
    color: var(--light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.floating-label-group label {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    color: var(--gray-light);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.floating-label-group input:focus,
.floating-label-group textarea:focus {
    border-color: var(--gold);
    outline: none;
}

.floating-label-group input:focus + label,
.floating-label-group input:not(:placeholder-shown) + label,
.floating-label-group textarea:focus + label,
.floating-label-group textarea:not(:placeholder-shown) + label {
    top: 8px;
    font-size: 0.75rem;
    color: var(--gold);
}

/* Testimonial Card */
.testimonial-card {
    background: rgba(28, 28, 36, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-lg);
    padding: 35px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 5rem;
    font-family: var(--font-display);
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.testimonial-name {
    font-weight: 700;
    color: var(--light);
    margin-bottom: 3px;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--gray-light);
}

/* Pricing Card */
.pricing-card {
    background: rgba(28, 28, 36, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.pricing-card.featured {
    border-color: var(--gold);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--dark);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--light);
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.pricing-period {
    color: var(--gray-light);
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: start;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-light);
}

.pricing-features li i {
    color: var(--emerald);
}

.pricing-features li.disabled {
    opacity: 0.4;
}

.pricing-features li.disabled i {
    color: var(--gray);
}

/* FAQ Accordion */
.faq-item {
    background: rgba(28, 28, 36, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: var(--light);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: start;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--gray-light);
    line-height: 1.8;
}

/* Contact Card */
.contact-card {
    background: rgba(28, 28, 36, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
}

.contact-card-title {
    font-size: 0.9rem;
    color: var(--gray-light);
    margin-bottom: 5px;
}

.contact-card-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient-gold);
    color: var(--dark);
    transform: translateY(-3px);
}

/* Footer Columns */
.footer-column {
    margin-bottom: 30px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--gold);
    padding-right: 5px;
}

/* Image Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(212, 175, 55, 0);
    transition: background 0.3s ease;
}

.gallery-item:hover::after {
    background: rgba(212, 175, 55, 0.2);
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Alert Messages */
.alert-luxury {
    padding: 18px 25px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.alert-luxury.alert-success {
    background: rgba(13, 92, 77, 0.15);
    border: 1px solid rgba(13, 92, 77, 0.3);
    color: #34d399;
}

.alert-luxury.alert-danger {
    background: rgba(139, 21, 56, 0.15);
    border: 1px solid rgba(139, 21, 56, 0.3);
    color: #f87171;
}

.alert-luxury.alert-warning {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
}

.alert-luxury.alert-info {
    background: rgba(26, 54, 93, 0.15);
    border: 1px solid rgba(26, 54, 93, 0.3);
    color: #60a5fa;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--gold);
    color: var(--dark);
}

.quantity-value {
    width: 50px;
    text-align: center;
    font-weight: 600;
    color: var(--light);
}

/* Timeline Component */
.timeline {
    position: relative;
    padding-right: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(212, 175, 55, 0.2);
}

.timeline-item {
    position: relative;
    padding-right: 50px;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    right: -7px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--gradient-gold);
    border-radius: 50%;
    border: 3px solid var(--dark);
}

.timeline-date {
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.timeline-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 5px;
}

.timeline-desc {
    color: var(--gray-light);
    font-size: 0.95rem;
}

/* Tab Navigation */
.tab-nav {
    display: flex;
    gap: 5px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 30px;
    overflow-x: auto;
}

.tab-nav-item {
    padding: 15px 25px;
    background: transparent;
    border: none;
    color: var(--gray-light);
    font-weight: 600;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.tab-nav-item::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-nav-item:hover {
    color: var(--gold);
}

.tab-nav-item.active {
    color: var(--gold);
}

.tab-nav-item.active::after {
    transform: scaleX(1);
}

/* Chip/Tag Component */
.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 25px;
    font-size: 0.85rem;
    color: var(--gold);
    transition: all 0.3s ease;
}

.chip:hover {
    background: rgba(212, 175, 55, 0.2);
}

.chip-close {
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

/* Avatar Component */
.avatar {
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.avatar-sm { width: 32px; height: 32px; }
.avatar-md { width: 48px; height: 48px; }
.avatar-lg { width: 64px; height: 64px; }
.avatar-xl { width: 96px; height: 96px; }

.avatar-group {
    display: flex;
}

.avatar-group .avatar {
    margin-left: -10px;
}

.avatar-group .avatar:first-child {
    margin-left: 0;
}

/* Counter Badge */
.counter-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 20px;
    height: 20px;
    background: var(--ruby);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
}

/* Hover Card Effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Pulse Animation for Live Elements */
.pulse-live {
    position: relative;
}

.pulse-live::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--emerald);
    border-radius: 50%;
    top: 0;
    right: 0;
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 92, 77, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(13, 92, 77, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(13, 92, 77, 0);
    }
}
