/* ============================================================
   SEMBOSI LABS - PREMIUM MODERN CSS
   Redesigned with animations, glassmorphism, and visual effects
   ============================================================ */

/* ===== ROOT VARIABLES ===== */
:root {
    --primary: #0a2b4a;
    --primary-light: #1a4b7a;
    --primary-dark: #061a2e;
    --accent: #008dff;
    --accent-light: #4db8ff;
    --accent-glow: rgba(0, 141, 255, 0.2);
    --gold: #f5a623;
    --gold-light: #ffd700;
    --green: #10b981;
    --green-bg: rgba(16, 185, 129, 0.12);
    --red: #ef4444;
    --red-bg: rgba(239, 68, 68, 0.12);
    --blue: #3b82f6;
    --blue-bg: rgba(59, 130, 246, 0.12);
    --purple: #8b5cf6;
    --purple-bg: rgba(139, 92, 246, 0.12);
    --gray: #6b7280;
    --gray-bg: rgba(107, 114, 128, 0.12);
    --bg: #f0f5fc;
    --bg-card: rgba(255, 255, 255, 0.85);
    --text: #0b1a2a;
    --text-light: #4a5a6a;
    --text-muted: #8a9ab0;
    --text-white: #ffffff;
    --border: rgba(0, 20, 40, 0.08);
    --shadow: 0 20px 60px -16px rgba(10, 43, 74, 0.12);
    --shadow-hover: 0 32px 72px -20px rgba(10, 43, 74, 0.22);
    --shadow-glow: 0 0 60px rgba(0, 141, 255, 0.08);
    --radius: 28px;
    --radius-sm: 16px;
    --radius-lg: 40px;
    --radius-xs: 10px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --nav-height: 72px;
    --bg-primary: #f0f5fc;
    --bg-secondary: #ffffff;
    --bg-input: #f8fafc;
    --text-primary: #0b1a2a;
    --text-secondary: #4a5a6a;
    --text-inverse: #ffffff;
    --border-color: rgba(0, 20, 40, 0.08);
    --shadow-color: rgba(10, 43, 74, 0.12);
    --shadow-hover-color: rgba(10, 43, 74, 0.22);
    --nav-bg: rgba(255, 255, 255, 0.9);
    --footer-bg: #061a2e;
    --scrollbar-track: #e8edf5;
    --scrollbar-thumb: #c0c8d8;
    --orb-1: rgba(0, 141, 255, 0.06);
    --orb-2: rgba(245, 166, 35, 0.04);
    --orb-3: rgba(139, 92, 246, 0.05);
}

/* Dark mode */
[data-theme="dark"] {
    --bg: #0a0e1a;
    --bg-card: rgba(18, 26, 45, 0.92);
    --text: #e8edf5;
    --text-light: #8a9ab0;
    --text-muted: #5a6a80;
    --border: rgba(255, 255, 255, 0.06);
    --shadow: 0 20px 60px -16px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 32px 72px -20px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 60px rgba(0, 141, 255, 0.04);
    --bg-primary: #0a0e1a;
    --bg-secondary: #111827;
    --bg-input: #1a2234;
    --text-primary: #e8edf5;
    --text-secondary: #8a9ab0;
    --text-inverse: #ffffff;
    --border-color: rgba(255, 255, 255, 0.06);
    --shadow-color: rgba(0, 0, 0, 0.5);
    --shadow-hover-color: rgba(0, 0, 0, 0.7);
    --nav-bg: rgba(10, 14, 26, 0.9);
    --footer-bg: #05080f;
    --scrollbar-track: #1a2234;
    --scrollbar-thumb: #2a3a4a;
    --orb-1: rgba(0, 141, 255, 0.04);
    --orb-2: rgba(245, 166, 35, 0.03);
    --orb-3: rgba(139, 92, 246, 0.04);
}

/* ===== BACKGROUND EFFECTS ===== */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 20s ease-in-out infinite alternate;
}

.bg-orb-1 {
    width: 600px;
    height: 600px;
    top: -10%;
    right: -5%;
    background: var(--orb-1);
    animation-delay: 0s;
}

.bg-orb-2 {
    width: 500px;
    height: 500px;
    bottom: -10%;
    left: -5%;
    background: var(--orb-2);
    animation-delay: -7s;
}

