/* ========================================
   Christian Paws - Custom Styles
   Bleeding Edge Visual Effects
   ======================================== */

:root {
    --bg: #0F0F0F;
    --bg2: #141414;
    --surface: #1A1A1A;
    --surface2: #202020;
    --text: #FFFFFF;
    --text-inv: #0F0F0F;
    --muted: rgba(255, 255, 255, 0.5);
    --gold: #C9A84C;
    --gold-lt: #E2C97E;
    --gold-dk: #9A7B2E;
    --border: rgba(255, 255, 255, 0.1);
    --accent: #C9A84C;
    --success: #10B981;
    --danger: #EF4444;
    --info: #3B82F6;
    --glass-bg: rgba(26, 26, 26, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-glow: 0 0 30px rgba(201, 168, 76, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] {
    --bg: #FFFFFF;
    --bg2: #F7F6F2;
    --surface: #F7F6F2;
    --surface2: #EFEDE8;
    --text: #0F0F0F;
    --text-inv: #FFFFFF;
    --muted: #6B6560;
    --gold: #9A7B2E;
    --gold-lt: #C9A84C;
    --gold-dk: #7A5E1A;
    --border: rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.1);
}

@media (prefers-color-scheme: light) {
    [data-theme="auto"] {
        --bg: #FFFFFF;
        --bg2: #F7F6F2;
        --surface: #F7F6F2;
        --text: #0F0F0F;
        --muted: #6B6560;
        --gold: #9A7B2E;
        --gold-lt: #C9A84C;
        --border: rgba(0, 0, 0, 0.1);
        --glass-bg: rgba(255, 255, 255, 0.7);
    }
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--text);
    background: var(--bg);
    transition: var(--transition-smooth);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

[data-theme="auto"] {
    color-scheme: light dark;
}

/* ========================================
   Custom Cursor
   ======================================== */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold);
    transition: transform 0.15s ease, opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
}

body.cursor-active .cursor-dot,
body.cursor-active .cursor-outline {
    opacity: 1;
}

body.cursor-active .cursor-outline.hovering {
    width: 60px;
    height: 60px;
    background: rgba(201, 168, 76, 0.1);
    border-color: transparent;
}

.cursor-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.4;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

.text-gold {
    color: var(--gold) !important;
}

.font-nunito {
    font-family: 'Nunito', sans-serif;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 2vw, 2rem); }

/* ========================================
   Glassmorphism Cards
   ======================================== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

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

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(201, 168, 76, 0.3);
}

/* ========================================
   Buttons
   ======================================== */
.btn-gold {
    background: var(--gold);
    color: var(--text-inv);
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-gold:hover {
    background: var(--gold-lt);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

.btn-gold:hover::before {
    width: 300px;
    height: 300px;
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 12px 30px;
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--text-inv);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

/* Ripple Effect */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-effect 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-effect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ========================================
   Navbar
   ======================================== */
.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition-smooth);
    padding: 0.75rem 0;
}

[data-theme="light"] .navbar-custom,
[data-theme="auto"] .navbar-custom {
    background: rgba(255, 255, 255, 0.9);
}

.navbar-custom.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.navbar-brand-custom {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.04em;
}

.navbar-nav-custom {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-nav-custom a {
    text-decoration: none;
    color: var(--muted);
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    position: relative;
}

.navbar-nav-custom a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.navbar-nav-custom a:hover,
.navbar-nav-custom a.active {
    color: var(--gold);
}

.navbar-nav-custom a:hover::after,
.navbar-nav-custom a.active::after {
    width: 100%;
}

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

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-100px) translateX(50px); }
    50% { transform: translateY(-50px) translateX(-30px); }
    75% { transform: translateY(-150px) translateX(20px); }
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-tag::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero-title em {
    font-style: italic;
    color: var(--gold-lt);
}

.hero-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 500px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-verse {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    max-width: 450px;
}

.hero-verse-bar {
    width: 2px;
    background: var(--gold);
    flex-shrink: 0;
    opacity: 0.6;
}

.hero-verse-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--muted);
    line-height: 1.7;
}

.hero-verse-cite {
    display: block;
    font-style: normal;
    font-family: 'Nunito', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0.5rem;
}

/* ========================================
   Sections
   ======================================== */
.section-padding {
    padding: 100px 0;
}

.section-dark {
    background: var(--bg);
}

.section-surface {
    background: var(--surface);
}

.section-light {
    background: var(--bg2);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    font-family: 'Nunito', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.section-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-heading em {
    font-style: italic;
    color: var(--gold-lt);
}

/* ========================================
    Stats Counter
    ======================================== */
.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    background: var(--bg2);
}

