/* ============================================
   GLEZCID CONTABLE - MODERN DESIGN SYSTEM
   ============================================ */

/* === ROOT VARIABLES === */
:root {
    /* Color Palette */
    --primary: #0066FF;
    --primary-dark: #0052CC;
    --primary-light: #3385FF;
    --secondary: #6C63FF;
    --success: #00D9A3;
    --warning: #FFB800;
    --danger: #FF4757;
    --info: #00D4FF;
    --dark: #1A1D29;
    --light: #F8F9FA;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-success: linear-gradient(135deg, #00D9A3 0%, #00B386 100%);
    --gradient-warning: linear-gradient(135deg, #FFB800 0%, #FF9500 100%);
    --gradient-danger: linear-gradient(135deg, #FF4757 0%, #E84118 100%);
    --gradient-dark: linear-gradient(135deg, #2C3E50 0%, #1A1D29 100%);
    --gradient-blue: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --radius-xl: 2rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* === GLOBAL STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    color: #2d3748;
    line-height: 1.6;
}

/* === ANIMATED BACKGROUND === */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.animated-bg::before,
.animated-bg::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.animated-bg::before {
    background: #00D9A3;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.animated-bg::after {
    background: #FFB800;
    bottom: -100px;
    right: -100px;
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(100px, -100px) scale(1.1);
    }

    66% {
        transform: translate(-100px, 100px) scale(0.9);
    }
}

/* === NAVIGATION === */
.navbar {
    backdrop-filter: blur(20px);
    background: rgba(26, 29, 41, 0.95) !important;
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
    transition: var(--transition-normal);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    transition: var(--transition-fast);
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--primary) !important;
    transform: translateY(-2px);
}

/* === SIDEBAR === */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 280px;
    background: linear-gradient(180deg, #1A1D29 0%, #2C3E50 100%);
    padding: 2rem 0;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition-normal);
    overflow-y: auto;
}

.sidebar-brand {
    padding: 0 2rem;
    margin-bottom: 2rem;
}

.sidebar-brand h3 {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
}

.sidebar-brand .text-primary {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu-item {
    margin: 0.25rem 1rem;
}

.sidebar-menu-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.sidebar-menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-blue);
    transition: var(--transition-normal);
    z-index: -1;
}

.sidebar-menu-link:hover::before,
.sidebar-menu-link.active::before {
    left: 0;
}

.sidebar-menu-link:hover,
.sidebar-menu-link.active {
    color: white;
    transform: translateX(5px);
}