.bg-orb-3 {
    width: 400px;
    height: 400px;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orb-3);
    animation-delay: -14s;
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0,141,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,141,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.9); }
    100% { transform: translate(10px, -10px) scale(1.05); }
}

/* Apply theme variables */
body {
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: background 0.3s ease, color 0.3s ease;
}

.glass, .card, .nav-wrap, .admin-side, .admin-header, .admin-form, .admin-list {
    background: var(--bg-card);
    border-color: var(--border-color);
}

input, select, textarea {
    background: var(--bg-input);
    color: var(--text-primary);
    border-color: var(--border-color);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
}
::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb);
    border-radius: 10px;
    transition: var(--transition);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Theme toggle button animation */
.theme-toggle {
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}
.theme-toggle:hover {
    transform: rotate(20deg);
}
.theme-toggle i {
    transition: transform 0.5s ease;
}
[data-theme="dark"] .theme-toggle i {
    transform: rotate(180deg);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes slideFade {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}
@keyframes heroGlow {
    0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    100% { transform: translate(-30px, 20px) scale(1.1); opacity: 1; }
}
@keyframes borderGlow {
    0%, 100% { border-color: var(--accent); box-shadow: 0 0 20px var(--accent-glow); }
    50% { border-color: var(--gold); box-shadow: 0 0 40px rgba(245, 166, 35, 0.2); }
}
@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}
@keyframes blink {
    0%, 100% { border-color: transparent; }
    50% { border-color: var(--accent); }
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes particleFloat {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

.animate-fade-up { animation: fadeInUp 0.8s ease forwards; }
.animate-fade-down { animation: fadeInDown 0.8s ease forwards; }
.animate-fade-left { animation: fadeInLeft 0.8s ease forwards; }
.animate-fade-right { animation: fadeInRight 0.8s ease forwards; }
.animate-fade-scale { animation: fadeInScale 0.8s ease forwards; }
.animate-float { animation: float 3s ease-in-out infinite; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }
.animate-border-glow { animation: borderGlow 3s ease-in-out infinite; }
.animate-gradient { background-size: 200% 200%; animation: gradientShift 4s ease-in-out infinite; }

.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; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }
.delay-8 { animation-delay: 0.8s; }

/* ============================================================
   RESET & BASE
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    position: relative;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ============================================================
   ALERT CONTAINER
   ============================================================ */
.alert-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin: 16px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 0.9rem;
    animation: fadeInDown 0.5s ease;
}
.alert.success {
    background: var(--green-bg);
    color: var(--green);
    border-left: 4px solid var(--green);
}
.alert.error {
    background: var(--red-bg);
    color: var(--red);
    border-left: 4px solid var(--red);
}
.alert i { font-size: 1.1rem; }

/* ============================================================
   GLASS CARD
   ============================================================ */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.glass::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.03), transparent 60%);
    pointer-events: none;
}
.glass:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
.card {
    padding: 28px 26px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    background: #eef2f6;
    color: var(--text);
    text-decoration: none;
    font-family: var(--font);
    line-height: 1.4;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: var(--transition);
}
.btn:hover::after {
    background: rgba(255,255,255,0.08);
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--text-white);
    box-shadow: 0 4px 16px rgba(10, 43, 74, 0.3);
}
.btn-primary:hover {
    box-shadow: 0 8px 32px rgba(10, 43, 74, 0.4);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    box-shadow: 0 4px 16px rgba(0, 141, 255, 0.3);
}
.btn-accent:hover {
    box-shadow: 0 8px 32px rgba(0, 141, 255, 0.4);
    transform: translateY(-3px);
}

.btn-danger {
    background: var(--red);
    color: white;
}
.btn-danger:hover {
    background: #dc2626;
    transform: translateY(-3px);
}

.btn-success {
    background: var(--green);
    color: white;
}
.btn-success:hover {
    background: #059669;
    transform: translateY(-3px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--primary);
}
.btn-gold:hover {
    box-shadow: 0 8px 32px rgba(245, 166, 35, 0.4);
    transform: translateY(-3px);
}

.btn-purple {
    background: linear-gradient(135deg, var(--purple), #a78bfa);
    color: white;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}
.btn-purple:hover {
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.8rem;
    gap: 6px;
}
.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}
.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
}

/* ============================================================
   BADGES
   ============================================================ */
