/* ============================================
   JAZIB GSM - SUPER MODERN 2026 CSS
   Mobile-First • Glassmorphism • Micro-interactions
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Core Colors */
    --bg-dark: #030408;
    --bg-card: rgba(12, 18, 28, 0.75);
    --bg-card-solid: #0c121c;
    
    /* Neon Accents */
    --accent-primary: #00f0ff;
    --accent-secondary: #b86aff;
    --accent-tertiary: #ff6b9d;
    
    /* Glow Colors */
    --glow-blue: rgba(0, 240, 255, 0.4);
    --glow-purple: rgba(184, 106, 255, 0.4);
    --glow-pink: rgba(255, 107, 157, 0.4);
    
    /* Borders */
    --border-glow: rgba(0, 240, 255, 0.15);
    --border-light: rgba(255, 255, 255, 0.06);
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #8a9db0;
    --text-muted: #5a6a7a;
    
    /* Status Colors */
    --success: #00ffaa;
    --warning: #ffb347;
    --danger: #ff477e;
    --info: #00e0ff;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-slow: 0.4s ease;
    
    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px var(--glow-blue);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 240, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(184, 106, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 107, 157, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: bgPulse 15s ease-in-out infinite alternate;
}

@keyframes bgPulse {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

/* ============================================
   GLASSMORPHISM - NEXT LEVEL
   ============================================ */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow) cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

/* Shimmer effect on hover */
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.03),
        transparent
    );
    transition: left 0.6s ease;
}

.glass-card:hover::before {
    left: 100%;
}

.glass-card:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-lg), 0 0 30px var(--glow-blue);
    transform: translateY(-6px) scale(1.01);
}

/* ============================================
   NAVBAR - STICKY & SLEEK
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(3, 4, 8, 0.8);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border-bottom: 1px solid var(--border-glow);
    padding: 0.75rem 1rem;
}

@supports (backdrop-filter: blur(30px)) {
    .navbar {
        background: rgba(3, 4, 8, 0.6);
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--bg-dark);
    box-shadow: 0 0 30px var(--glow-blue);
    transition: transform var(--transition-base);
}

.brand-icon:hover {
    transform: rotate(-5deg) scale(1.05);
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff, var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accent-text {
    -webkit-text-fill-color: var(--accent-primary);
    background: none;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.nav-link i {
    font-size: 1rem;
    transition: transform var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(0, 240, 255, 0.08);
}

.nav-link:hover i {
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--accent-primary);
    background: rgba(0, 240, 255, 0.12);
    box-shadow: 0 0 20px var(--glow-blue);
}

.admin-link {
    color: var(--warning) !important;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    color: var(--text-primary);
    font-size: 1.4rem;
}

.nav-toggle:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px var(--glow-blue);
}

/* ============================================
   BUTTONS - PREMIUM INTERACTIONS
   ============================================ */
.btn-primary {
    background: linear-gradient(135deg, #00e0ff, #0090ff, #6a4eff);
    background-size: 200% 200%;
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    color: var(--bg-dark);
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 144, 255, 0.3);
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 144, 255, 0.5), 0 0 30px var(--glow-blue);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--accent-primary);
    color: var(--accent-primary);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-outline:hover::before {
    left: 100%;
}

.btn-outline:hover {
    background: rgba(0, 240, 255, 0.08);
    box-shadow: 0 0 25px var(--glow-blue);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
    width: 100%;
}

@media (min-width: 768px) {
    .main-content {
        padding: 2.5rem 2rem;
    }
}

/* ============================================
   TOOL CARDS - MODERN GRID
   ============================================ */
.tools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }
}

@media (min-width: 1280px) {
    .tools-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tool-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tool-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #1a1a3e, #0d0d20);
    border: 1px solid var(--border-glow);
    transition: transform var(--transition-slow);
}

.tool-card:hover .tool-image {
    transform: scale(1.02);
}

.tool-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
}

.tool-price {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0.5rem 0;
    letter-spacing: -0.02em;
}