.stat-item {
    padding: 40px 20px;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: var(--transition-smooth);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: var(--surface);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Nunito', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

/* Bootstrap grid fallback for stats */
@media (max-width: 991.98px) {
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .kanban-board {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .stats-section {
        grid-template-columns: 1fr;
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    .kanban-board {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Cards
   ======================================== */
.card-hover {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--gold);
}

.card-line {
    width: 40px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.card-title-custom {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.card-body-custom {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ========================================
   Animal Grid
   ======================================== */
.animal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.animal-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.animal-card:hover {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--gold);
}

.animal-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--bg2);
}

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

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

.animal-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--text-inv);
    padding: 6px 14px;
    border-radius: 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.animal-info {
    padding: 1.5rem;
}

.animal-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.animal-breed {
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.animal-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.animal-meta span {
    font-family: 'Nunito', sans-serif;
    font-size: 0.75rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ========================================
   Forms
   ======================================== */
.form-control-custom {
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: var(--text);
    transition: var(--transition-smooth);
    outline: none;
}

.form-control-custom:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-control-custom::placeholder {
    color: var(--muted);
}

.form-label-custom {
    font-family: 'Nunito', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    display: block;
    margin-bottom: 0.75rem;
}

.form-group-custom {
    margin-bottom: 1.5rem;
}

/* ========================================
   Multi-step Form
   ======================================== */
.step-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.step-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border);
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: var(--muted);
    transition: var(--transition-smooth);
}

.step-indicator.active .step-number,
.step-indicator.completed .step-number {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--text-inv);
}

.step-label {
    font-family: 'Nunito', sans-serif;
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.step-indicator.active .step-label {
    color: var(--gold);
}

/* ========================================
   Toast Notifications
   ======================================== */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.toast {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 300px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast-success {
    border-left: 4px solid var(--success);
}

.toast-error {
    border-left: 4px solid var(--danger);
}

.toast-info {
    border-left: 4px solid var(--info);
}

.toast-icon {
    font-size: 1.25rem;
}

.toast-success .toast-icon { color: var(--success); }
.toast-error .toast-icon { color: var(--danger); }
.toast-info .toast-icon { color: var(--info); }

.toast-message {
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
}

/* ========================================
   Loading Spinner
   ======================================== */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 15, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* ========================================
   Footer
   ======================================== */
.footer-custom {
    background: var(--bg);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-brand img {
    height: 50px;
    width: auto;
}

.footer-brand-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
}

.footer-about {
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 280px;
}

.footer-title {
    font-family: 'Nunito', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    color: var(--muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--text);
}

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    font-family: 'Nunito', sans-serif;
    font-size: 0.8rem;
    color: var(--muted);
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
}

/* ========================================
   Admin Sidebar
   ======================================== */
.admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 260px;
    background: var(--surface);
    border-right: 1px solid var(--border);
    padding: 2rem 0;
    z-index: 100;
}

.admin-sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 1.5rem;
    margin-bottom: 2rem;
    text-decoration: none;
}

.admin-sidebar-logo img {
    height: 40px;
}

.admin-sidebar-logo span {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
}

.admin-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin-nav-item {
    margin-bottom: 0.25rem;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 1.5rem;
    color: var(--muted);
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    border-left: 3px solid transparent;
}

.admin-nav-link:hover,
.admin-nav-link.active {
    background: var(--bg2);
    color: var(--gold);
    border-left-color: var(--gold);
}

.admin-nav-link i {
    width: 20px;
    text-align: center;
}

/* ========================================
   Kanban Board
   ======================================== */
.kanban-board {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 1rem 0;
}

.kanban-column {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem;
    min-height: 400px;
}

.kanban-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.kanban-title {
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text);
}

.kanban-count {
    background: var(--gold);
    color: var(--text-inv);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
}

.kanban-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    cursor: grab;
    transition: var(--transition-smooth);
}

.kanban-card:hover {
    border-color: var(--gold);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.kanban-card:active {
    cursor: grabbing;
}

.kanban-card-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.kanban-card-meta {
    font-family: 'Nunito', sans-serif;
    font-size: 0.8rem;
    color: var(--muted);
}

/* ========================================
   Dashboard Stats
   ======================================== */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card-custom {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-smooth);
}

.stat-card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon-custom {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.stat-icon-custom.gold { background: rgba(201, 168, 76, 0.15); color: var(--gold); }
.stat-icon-custom.green { background: rgba(16, 185, 129, 0.15); color: var(--success); }
.stat-icon-custom.blue { background: rgba(59, 130, 246, 0.15); color: var(--info); }
.stat-icon-custom.red { background: rgba(239, 68, 68, 0.15); color: var(--danger); }

.stat-content-custom h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-content-custom p {
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    color: var(--muted);
}

/* ========================================
   Modal
   ======================================== */
.modal-custom {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-custom.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content-custom {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalIn 0.3s ease;
}

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

.modal-header-custom {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title-custom {
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--text);
}

.modal-body-custom {
    padding: 1.5rem;
}

/* ========================================
   Swiper Customization
   ======================================== */
.swiper-custom {
    border-radius: 20px;
    overflow: hidden;
}

.swiper-slide-custom {
    position: relative;
    height: 400px;
    background: var(--surface);
}

.swiper-slide-custom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-custom {
    background: var(--gold);
    color: var(--text-inv);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.swiper-button-custom:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(201, 168, 76, 0.4);
}

/* ========================================
    Responsive - Using Bootstrap .col-* classes
    ======================================== */

/* ========================================
    Utility Classes
    ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }

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

.rounded { border-radius: 8px; }
.rounded-lg { border-radius: 16px; }
.rounded-xl { border-radius: 20px; }

.shadow { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); }
.shadow-lg { box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3); }

.overflow-hidden { overflow: hidden; }
.position-relative { position: relative; }
.position-absolute { position: absolute; }

/* Skeleton Loader */
.skeleton {
    background: linear-gradient(90deg, var(--surface) 25%, var(--bg2) 50%, var(--surface) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ========================================
   AOS Animation Adjustments
   ======================================== */
[AOS] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[AOS].aos-animate {
    opacity: 1;
}