.status-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 60px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.status-badge.green { background: var(--green-bg); color: var(--green); }
.status-badge.red { background: var(--red-bg); color: var(--red); }
.status-badge.blue { background: var(--blue-bg); color: var(--blue); }
.status-badge.gray { background: var(--gray-bg); color: var(--gray); }
.status-badge.purple { background: var(--purple-bg); color: var(--purple); }

.tag {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 60px;
    font-size: 0.65rem;
    font-weight: 600;
    background: var(--gray-bg);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 8px;
}
.eyebrow i { font-size: 0.7rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-wrap {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    gap: 16px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.15rem;
    flex-shrink: 0;
}
.brand-mark {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent);
    background: linear-gradient(135deg, var(--accent), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--text);
    cursor: pointer;
    padding: 8px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}
.nav-links a {
    padding: 8px 16px;
    border-radius: 60px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition);
    color: var(--text-light);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    transition: var(--transition);
    transform: translateX(-50%);
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 60%;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.nav-actions .theme-toggle,
.nav-actions .lang-toggle {
    padding: 8px 12px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    transition: var(--transition);
}
.nav-actions .theme-toggle:hover,
.nav-actions .lang-toggle:hover {
    background: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
}

/* ============================================================
   MOBILE BOTTOM NAV
   ============================================================ */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 8px 0 env(safe-area-inset-bottom, 12px);
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.04);
}
.mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-size: 0.55rem;
    font-weight: 500;
    color: var(--text-light);
    padding: 4px 12px;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
}
.mobile-bottom-nav a i {
    font-size: 1.3rem;
    transition: all 0.3s ease;
}
.mobile-bottom-nav a:hover,
.mobile-bottom-nav a.active {
    color: var(--accent);
}
.mobile-bottom-nav a.active i {
    transform: translateY(-2px);
}
.mobile-bottom-nav a.active::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 4px;
}
.mobile-bottom-nav .cart-badge {
    position: absolute;
    top: -4px;
    right: 2px;
    background: var(--red);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-premium {
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.hero-premium::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, var(--accent-glow), transparent 70%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite alternate;
}
.hero-premium::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(245, 166, 35, 0.06), transparent 70%);
    pointer-events: none;
}
.hero-wrapper {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    position: relative;
    z-index: 1;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 18px 6px 12px;
    border-radius: 60px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    font-size: 0.8rem;
    font-weight: 500;
    width: fit-content;
    box-shadow: var(--shadow);
    animation: borderGlow 3s ease-in-out infinite;
}
.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse-dot 2s infinite;
}
.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
}
.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--gold), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: gradientShift 4s ease-in-out infinite;
}
.hero-sub {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 520px;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 8px 0;
}
.hero-stats {
    display: flex;
    gap: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.visual-card {
    padding: 36px 32px;
    width: 100%;
    max-width: 440px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow), var(--shadow-glow);
    animation: float 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}
.visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--accent-glow), transparent 60%);
    pointer-events: none;
}
.visual-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.visual-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.visual-header strong {
    font-size: 1.1rem;
    display: block;
}
.visual-header span {
    font-size: 0.8rem;
    color: var(--text-light);
}
.visual-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 16px 0;
    position: relative;
    z-index: 1;
}
.visual-features div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    padding: 8px 14px;
    border-radius: var(--radius-xs);
    background: var(--gray-bg);
    transition: var(--transition);
}
.visual-features div:hover {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
}
.visual-features i {
    color: var(--green);
}
.visual-features div:hover i {
    color: var(--gold);
}
.visual-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}
.badge-green {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--green);
    font-weight: 600;
}
.badge-green i {
    font-size: 0.5rem;
    animation: pulse-dot 2s infinite;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 24px 24px;
    max-width: 1240px;
    margin: 0 auto;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding: 6px 16px;
    border-radius: 60px;
    transition: var(--transition);
}
.trust-item:hover {
    background: var(--gray-bg);
    transform: translateY(-2px);
}
.trust-icon {
    font-size: 1.2rem;
}

/* ============================================================
   ANNOUNCEMENT RAIL
   ============================================================ */