.tool-duration {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.tool-features {
    list-style: none;
    margin: 1.25rem 0;
    flex: 1;
}

.tool-features li {
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.tool-features li i {
    color: var(--success);
    font-size: 0.9rem;
    filter: drop-shadow(0 0 5px var(--success));
}

/* ============================================
   BADGES - ANIMATED
   ============================================ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    backdrop-filter: blur(10px);
    transition: all var(--transition-fast);
}

.badge i {
    font-size: 0.7rem;
}

.badge-pending {
    background: rgba(255, 179, 71, 0.12);
    color: var(--warning);
    border: 1px solid rgba(255, 179, 71, 0.3);
    animation: pulseWarning 2s ease-in-out infinite;
}

@keyframes pulseWarning {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 179, 71, 0.2); }
    50% { box-shadow: 0 0 0 6px rgba(255, 179, 71, 0); }
}

.badge-verified {
    background: rgba(0, 255, 170, 0.12);
    color: var(--success);
    border: 1px solid rgba(0, 255, 170, 0.3);
}

.badge-rejected {
    background: rgba(255, 71, 126, 0.12);
    color: var(--danger);
    border: 1px solid rgba(255, 71, 126, 0.3);
}

.badge-popular {
    background: linear-gradient(135deg, rgba(255, 179, 71, 0.2), rgba(255, 107, 157, 0.1));
    color: var(--warning);
    border: 1px solid rgba(255, 179, 71, 0.4);
}

.badge-premium {
    background: linear-gradient(135deg, rgba(184, 106, 255, 0.2), rgba(0, 240, 255, 0.1));
    color: var(--accent-secondary);
    border: 1px solid rgba(184, 106, 255, 0.4);
}

/* ============================================
   FORMS - ELEVATED
   ============================================ */
.form-container {
    max-width: 520px;
    margin: 1rem auto;
    padding: 0 0.5rem;
}

@media (min-width: 768px) {
    .form-container {
        margin: 2rem auto;
        padding: 0;
    }
}

.form-card {
    padding: 1.75rem;
}

@media (min-width: 768px) {
    .form-card {
        padding: 2.5rem;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: rgba(12, 18, 28, 0.8);
    border: 1.5px solid var(--border-glow);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(0, 240, 255, 0.1), 0 0 20px var(--glow-blue);
    background: rgba(12, 18, 28, 0.95);
}

.form-control[readonly] {
    background: rgba(8, 12, 20, 0.9);
    cursor: not-allowed;
    border-style: dashed;
}

/* ============================================
   DASHBOARD
   ============================================ */
.dashboard-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .dashboard-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

.stat-card {
    padding: 1.25rem;
    text-align: center;
    transition: transform var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-3px);
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 2.5rem;
    }
}

.stat-label {
    color: var(--text-secondary);
    margin-top: 0.3rem;
    font-size: 0.85rem;
}

/* ============================================
   TABLES - RESPONSIVE
   ============================================ */
.orders-table-wrapper {
    overflow-x: auto;
    margin: 0 -1rem;
    padding: 0 1rem;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.orders-table th,
.orders-table td {
    padding: 1rem 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.orders-table th {
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    background: rgba(12, 18, 28, 0.5);
}

.orders-table tr {
    transition: background var(--transition-fast);
}

.orders-table tr:hover {
    background: rgba(0, 240, 255, 0.03);
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast-container {
    position: fixed;
    bottom: 20px;
    left: 16px;
    right: 16px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 640px) {
    .toast-container {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        min-width: 360px;
    }
}

.toast {
    background: rgba(12, 18, 28, 0.95);
    backdrop-filter: blur(30px);
    border: 1px solid var(--accent-primary);
    border-radius: var(--radius-full);
    padding: 14px 24px;
    color: var(--text-primary);
    font-weight: 500;
    box-shadow: var(--shadow-lg), 0 0 30px var(--glow-blue);
    animation: slideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 12px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ============================================
   WHATSAPP FLOAT - PULSING
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
    z-index: 998;
    text-decoration: none;
    animation: pulseWhatsApp 2s ease-in-out infinite;
}

@keyframes pulseWhatsApp {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6), 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(-5deg);
    animation: none;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: rgba(3, 4, 8, 0.9);
    backdrop-filter: blur(30px);
    border-top: 1px solid var(--border-glow);
    padding: 2.5rem 1.5rem 1.5rem;
    margin-top: auto;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-section h3 {
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.4rem 0;
    transition: all var(--transition-fast);
}

.footer-section a:hover {
    color: var(--accent-primary);
    transform: translateX(5px);
}

.footer-tagline {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-credit {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--accent-secondary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    border: 1px solid var(--border-glow);
}

.social-links a:hover {
    background: var(--accent-primary);
    color: var(--bg-dark);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px var(--glow-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem 0;
}

@media (min-width: 1024px) {
    .hero {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
        padding: 3rem 0;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    margin-top: 1.5rem;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-stat i {
    color: var(--accent-primary);
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px var(--glow-blue));
}

/* ============================================
   MOBILE MENU STYLES
   ============================================ */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(3, 4, 8, 0.98);
        backdrop-filter: blur(40px);
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 0.5rem;
        transform: translateY(-150%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        border-bottom: 1px solid var(--border-glow);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 1rem 1.25rem;
    }
}

@media (min-width: 769px) {
    .nav-toggle {
        display: none;
    }
}

/* ============================================
   PAYMENT INFO CARD
   ============================================ */
.payment-info {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(184, 106, 255, 0.05));
    border: 1px dashed var(--accent-primary);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin: 1.5rem 0;
}

@media (min-width: 768px) {
    .payment-info {
        padding: 1.75rem;
    }
}

.payment-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

.payment-detail:last-child {
    border-bottom: none;
}

/* ============================================
   UPLOAD AREA
   ============================================ */
.upload-area {
    border: 2px dashed var(--border-glow);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.upload-area:hover {
    border-color: var(--accent-primary);
    background: rgba(0, 240, 255, 0.03);
    box-shadow: 0 0 30px var(--glow-blue);
}

.upload-area i {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
}

/* ============================================
   SEARCH BAR
   ============================================ */
.search-bar {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .search-bar {
        flex-direction: row;
        gap: 1rem;
    }
}

.search-input {
    flex: 1;
    position: relative;
}

.search-input input {
    width: 100%;
    padding: 14px 18px 14px 50px;
    background: rgba(12, 18, 28, 0.8);
    border: 1.5px solid var(--border-glow);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.search-input i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-primary);
}

.filter-select {
    padding: 14px 20px;
    background: rgba(12, 18, 28, 0.8);
    border: 1.5px solid var(--border-glow);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-size: 1rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

/* ============================================
   LOADING SPINNER
   ============================================ */
.spinner {
    width: 44px;
    height: 44px;
    border: 3px solid rgba(0, 240, 255, 0.1);
    border-top-color: var(--accent-primary);
    border-right-color: var(--accent-secondary);
    border-radius: 50%;
    animation: spin 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

/* ============================================
   DROPDOWN MENU
   ============================================ */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    right: 0;
    min-width: 220px;
    background: var(--bg-card-solid);
    backdrop-filter: blur(30px);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.dropdown-menu a:hover {
    background: rgba(0, 240, 255, 0.08);
    color: var(--text-primary);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow {
    box-shadow: 0 0 30px var(--glow-blue);
}

.animate-pulse-slow {
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}