.sidebar-menu-link i {
    margin-right: 1rem;
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.sidebar-menu-link .badge {
    margin-left: auto;
}

/* === MAIN CONTENT === */
.main-content {
    margin-left: 280px;
    padding: 3rem;
    min-height: 100vh;
    transition: var(--transition-normal);
    width: calc(100% - 280px);
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.main-content.full-width {
    margin-left: 0;
    width: 100%;
}

.main-content .container-fluid {
    max-width: 100%;
    padding: 0;
}

/* === DASHBOARD HEADER === */
.dashboard-header {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.dashboard-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.dashboard-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.dashboard-header p {
    color: #718096;
    margin: 0;
    font-size: 1.1rem;
}

/* === STAT CARDS === */
.stat-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border-left: 4px solid var(--primary);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stat-card:hover::before {
    opacity: 0.05;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition-normal);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0.5rem 0;
}

.stat-label {
    color: #718096;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* === CARDS === */
.card {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card-header {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem;
    font-weight: 600;
}

.card-body {
    padding: 1.5rem;
}

/* === BUTTONS === */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition-fast);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-blue);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-success {
    background: var(--gradient-success);
    color: white;
}

.btn-warning {
    background: var(--gradient-warning);
    color: white;
}

.btn-danger {
    background: var(--gradient-danger);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* === FORMS === */
.form-control,
.form-select {
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    transition: var(--transition-fast);
    font-family: var(--font-primary);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

/* === TABLES === */
.table {
    border-collapse: separate;
    border-spacing: 0;
}

.table thead th {
    background: #f8f9fa;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: #4a5568;
    padding: 1rem;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}

.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-status::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* === ALERTS === */
.alert {
    border: none;
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    border-left: 4px solid;
    animation: slideInDown 0.5s ease;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === MODALS === */
.modal-content {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.modal-header {
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid #e2e8f0;
    padding: 1.5rem;
}

/* === CHAT/MESSAGES === */
.chat-container {
    height: 600px;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.chat-header {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    font-weight: 600;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background: #f8f9fa;
}

.message {
    display: flex;
    margin-bottom: 1rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-sent {
    justify-content: flex-end;
}

.message-bubble {
    max-width: 70%;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.message-received .message-bubble {
    background: white;
    border-bottom-left-radius: 0;
}

.message-sent .message-bubble {
    background: var(--gradient-blue);
    color: white;
    border-bottom-right-radius: 0;
}

.message-time {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.chat-input {
    padding: 1.5rem;
    background: white;
    border-top: 1px solid #e2e8f0;
}

/* === FILE UPLOAD === */
.file-upload-area {
    border: 3px dashed #cbd5e0;
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    transition: var(--transition-normal);
    cursor: pointer;
    background: white;
}

.file-upload-area:hover {
    border-color: var(--primary);
    background: rgba(0, 102, 255, 0.05);
}

.file-upload-area.dragover {
    border-color: var(--primary);
    background: rgba(0, 102, 255, 0.1);
    transform: scale(1.02);
}

.file-upload-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* === PROGRESS BARS === */
.progress {
    height: 12px;
    border-radius: var(--radius-sm);
    background: #e2e8f0;
    overflow: hidden;
}

.progress-bar {
    background: var(--gradient-blue);
    transition: width 0.6s ease;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* === LOADING SPINNER === */
.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e2e8f0;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* === UTILITIES === */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hover-lift {
    transition: var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* === RESPONSIVE === */

/* Large Tablets and Small Desktops (992px - 1200px) */
@media (max-width: 1200px) {
    .main-content {
        padding: 2rem;
    }

    .container {
        max-width: 100%;
        padding: 0 1rem;
    }
}

/* Tablets (768px - 992px) */
@media (max-width: 992px) {
    .sidebar {
        transform: translateX(-100%);
        position: fixed;
        z-index: 1050;
    }

    .sidebar.show {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
        width: 100%;
        padding: 1.5rem;
    }

    .stat-card {
        margin-bottom: 1rem;
    }

    .dashboard-header h1 {
        font-size: 1.75rem;
    }

    /* Adjust table for tablets */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Small Tablets and Large Phones (576px - 768px) */
@media (max-width: 768px) {
    .dashboard-header h1 {
        font-size: 1.5rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .main-content {
        padding: 1rem;
    }

    /* Stack columns on smaller screens */
    .col-md-6,
    .col-md-4,
    .col-md-3 {
        width: 100%;
        margin-bottom: 1rem;
    }

    /* Adjust buttons */
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    /* Adjust cards */
    .card-body {
        padding: 1rem;
    }

    /* Adjust navbar */
    .navbar-collapse {
        background: rgba(26, 29, 41, 0.98);
        padding: 1rem;
        border-radius: 0.5rem;
        margin-top: 0.5rem;
    }

    /* Adjust chat container */
    .chat-container {
        height: 500px;
    }

    .message-bubble {
        max-width: 85%;
    }
}

/* Smartphones (320px - 576px) */
@media (max-width: 576px) {
    body {
        font-size: 14px;
    }

    .dashboard-header {
        padding: 1rem;
    }

    .dashboard-header h1 {
        font-size: 1.25rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    /* Adjust main content */
    .main-content {
        padding: 0.75rem;
    }

    /* Adjust buttons for mobile */
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    /* Adjust forms */
    .form-control,
    .form-select {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }

    /* Adjust tables */
    .table {
        font-size: 0.85rem;
    }

    .table thead th {
        padding: 0.75rem 0.5rem;
        font-size: 0.75rem;
    }

    .table tbody td {
        padding: 0.75rem 0.5rem;
    }

    /* Hide some columns on very small screens */
    .table .d-none-mobile {
        display: none !important;
    }

    /* Adjust chat */
    .chat-container {
        height: 400px;
    }

    .message-bubble {
        max-width: 90%;
        padding: 0.75rem 1rem;
    }

    /* Adjust modals */
    .modal-dialog {
        margin: 0.5rem;
    }

    /* Adjust cards */
    .card {
        margin-bottom: 0.75rem;
    }

    .card-body {
        padding: 0.75rem;
    }

    /* Adjust hero section */
    .hero-section {
        min-height: 500px;
        padding: 2rem 0;
    }

    .display-2 {
        font-size: 2rem;
    }

    .display-3 {
        font-size: 1.75rem;
    }

    .display-4 {
        font-size: 1.5rem;
    }

    .lead {
        font-size: 1rem;
    }
}

/* Extra Small Devices (max 375px) */
@media (max-width: 375px) {
    .dashboard-header h1 {
        font-size: 1.1rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .navbar-brand {
        font-size: 1.1rem;
    }

    .display-2 {
        font-size: 1.75rem;
    }
}

/* Landscape Orientation Adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: 400px;
    }

    .sidebar {
        height: 100vh;
        overflow-y: auto;
    }
}

/* Print Styles */
@media print {

    .sidebar,
    .navbar,
    .btn,
    .no-print {
        display: none !important;
    }

    .main-content {
        margin-left: 0 !important;
        width: 100% !important;
    }

    .card {
        break-inside: avoid;
    }
}

/* === NEW HOME PAGE STYLES === */

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: -80px;
    /* Offset fixed navbar */
}

.hero-bg-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /* Taller for parallax */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Simple parallax */
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 29, 41, 0.9) 0%, rgba(0, 102, 255, 0.4) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.text-shadow-lg {
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.text-gradient-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Scroll Indicator */
.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Stats Section */
.stats-container {
    margin-top: -5rem;
    position: relative;
    z-index: 10;
    background: rgba(26, 29, 41, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Utilities */
.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.z-index-1 {
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.bg-white-10 {
    background: rgba(255, 255, 255, 0.1);
}

.backdrop-blur {
    backdrop-filter: blur(10px);
}

/* Cards & Hovers */
.hover-card-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card-lift:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl) !important;
}

.icon-box-xl {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.hover-card-lift:hover .icon-box-xl {
    transform: scale(1.1) rotate(5deg);
}

.link-arrow i {
    transition: transform 0.3s ease;
}

.link-arrow:hover i {
    transform: translateX(5px);
}

.transition-all {
    transition: all 0.3s ease;
}

/* Decorative */
.opacity-10 {
    opacity: 0.1;
}

.blur-bg {
    filter: blur(80px);
    opacity: 0.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 600px;
    }

    .display-2 {
        font-size: 2.5rem;
    }

    .stats-container {
        margin-top: 2rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    /* Sidebar Responsive */
    .sidebar {
        transform: translateX(-100%);
        width: 280px;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
        width: 100%;
        padding: 1rem;
    }

    .navbar-collapse {
        background: rgba(26, 29, 41, 0.98);
        padding: 1rem;
        border-radius: var(--radius-md);
        transition: transform 0.5s ease;
    }

    .card:hover .hover-scale {
        transform: scale(1.1);
    }

    .object-fit-cover {
        object-fit: cover;
    }
}

/* === PREMIUM ENHANCEMENTS === */

/* Glassmorphism Navbar */
.glass-nav {
    background: rgba(26, 29, 41, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.glass-nav.scrolled {
    background: rgba(26, 29, 41, 0.95) !important;
    padding: 1rem 0;
}

/* Premium Card */
.card-premium {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
}

.card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.25);
}

/* Glowing Button */
.btn-glow {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.3s, transform 0.3s;
}

.btn-glow:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Floating Animation */
@keyframes float-premium {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float-premium 4s ease-in-out infinite;
}

/* Section Spacing */
.section-padding {
    padding: 7rem 0;
}

/* Typography Enhancements */
.display-1,
.display-2,
.display-3,
.display-4 {
    font-family: var(--font-primary);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

/* Dashboard Enhancements */
.dashboard-card {
    border: none;
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    margin-bottom: 2.5rem;
    padding: 2.5rem;
}

.dashboard-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}