.announcement-rail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin: 24px auto;
    max-width: 1240px;
    padding: 0 24px;
}
.announcement-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 22px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.announcement-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.announcement-card i {
    font-size: 1.2rem;
    color: var(--accent);
    margin-top: 2px;
}
.announcement-card strong {
    display: block;
    font-size: 0.95rem;
}
.announcement-card span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter-section {
    max-width: 1240px;
    margin: 40px auto 0;
    padding: 40px 48px;
    border-radius: var(--radius);
}
.newsletter-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}
.newsletter-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
}
.newsletter-content p {
    color: var(--text-light);
    font-size: 0.9rem;
}
.newsletter-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.newsletter-form input {
    padding: 12px 20px;
    border-radius: 60px;
    border: 1px solid var(--border);
    background: var(--bg-input);
    color: var(--text);
    font-size: 0.95rem;
    min-width: 250px;
    transition: var(--transition);
}
.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

/* ============================================================
   SECTION
   ============================================================ */
.section {
    padding: 80px 24px;
    max-width: 1240px;
    margin: 0 auto;
}
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 50px;
}
.section-head h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.section-head h2 .highlight {
    background: linear-gradient(135deg, var(--accent), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-desc {
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 4px;
}

.featured-products {
    background: var(--bg-secondary);
    border-radius: var(--radius);
    padding: 60px 40px;
    margin: 0 auto 40px;
    max-width: 1240px;
}

/* ============================================================
   GRIDS
   ============================================================ */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
    padding: 32px 28px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--gold));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}
.service-icon {
    font-size: 3rem;
    line-height: 1;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}
.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
}
.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    flex: 1;
}
.service-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.05rem;
}
.service-card .card-img {
    border-radius: var(--radius-sm);
    height: 180px;
    object-fit: cover;
    margin: -32px -28px 12px;
    width: calc(100% + 56px);
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-card {
    padding: 20px 20px 24px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold), var(--purple));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}
.product-card:hover::before {
    transform: scaleX(1);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.product-img {
    border-radius: var(--radius-sm);
    height: 160px;
    object-fit: cover;
    margin: -20px -20px 8px;
    width: calc(100% + 40px);
}
.product-icon {
    font-size: 3rem;
    text-align: center;
    padding: 16px 0;
}
.product-tag {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 0.06em;
}
.product-card h4 {
    font-size: 1rem;
    font-weight: 700;
}
.product-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
}
.product-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}

/* ============================================================
   TESTIMONIAL SLIDER
   ============================================================ */
.testimonial-slider {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}
.testimonial-slide {
    display: none;
    animation: slideFade 0.6s ease forwards;
}
.testimonial-slide:first-child {
    display: block;
}
.testimonial-card {
    padding: 32px 34px;
    border-radius: var(--radius-sm);
    max-width: 550px;
    margin: 0 auto;
    position: relative;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.15;
    font-family: Georgia, serif;
}
.testimonial-card .quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
    padding-left: 20px;
}
.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
}
.testimonial-author strong {
    font-weight: 700;
}
.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-light);
}
.stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
}
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-bg);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.slider-dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 10px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-premium {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius);
    padding: 56px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    color: white;
    position: relative;
    overflow: hidden;
}
.cta-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(0, 141, 255, 0.15), transparent 70%);
    animation: orbFloat 10s ease-in-out infinite;
}
.cta-premium::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 40%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(245, 166, 35, 0.08), transparent 70%);
    animation: orbFloat 12s ease-in-out infinite reverse;
}
.cta-content {
    position: relative;
    z-index: 1;
}
.cta-premium .eyebrow {
    color: var(--gold);
}
.cta-premium h2 {
    font-size: 2rem;
    font-weight: 700;
}
.cta-premium p {
    opacity: 0.85;
}
.cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
    padding: 50px 24px 30px;
    max-width: 1240px;
    margin: 0 auto;
}
.page-hero-inner {
    max-width: 800px;
}
.page-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.page-hero .lead {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin-top: 8px;
}
.page-hero .article-img {
    border-radius: var(--radius-sm);
    margin: 24px 0;
    max-height: 400px;
    width: 100%;
    object-fit: cover;
}

/* ============================================================
   DETAIL HERO
   ============================================================ */
.detail-hero {
    padding: 40px 24px;
    max-width: 1240px;
    margin: 0 auto;
}
.detail-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.detail-media {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
}
.detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}
.detail-icon {
    font-size: 5rem;
}
.detail-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.detail-info h1 {
    font-size: 2.2rem;
    font-weight: 800;
}
.detail-info .lead {
    font-size: 1.05rem;
    color: var(--text-light);
}
.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    padding: 4px 0;
    transition: var(--transition);
}
.feature-list li:hover {
    transform: translateX(4px);
}
.feature-list i {
    color: var(--green);
}
.detail-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
}
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.9rem;
    color: var(--text-light);
}
.detail-meta i {
    margin-right: 6px;
}

