/* ============================================
   BIZKAAM ACADEMY - GLOBAL DESIGN SYSTEM
   ============================================ */

:root {
    /* Primary Colors */
    --primary: #2b7a3a;
    --primary-light: #3a9a4e;
    --primary-dark: #1f5a2a;
    --gold: #e6c87a;
    --gold-light: #f0dca0;
    --gold-dark: #c9a84c;
    --bg: #0d1f12;
    --bg-card: rgba(255,255,255,0.03);
    --bg-card-hover: rgba(255,255,255,0.06);
    --border: rgba(230,200,122,0.08);
    --border-gold: rgba(230,200,122,0.15);
    --text: #f5f0e8;
    --text-muted: rgba(255,255,255,0.4);
    --text-gold: #e6c87a;
    
    /* Gradients */
    --gold-gradient: linear-gradient(135deg, #e6c87a, #f0dca0);
    --green-gradient: linear-gradient(135deg, #2b7a3a, #3a9a4e);
    --card-gradient: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(13,31,18,0.95));
    
    /* Effects */
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --shadow: 0 4px 30px rgba(0,0,0,0.2);
    --shadow-gold: 0 0 40px rgba(230,200,122,0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Font */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============================================
   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);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: var(--gold-light);
}

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

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}
.animate-fade-down {
    animation: fadeInDown 0.6s ease forwards;
    opacity: 0;
}
.animate-fade {
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.05s; }
.delay-2 { animation-delay: 0.10s; }
.delay-3 { animation-delay: 0.15s; }
.delay-4 { animation-delay: 0.20s; }
.delay-5 { animation-delay: 0.25s; }
.delay-6 { animation-delay: 0.30s; }
.delay-7 { animation-delay: 0.35s; }
.delay-8 { animation-delay: 0.40s; }
.delay-9 { animation-delay: 0.45s; }
.delay-10 { animation-delay: 0.50s; }

.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}
.float-slow {
    animation: floatSlow 8s ease-in-out infinite;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-gold {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gold-gradient);
    color: var(--bg);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230,200,122,0.3);
}

.btn-green {
    display: inline-block;
    padding: 12px 28px;
    background: var(--green-gradient);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(43,122,58,0.3);
}

.btn-outline {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    border: 1.5px solid var(--border-gold);
    color: var(--gold);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.btn-outline:hover {
    background: rgba(230,200,122,0.05);
    transform: translateY(-2px);
    border-color: var(--gold);
}

/* ============================================
   CARDS
   ============================================ */
.card-glass {
    background: var(--card-gradient);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: var(--transition);
}
.card-glass:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.card-gold {
    background: var(--card-gradient);
    border: 1.5px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 20px;
    transition: var(--transition);
}
.card-gold:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

/* ============================================
   BADGES
   ============================================ */
.badge-gold {
    display: inline-block;
    padding: 2px 12px;
    background: rgba(230,200,122,0.12);
    color: var(--gold);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.badge-green {
    display: inline-block;
    padding: 2px 12px;
    background: rgba(46,204,113,0.12);
    color: #2ecc71;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.badge-red {
    display: inline-block;
    padding: 2px 12px;
    background: rgba(231,76,60,0.12);
    color: #e74c3c;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 13px;
    color: var(--gold);
    margin-bottom: 6px;
    font-weight: 500;
}
.form-group label .required {
    color: #e74c3c;
    margin-left: 2px;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(230,200,122,0.15);
    border-radius: var(--radius-sm);
    color: var(--text-gold) !important;
    font-size: 14px;
    font-family: var(--font);
    transition: var(--transition);
}
.form-control:focus {
    border-color: var(--gold);
    outline: none;
    background: rgba(230,200,122,0.05);
    box-shadow: 0 0 20px rgba(230,200,122,0.05);
    color: var(--text-gold) !important;
}
.form-control::placeholder {
    color: rgba(255,255,255,0.25);
}
.form-control option {
    background: var(--bg);
    color: #ffffff;
}
.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 30px var(--bg) inset !important;
    -webkit-text-fill-color: var(--text-gold) !important;
    caret-color: var(--text-gold);
}

/* ============================================
   GRID
   ============================================ */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}
.grid-4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   UTILITY
   ============================================ */
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.p-1 { padding: 10px; }
.p-2 { padding: 20px; }
.p-3 { padding: 30px; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.flex-column {
    display: flex;
    flex-direction: column;
}
.gap-1 { gap: 10px; }
.gap-2 { gap: 20px; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.relative { position: relative; }
.absolute { position: absolute; }
.z-1 { z-index: 1; }
.z-2 { z-index: 2; }
.z-10 { z-index: 10; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

.border-radius { border-radius: var(--radius); }
.border-radius-sm { border-radius: var(--radius-sm); }