/* License Activation */
.license-activation {
    margin: 16px 0;
    padding: 16px;
    background: var(--gray-bg);
    border-radius: var(--radius-sm);
}
.license-activation h4 {
    margin-bottom: 8px;
}
.license-input-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.license-input-group input {
    flex: 1;
    min-width: 200px;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg);
}

/* ============================================================
   SPLIT LAYOUT
   ============================================================ */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   FORMS
   ============================================================ */
.form {
    padding: 32px 30px;
    border-radius: var(--radius);
}
.form label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 4px;
}
.form input,
.form select,
.form textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: var(--transition);
    margin-bottom: 14px;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
}
.form textarea {
    resize: vertical;
    min-height: 80px;
}
.form .two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form .check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
}
.form .check input {
    width: auto;
    margin: 0;
}
.form .center {
    text-align: center;
    margin-top: 12px;
}
.form .muted {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ============================================================
   AUTH PAGES
   ============================================================ */
.auth-page {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}
.auth-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(0, 141, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(245, 166, 35, 0.06) 0%, transparent 50%),
        var(--bg-primary);
    z-index: -1;
}
.auth-card {
    max-width: 480px;
    margin: 20px auto;
    padding: 40px 36px;
}
.auth-card h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.auth-card .lead {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* ============================================================
   PAYMENT PAGE
   ============================================================ */
.payment-page {
    max-width: 560px;
    margin: 20px auto;
    padding: 36px 32px;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border);
}
.payment-panel {
    padding: 24px;
    border-radius: var(--radius-sm);
    margin-top: 20px;
    background: var(--bg);
}
.manual-payment-info {
    margin-top: 12px;
    padding: 16px;
    background: var(--gray-bg);
    border-radius: var(--radius-sm);
}
.manual-payment-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================================
   SEARCH BAR
   ============================================================ */
.searchbar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 16px 0;
}
.searchbar input {
    flex: 1;
    min-width: 200px;
    padding: 12px 18px;
    border-radius: 60px;
    border: 1px solid var(--border);
    background: var(--bg);
    font-size: 0.95rem;
    transition: var(--transition);
}
.searchbar input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

/* ============================================================
   BOOKING SERVICE LIST
   ============================================================ */
.booking-service {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.booking-service:last-child {
    border-bottom: none;
}
.booking-service strong {
    display: block;
}
.booking-service small {
    color: var(--text-light);
    font-size: 0.85rem;
}
.booking-service a {
    color: var(--accent);
    font-weight: 500;
    font-size: 0.85rem;
}

/* ============================================================
   CART
   ============================================================ */
.cart-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.cart-row:last-child {
    border-bottom: none;
}
.cart-total {
    padding-top: 16px;
    font-size: 1.2rem;
    border-top: 2px solid var(--border);
}

/* ============================================================
   DASHBOARD
   ============================================================ */
.dashboard {
    padding: 30px 24px;
    max-width: 1240px;
    margin: 0 auto;
}
.dashboard-header {
    padding: 28px 32px;
    border-radius: var(--radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 30px;
}
.dashboard-header h1 {
    font-size: 1.8rem;
    font-weight: 700;
}
.dashboard-header p {
    color: var(--text-light);
}
.dashboard-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}
.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gray-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
}
.stat-card strong {
    font-size: 1.6rem;
    font-weight: 800;
    display: block;
    line-height: 1.2;
}
.stat-card small {
    color: var(--text-light);
    font-size: 0.8rem;
}
.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}
.download-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}
.download-item:last-child {
    border-bottom: none;
}

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-shell {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
    padding: 30px 24px;
    max-width: 1400px;
    margin: 0 auto;
}
.admin-side {
    padding: 24px 16px;
    border-radius: var(--radius);
    height: fit-content;
    position: sticky;
    top: calc(var(--nav-height) + 20px);
    background: var(--bg-card);
    border: 1px solid var(--border);
}
.admin-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}
.admin-logo {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}
.admin-profile strong {
    display: block;
    font-size: 0.9rem;
}
.admin-profile small {
    font-size: 0.75rem;
    color: var(--text-light);
}
.admin-side a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
    margin-bottom: 2px;
}
.admin-side a i {
    width: 20px;
    text-align: center;
    font-size: 0.95rem;
}
.admin-side a:hover {
    background: var(--gray-bg);
    color: var(--text);
}
.admin-side a.side-active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 16px rgba(10, 43, 74, 0.3);
}
.admin-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.admin-header {
    padding: 24px 28px;
    border-radius: var(--radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
}
.admin-header h1 {
    font-size: 1.4rem;
    font-weight: 700;
}
.admin-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.stat-badge {
    padding: 6px 16px;
    border-radius: 60px;
    background: var(--gray-bg);
    font-size: 0.85rem;
    font-weight: 500;
}
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}
.admin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.admin-form {
    padding: 28px 26px;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border);
}
.admin-form h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text);
}
.admin-form h3 i {
    margin-right: 8px;
    color: var(--accent);
}
.admin-form label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 4px;
    color: var(--text-light);
}
.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 0.9rem;
    transition: var(--transition);
    margin-bottom: 12px;
}
.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
}
.admin-form .two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.admin-form .check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
}
.admin-list {
    padding: 24px 26px;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border);
}
.admin-list h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--text);
}
.admin-list h3 i {
    margin-right: 8px;
    color: var(--accent);
}
.admin-item {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.admin-item:last-child {
    border-bottom: none;
}
.admin-item:hover {
    background: var(--gray-bg);
    margin: 0 -10px;
    padding: 14px 10px;
    border-radius: var(--radius-sm);
}
.admin-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.admin-item-header strong {
    font-size: 0.95rem;
    font-weight: 600;
}
.admin-item-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
}
.admin-edit-toggle {
    cursor: pointer;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 4px 14px;
    border-radius: 60px;
    background: var(--gray-bg);
    transition: var(--transition);
    border: none;
}
.admin-edit-toggle:hover {
    background: var(--accent);
    color: white;
}
.table-wrap {
    overflow-x: auto;
    margin: 8px 0;
}
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}
th {
    text-align: left;
    padding: 10px 12px;
    font-weight: 600;
    border-bottom: 2px solid var(--border);
    color: var(--text-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: var(--bg);
}
td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}
tr:hover td {
    background: var(--gray-bg);
}
.inline-form {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.inline-form input,
.inline-form select {
    padding: 4px 10px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg);
    font-size: 0.8rem;
    color: var(--text);
}
.inline-form .btn {
    padding: 4px 14px;
    font-size: 0.75rem;
}

/* ============================================================
   DEVELOPER SPOTLIGHT
   ============================================================ */
.developer-spotlight {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px 48px;
    border-radius: var(--radius);
    flex-wrap: wrap;
    background: var(--bg-card);
    border: 1px solid var(--border);
}
.developer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.8rem;
    flex-shrink: 0;
}
.developer-spotlight h2 {
    font-size: 1.5rem;
    font-weight: 700;
}
.developer-spotlight p {
    color: var(--text-light);
}

/* ============================================================
   PORTFOLIO CARDS
   ============================================================ */
.portfolio-card {
    padding: 24px;
    text-align: center;
}
.portfolio-icon {
    font-size: 2.8rem;
    margin-bottom: 8px;
}
.portfolio-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 4px 0;
}
.portfolio-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================================
   MODERN FOOTER
   ============================================================ */
.footer-modern {
    background: var(--footer-bg);
    color: rgba(255, 255, 255, 0.85);
    padding: 60px 0 20px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}
.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--gold), var(--purple), var(--accent));
    background-size: 300% 100%;
    animation: gradientShift 4s ease-in-out infinite;
}
.footer-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(ellipse, rgba(0, 141, 255, 0.04), transparent 70%);
    pointer-events: none;
}
.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}
.footer-grid-modern {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1;
}
.footer-brand-modern {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}
.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.4rem;
    color: white;
    flex-shrink: 0;
}
.footer-logo strong {
    display: block;
    font-size: 1.2rem;
    color: white;
}
.footer-logo p {
    font-size: 0.85rem;
    opacity: 0.7;
}
.footer-desc {
    font-size: 0.95rem;
    opacity: 0.75;
    max-width: 320px;
    line-height: 1.8;
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}
.footer-social a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 141, 255, 0.3);
}
.footer-links-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.footer-col h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 14px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    border-radius: 2px;
}
.footer-col a {
    display: block;
    font-size: 0.85rem;
    opacity: 0.7;
    padding: 4px 0;
    transition: var(--transition);
}
.footer-col a:hover {
    opacity: 1;
    color: white;
    transform: translateX(4px);
}
.footer-col a i {
    margin-right: 8px;
    width: 16px;
    color: var(--accent);
}
.footer-bottom-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    font-size: 0.8rem;
    opacity: 0.6;
    position: relative;
    z-index: 1;
}
.footer-version {
    padding: 2px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.7rem;
    font-weight: 500;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .admin-shell {
        grid-template-columns: 220px 1fr;
        gap: 20px;
    }
    .admin-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid-modern {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-links-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-visual {
        order: -1;
    }
    .visual-card {
        max-width: 100%;
    }
    .split {
        grid-template-columns: 1fr;
    }
    .detail-inner {
        grid-template-columns: 1fr;
    }
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-links-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    .featured-products {
        padding: 40px 24px;
    }
    .newsletter-inner {
        flex-direction: column;
        text-align: center;
    }
    .newsletter-form {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --radius: 20px;
        --radius-sm: 12px;
    }
    
    .menu-btn {
        display: block;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg-card);
        backdrop-filter: blur(20px);
        padding: 16px 24px;
        border-bottom: 1px solid var(--border);
        gap: 4px;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        width: 100%;
        padding: 12px 16px;
    }
    .nav-links a::after {
        display: none;
    }
    .nav-actions .btn {
        display: none;
    }
    
    .mobile-bottom-nav {
        display: flex;
    }
    main {
        padding-bottom: 80px;
    }
    
    .hero-premium {
        padding: 50px 0 30px;
        min-height: auto;
    }
    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    .stat-number {
        font-size: 1.6rem;
    }
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 50px 16px;
    }
    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .admin-shell {
        grid-template-columns: 1fr;
    }
    .admin-side {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 4px;
        padding: 16px;
        position: static;
        overflow-x: auto;
        border-radius: var(--radius-sm);
    }
    .admin-side a {
        padding: 8px 12px;
        font-size: 0.75rem;
        border-radius: 8px;
    }
    .admin-side a i {
        display: none;
    }
    .admin-profile {
        display: none;
    }
    
    .cta-premium {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    .cta-actions {
        justify-content: center;
    }
    
    .form .two,
    .admin-form .two {
        grid-template-columns: 1fr;
    }
    .developer-spotlight {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .admin-stats {
        grid-template-columns: 1fr 1fr;
    }
    .admin-grid {
        grid-template-columns: 1fr;
    }
    .admin-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .admin-header h1 {
        font-size: 1.2rem;
    }
    
    .footer-grid-modern {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-links-modern {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .footer-bottom-modern {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .featured-products {
        padding: 30px 16px;
        border-radius: var(--radius-sm);
    }
    .trust-bar {
        gap: 20px;
        padding: 16px;
    }
    .newsletter-section {
        padding: 24px 20px;
        margin: 20px 16px 0;
    }
    .newsletter-form input {
        min-width: 100%;
    }
    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .dashboard-stats {
        grid-template-columns: 1fr 1fr;
    }
    .admin-side {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    }
    .admin-side a {
        font-size: 0.65rem;
        padding: 6px 8px;
    }
    .footer-links-modern {
        grid-template-columns: 1fr;
    }
    .admin-stats {
        grid-template-columns: 1fr;
    }
    .admin-item-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .inline-form {
        flex-direction: column;
        align-items: stretch;
    }
    .inline-form input,
    .inline-form select {
        width: 100%;
    }
    .section {
        padding: 40px 12px;
    }
    .hero-wrapper {
        padding: 0 16px;
    }
    .announcement-rail {
        padding: 0 16px;
    }
    .split {
        padding: 0 16px;
    }
    .dashboard {
        padding: 20px 16px;
    }
    .page-hero {
        padding: 30px 16px 20px;
    }
    .detail-hero {
        padding: 20px 16px;
    }
    .admin-shell {
        padding: 20px 16px;
    }
    .auth-page {
        padding: 20px 16px;
    }
    .footer-inner {
        padding: 0 16px;
    }
    .bg-orb-1,
    .bg-orb-2,
    .bg-orb-3 {
        width: 200px;
        height: 200px;
        filter: blur(40px);
    }
}