/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
     /* Colors */
     --primary-dark: #000000;
     --secondary-dark: #0a0a0a;
     --tertiary-dark: #050505;
     --accent-silver: #c0c0c0;
     --accent-light: #e8e8e8;
     --text-primary: #f5f5f5;
     --text-secondary: #d4d4d8;
     --text-muted: #a1a1a6;
     --border-color: #1a1a1a;
     --success-color: #10b981;
     --error-color: #ef4444;
     --warning-color: #f59e0b;

    /* Shadows and Glows */
    --glow-weak: 0 0 10px rgba(192, 192, 192, 0.2);
    --glow-medium: 0 0 20px rgba(192, 192, 192, 0.4);
    --glow-strong: 0 0 40px rgba(192, 192, 192, 0.6);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.6);
}

html {
    scroll-behavior: smooth;
}

body {
     font-family: 'Segoe UI', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
     background: #000000;
     color: var(--text-primary);
     line-height: 1.6;
     letter-spacing: 0.3px;
     overflow-x: hidden;
}

/* ==================== BACKGROUND ANIMATIONS ==================== */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

.animated-bg {
     position: absolute;
     width: 100%;
     height: 100%;
     background: #000000;
}

.grid-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(192, 192, 192, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(192, 192, 192, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float-orb 15s ease-in-out infinite;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.8) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 200, 200, 0.6) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.glow-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(180, 180, 180, 0.7) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
    }
    75% {
        transform: translate(30px, 50px) scale(1.05);
    }
}

/* ==================== NAVBAR ==================== */
.navbar {
     position: sticky;
     top: 0;
     z-index: 50;
     background: #000000;
     backdrop-filter: blur(20px);
     border-bottom: 1px solid rgba(192, 192, 192, 0.15);
     box-shadow: 0 0 30px rgba(192, 192, 192, 0.1);
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
}

.nav-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-actions {
    display: flex;
    gap: 15px;
}

.login-btn {
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2) 0%, rgba(192, 192, 192, 0.1) 100%);
    border: 1.5px solid rgba(192, 192, 192, 0.3);
    color: var(--accent-silver);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.1);
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.login-btn:hover {
    border-color: rgba(192, 192, 192, 0.6);
    box-shadow: 0 0 40px rgba(192, 192, 192, 0.3), inset 0 0 20px rgba(192, 192, 192, 0.1);
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.3) 0%, rgba(192, 192, 192, 0.2) 100%);
    transform: translateY(-2px);
}

.login-btn:hover::before {
    left: 100%;
}

.btn-text {
    display: flex;
    align-items: center;
}

.btn-icon {
    font-size: 1rem;
}

/* ==================== HERO SECTION ==================== */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-section {
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.15) 0%, rgba(192, 192, 192, 0.05) 100%);
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 50px;
    margin-bottom: 30px;
    box-shadow: var(--glow-weak);
}

.badge-text {
    color: var(--accent-silver);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(192, 192, 192, 0.2);
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-stats {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 40px;
     max-width: 500px;
     margin: 0 auto;
}

.stat-item {
    padding: 25px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1) 0%, rgba(192, 192, 192, 0.05) 100%);
    border: 1px solid rgba(192, 192, 192, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: var(--glow-weak);
}

.stat-item:hover {
    border-color: rgba(192, 192, 192, 0.3);
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.15) 0%, rgba(192, 192, 192, 0.1) 100%);
    box-shadow: var(--glow-medium);
    transform: translateY(-5px);
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-silver);
    margin-bottom: 8px;
}

.stat-name {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 60px 0 80px;
}

.cta-card {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1) 0%, rgba(192, 192, 192, 0.05) 100%);
    border: 1.5px solid rgba(192, 192, 192, 0.2);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 60px;
    box-shadow: var(--shadow-lg), var(--glow-medium);
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.cta-card:hover {
    border-color: rgba(192, 192, 192, 0.4);
    box-shadow: var(--shadow-xl), var(--glow-strong);
    transform: translateY(-8px);
}



.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.cta-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta-button {
    padding: 16px 48px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.25) 0%, rgba(192, 192, 192, 0.15) 100%);
    border: 1.5px solid rgba(192, 192, 192, 0.4);
    color: var(--accent-silver);
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(192, 192, 192, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover {
    border-color: rgba(192, 192, 192, 0.6);
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.35) 0%, rgba(192, 192, 192, 0.25) 100%);
    box-shadow: 0 0 50px rgba(192, 192, 192, 0.4), inset 0 0 30px rgba(192, 192, 192, 0.15);
    transform: translateY(-3px);
}

.cta-button:hover::before {
    left: 100%;
}

/* ==================== FEATURES GRID ==================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.08) 0%, rgba(192, 192, 192, 0.03) 100%);
    border: 1px solid rgba(192, 192, 192, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm), var(--glow-weak);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    border-color: rgba(192, 192, 192, 0.25);
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.12) 0%, rgba(192, 192, 192, 0.05) 100%);
    box-shadow: var(--shadow-md), var(--glow-medium);
    transform: translateY(-8px);
}



.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--accent-silver);
}

.feature-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==================== INFO SECTION ==================== */
.info-section {
    padding: 80px 0;
    border-top: 1px solid rgba(192, 192, 192, 0.1);
}

.info-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.info-card {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.08) 0%, rgba(192, 192, 192, 0.03) 100%);
    border: 1.5px solid rgba(192, 192, 192, 0.15);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md), var(--glow-weak);
    backdrop-filter: blur(15px);
}

.info-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.info-list {
    list-style: none;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.info-check {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* ==================== STEPS TIMELINE ==================== */
.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(192, 192, 192, 0.05);
    border-left: 3px solid var(--accent-silver);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(192, 192, 192, 0.1);
    border-left-color: rgba(192, 192, 192, 0.6);
    box-shadow: var(--glow-weak);
}

.step-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.3), rgba(192, 192, 192, 0.15));
    border: 1.5px solid rgba(192, 192, 192, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent-silver);
    flex-shrink: 0;
    box-shadow: var(--glow-weak);
}

.step-content h4 {
    color: var(--accent-silver);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ==================== FORMS ==================== */
.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    visibility: hidden;
    z-index: 100;
    transition: all 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal.full-width {
     width: 85vw;
     max-width: 700px;
     left: 50%;
     top: 50%;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-header {
     background: #000000;
     border-bottom: 2px solid rgba(192, 192, 192, 0.15);
     padding: 20px 25px;
     position: relative;
     border-radius: 16px 16px 0 0;
     backdrop-filter: blur(10px);
}

.modal-title {
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--accent-silver);
      margin-bottom: 8px;
      text-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
      letter-spacing: 0.5px;
      word-break: break-word;
      overflow-wrap: break-word;
      padding-right: 40px;
}

.modal-subtitle {
     font-size: 0.95rem;
     color: var(--text-muted);
     letter-spacing: 0.3px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: rgba(192, 192, 192, 0.1);
    border: 1px solid rgba(192, 192, 192, 0.2);
    color: var(--accent-silver);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
}

.close-btn:hover {
    background: rgba(192, 192, 192, 0.2);
    border-color: rgba(192, 192, 192, 0.4);
    box-shadow: var(--glow-weak);
    transform: rotate(90deg);
}

.modal-content {
      background: #000000;
      padding: 25px;
      border-radius: 0 0 16px 16px;
      box-shadow: 0 0 60px rgba(192, 192, 192, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
      max-width: 650px;
      border: 1px solid rgba(192, 192, 192, 0.15);
      backdrop-filter: blur(20px);
}

.success-modal {
    text-align: center;
    padding: 60px 40px;
}

.success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 20px;
    display: inline-block;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.success-message {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* ==================== FORM ELEMENTS ==================== */
.form-step {
    display: none;
    animation: fadeInUp 0.4s ease-out;
}

.form-step.active {
    display: block;
}

.step-header {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1.5px solid rgba(192, 192, 192, 0.1);
}

.step-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2), rgba(192, 192, 192, 0.1));
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 50px;
    color: var(--accent-silver);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.step-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.step-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 28px;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-silver);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(192, 192, 192, 0.15);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s ease;
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.05);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(192, 192, 192, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.2), inset 0 0 10px rgba(192, 192, 192, 0.05);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: 'Courier New', monospace;
}

.input-help {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
    font-style: italic;
}

/* ==================== RADIO BUTTONS ==================== */
.radio-group {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.radio-option {
    flex: 1;
    position: relative;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-indicator {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(192, 192, 192, 0.3);
    border-radius: 50%;
    transition: all 0.2s ease;
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.1);
}

.radio-option input[type="radio"]:checked ~ .radio-indicator {
    border-color: var(--accent-silver);
    background: rgba(192, 192, 192, 0.2);
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
}

.radio-indicator::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-silver);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.radio-option input[type="radio"]:checked ~ .radio-indicator::after {
    opacity: 1;
}

.radio-text {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border: 1.5px solid rgba(192, 192, 192, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    margin-left: 35px;
    transition: all 0.2s ease;
    cursor: pointer;
    color: var(--text-primary);
    font-weight: 500;
}

.radio-option input[type="radio"]:checked ~ .radio-text {
    border-color: rgba(192, 192, 192, 0.4);
    background: rgba(192, 192, 192, 0.08);
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.15);
}



/* ==================== DRAG DROP ==================== */
.drag-drop-zone {
    border: 2px dashed rgba(192, 192, 192, 0.2);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(192, 192, 192, 0.03);
    margin-bottom: 20px;
}

.drag-drop-zone:hover,
.drag-drop-zone.dragover {
    border-color: rgba(192, 192, 192, 0.4);
    background: rgba(192, 192, 192, 0.08);
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.2);
}



.drop-title {
    color: var(--accent-silver);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.drop-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.image-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.image-preview-item {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    border: 1.5px solid rgba(192, 192, 192, 0.2);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.1);
}

.image-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 28px;
    height: 28px;
    background: rgba(239, 68, 68, 0.9);
    border: none;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.2s ease;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
}

.image-remove-btn:hover {
    background: rgba(239, 68, 68, 1);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
}

/* ==================== PROGRESS INDICATOR ==================== */
.progress-indicator {
    margin-bottom: 40px;
}

.progress-dots {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(192, 192, 192, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid rgba(192, 192, 192, 0.1);
}

.progress-dot.active {
    background: var(--accent-silver);
    border-color: var(--accent-silver);
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.4);
    width: 16px;
    height: 16px;
}

.progress-bar {
    width: 100%;
    height: 3px;
    background: rgba(192, 192, 192, 0.1);
    border-radius: 2px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-silver), rgba(192, 192, 192, 0.6));
    width: 33.33%;
    transition: width 0.4s ease;
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
    border-radius: 2px;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
}

.progress-labels .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* ==================== BUTTONS ==================== */
.btn {
    padding: 14px 28px;
    border: 1.5px solid rgba(192, 192, 192, 0.3);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.25) 0%, rgba(192, 192, 192, 0.15) 100%);
    color: var(--accent-silver);
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.15);
}

.btn-primary:hover {
    border-color: rgba(192, 192, 192, 0.5);
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.35) 0%, rgba(192, 192, 192, 0.25) 100%);
    box-shadow: 0 0 30px rgba(192, 192, 192, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border-color: rgba(192, 192, 192, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(192, 192, 192, 0.4);
    color: var(--text-primary);
}

.btn-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(16, 185, 129, 0.2) 100%);
    color: var(--success-color);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.btn-success:hover {
    border-color: rgba(16, 185, 129, 0.6);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.4) 0%, rgba(16, 185, 129, 0.3) 100%);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    justify-content: center;
    padding-top: 25px;
    border-top: 1px solid rgba(192, 192, 192, 0.1);
}

.form-actions .btn {
    min-width: 150px;
}

/* ==================== DASHBOARD ==================== */
.admin-dashboard {
    padding: 40px;
    min-height: 100vh;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 30px;
    flex-wrap: wrap;
}

.dashboard-title h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.dashboard-title p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.dashboard-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex: 1;
    min-width: 300px;
    justify-content: flex-end;
}

.search-input {
    flex: 1;
    max-width: 400px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(192, 192, 192, 0.15);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-input:focus {
    outline: none;
    border-color: rgba(192, 192, 192, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.2);
}

.dashboard-tabs {
     display: flex;
     gap: 10px;
     margin-bottom: 20px;
     border-bottom: 1.5px solid rgba(192, 192, 192, 0.1);
     padding-bottom: 0;
}

.tab-button {
     padding: 12px 24px;
     background: transparent;
     border: none;
     color: var(--text-muted);
     border-bottom: 2px solid transparent;
     cursor: pointer;
     font-weight: 600;
     font-size: 0.95rem;
     transition: all 0.2s ease;
}

.tab-button:hover {
     color: var(--text-primary);
}

.tab-button.active {
     color: var(--accent-silver);
     border-bottom-color: var(--accent-silver);
}

.dashboard-content {
     background: linear-gradient(135deg, rgba(192, 192, 192, 0.05) 0%, rgba(192, 192, 192, 0.02) 100%);
     border: 1.5px solid rgba(192, 192, 192, 0.1);
     border-radius: 12px;
     overflow: hidden;
     box-shadow: var(--shadow-md);
}

.tab-content {
     display: none;
}

.tab-content.active {
     display: block;
}

.cases-container {
     overflow-x: auto;
}

.messages-container {
     padding: 20px;
}

.message-input-area {
     padding: 20px;
     border-bottom: 1.5px solid rgba(192, 192, 192, 0.1);
}

.message-input {
     width: 100%;
     padding: 12px 16px;
     background: rgba(255, 255, 255, 0.05);
     border: 1.5px solid rgba(192, 192, 192, 0.15);
     border-radius: 8px;
     color: var(--text-primary);
     font-family: inherit;
     resize: vertical;
     transition: all 0.2s ease;
     margin-bottom: 12px;
}

.message-input::placeholder {
     color: var(--text-muted);
}

.message-input:focus {
     outline: none;
     border-color: rgba(192, 192, 192, 0.4);
     background: rgba(255, 255, 255, 0.08);
     box-shadow: 0 0 20px rgba(192, 192, 192, 0.2);
}

.messages-list {
     max-height: 600px;
     overflow-y: auto;
}

.logs-container {
     padding: 20px;
     overflow-x: auto;
}

.logs-table {
     width: 100%;
     border-collapse: collapse;
     background: transparent;
}

.logs-table thead {
     background: linear-gradient(135deg, rgba(192, 192, 192, 0.1) 0%, rgba(192, 192, 192, 0.05) 100%);
     border-bottom: 1.5px solid rgba(192, 192, 192, 0.15);
}

.logs-table th {
     padding: 14px 16px;
     text-align: left;
     color: var(--accent-silver);
     font-weight: 700;
     font-size: 0.85rem;
     text-transform: uppercase;
     letter-spacing: 0.5px;
}

.logs-table td {
     padding: 12px 16px;
     border-bottom: 1px solid rgba(192, 192, 192, 0.08);
     color: var(--text-secondary);
     font-size: 0.9rem;
}

.logs-table tbody tr {
     transition: all 0.2s ease;
}

.logs-table tbody tr:hover {
     background: rgba(192, 192, 192, 0.05);
}

.logs-table tbody tr.log-error {
     border-left: 3px solid #ef4444;
}

.logs-table tbody tr.log-warning {
     border-left: 3px solid #f59e0b;
}

.logs-table tbody tr.log-info {
     border-left: 3px solid #3b82f6;
}

.cases-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--tertiary-dark);
}

.cases-table thead {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1) 0%, rgba(192, 192, 192, 0.05) 100%);
    border-bottom: 1.5px solid rgba(192, 192, 192, 0.15);
}

.cases-table th {
    padding: 18px;
    text-align: left;
    color: var(--accent-silver);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cases-table td {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(192, 192, 192, 0.08);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cases-table tbody tr {
    transition: all 0.2s ease;
}

.cases-table tbody tr:hover {
    background: rgba(192, 192, 192, 0.05);
    box-shadow: inset 0 0 20px rgba(192, 192, 192, 0.1);
}

.status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-open {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2), rgba(192, 192, 192, 0.1));
    color: var(--accent-silver);
    border: 1px solid rgba(192, 192, 192, 0.3);
}

.status-assigned {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(16, 185, 129, 0.15));
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.4);
}

.view-btn {
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.25), rgba(192, 192, 192, 0.15));
    border: 1px solid rgba(192, 192, 192, 0.3);
    color: var(--accent-silver);
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.1);
}

.view-btn:hover {
    border-color: rgba(192, 192, 192, 0.5);
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.35), rgba(192, 192, 192, 0.25));
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
    transform: translateY(-2px);
}

/* ==================== CASE DETAILS ==================== */
.case-details-container {
     padding: 20px 25px;
     max-height: calc(90vh - 180px);
     overflow-y: auto;
     width: 100%;
}

.case-details {
    display: block;
    width: 100%;
}

.detail-section {
      background: linear-gradient(135deg, rgba(192, 192, 192, 0.06) 0%, rgba(192, 192, 192, 0.02) 100%);
      border: 1.5px solid rgba(192, 192, 192, 0.12);
      border-radius: 12px;
      padding: 18px;
      margin-bottom: 12px;
      backdrop-filter: blur(10px);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 20px rgba(192, 192, 192, 0.08);
      transition: all 0.3s ease;
}

.detail-section:hover {
     border-color: rgba(192, 192, 192, 0.2);
     box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 30px rgba(192, 192, 192, 0.15);
}

.detail-section-full {
     width: 100%;
}

.section-title {
     font-size: 1.15rem;
     font-weight: 800;
     color: var(--accent-silver);
     margin-bottom: 15px;
     padding-bottom: 12px;
     border-bottom: 2px solid rgba(192, 192, 192, 0.15);
     text-shadow: 0 0 10px rgba(192, 192, 192, 0.15);
}

.detail-row {
     margin-bottom: 15px;
}

.detail-label {
     font-size: 0.8rem;
     font-weight: 800;
     color: var(--accent-silver);
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 8px;
     text-shadow: 0 0 5px rgba(192, 192, 192, 0.2);
}

.detail-value {
     font-size: 0.95rem;
     color: var(--text-secondary);
     line-height: 1.6;
     padding: 12px 14px;
     background: rgba(192, 192, 192, 0.08);
     border-left: 3px solid rgba(192, 192, 192, 0.3);
     border-radius: 6px;
     transition: all 0.2s ease;
}

.detail-value:hover {
     background: rgba(192, 192, 192, 0.12);
     border-left-color: rgba(192, 192, 192, 0.5);
}

.assign-btn {
     width: 100%;
     padding: 16px 20px;
     background: linear-gradient(135deg, rgba(192, 192, 192, 0.2) 0%, rgba(192, 192, 192, 0.1) 100%);
     border: 1.5px solid rgba(192, 192, 192, 0.35);
     color: var(--accent-silver);
     border-radius: 10px;
     font-size: 0.96rem;
     font-weight: 800;
     cursor: pointer;
     transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
     margin-bottom: 10px;
     box-shadow: 0 0 20px rgba(192, 192, 192, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
     text-transform: uppercase;
     letter-spacing: 0.5px;
}

.assign-btn:hover {
     border-color: rgba(192, 192, 192, 0.6);
     background: linear-gradient(135deg, rgba(192, 192, 192, 0.35) 0%, rgba(192, 192, 192, 0.2) 100%);
     box-shadow: 0 0 40px rgba(192, 192, 192, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
     transform: translateY(-2px);
}

.assign-btn.assigned {
      background: linear-gradient(135deg, rgba(16, 185, 129, 0.4) 0%, rgba(16, 185, 129, 0.25) 100%);
      border-color: rgba(16, 185, 129, 0.5);
      color: var(--success-color);
      box-shadow: 0 0 20px rgba(16, 185, 129, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.assign-btn.assigned:hover {
      box-shadow: 0 0 40px rgba(16, 185, 129, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.delete-btn {
      width: 100%;
      padding: 16px 20px;
      background: linear-gradient(135deg, rgba(239, 68, 68, 0.25) 0%, rgba(239, 68, 68, 0.12) 100%);
      border: 1.5px solid rgba(239, 68, 68, 0.4);
      color: #ff6b6b;
      border-radius: 10px;
      font-size: 0.96rem;
      font-weight: 800;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      margin-bottom: 10px;
      box-shadow: 0 0 20px rgba(239, 68, 68, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
      text-transform: uppercase;
      letter-spacing: 0.5px;
}

.delete-btn:hover {
      border-color: rgba(239, 68, 68, 0.7);
      background: linear-gradient(135deg, rgba(239, 68, 68, 0.4) 0%, rgba(239, 68, 68, 0.25) 100%);
      box-shadow: 0 0 40px rgba(239, 68, 68, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
      transform: translateY(-2px);
}

/* ==================== TABS SECTION ==================== */
.case-tabs {
     display: flex;
     gap: 0;
     border-bottom: 2px solid rgba(192, 192, 192, 0.15);
     margin-bottom: 25px;
     overflow-x: auto;
     background: linear-gradient(90deg, rgba(192, 192, 192, 0.02) 0%, rgba(192, 192, 192, 0.01) 100%);
}

.case-tab {
     padding: 12px 20px;
     background: transparent;
     border: none;
     color: var(--text-muted);
     font-weight: 700;
     cursor: pointer;
     border-bottom: 3px solid transparent;
     transition: all 0.3s ease;
     white-space: nowrap;
     font-size: 0.9rem;
     text-transform: capitalize;
     letter-spacing: 0.3px;
}

.case-tab:hover {
     color: var(--accent-silver);
     background: rgba(192, 192, 192, 0.08);
     border-bottom-color: rgba(192, 192, 192, 0.3);
}

.case-tab.active {
     color: var(--accent-silver);
     border-bottom-color: var(--accent-silver);
     background: rgba(192, 192, 192, 0.12);
     text-shadow: 0 0 10px rgba(192, 192, 192, 0.3);
     box-shadow: 0 2px 15px rgba(192, 192, 192, 0.15) inset;
}

.case-tab-content {
    display: none;
}

.case-tab-content.active {
    display: block;
    animation: fadeInUp 0.3s ease-out;
}

/* ==================== MESSAGES SECTION ==================== */
.messages-section {
    width: 100%;
}

.messages-container {
     max-height: 400px;
     overflow-y: auto;
     margin-bottom: 20px;
     background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(192, 192, 192, 0.02) 100%);
     border-radius: 10px;
     padding: 15px;
     border: 1px solid rgba(192, 192, 192, 0.1);
     backdrop-filter: blur(5px);
}

.message {
     background: linear-gradient(135deg, rgba(192, 192, 192, 0.08) 0%, rgba(192, 192, 192, 0.03) 100%);
     border-left: 3px solid rgba(192, 192, 192, 0.3);
     border-radius: 8px;
     padding: 15px;
     margin-bottom: 12px;
     transition: all 0.2s ease;
}

.message:hover {
     background: linear-gradient(135deg, rgba(192, 192, 192, 0.12) 0%, rgba(192, 192, 192, 0.05) 100%);
     border-left-color: rgba(192, 192, 192, 0.5);
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.message-user {
    font-weight: 700;
    color: var(--accent-silver);
    font-size: 0.9rem;
}

.message-time {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.message-content {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.message-input-group {
    display: flex;
    gap: 10px;
}

.message-input-group input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(192, 192, 192, 0.15);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.message-input-group input::placeholder {
    color: var(--text-muted);
}

.message-input-group input:focus {
    outline: none;
    border-color: rgba(192, 192, 192, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.message-input-group button {
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.25), rgba(192, 192, 192, 0.15));
    border: 1px solid rgba(192, 192, 192, 0.3);
    color: var(--accent-silver);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.message-input-group button:hover {
    border-color: rgba(192, 192, 192, 0.5);
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.35), rgba(192, 192, 192, 0.25));
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.2);
}

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    .nav-wrapper {
        padding: 20px 30px;
    }

    .main-container {
        padding: 0 30px;
    }

    .case-details {
        grid-template-columns: 1fr;
    }

    .detail-section-full {
        grid-column: 1;
    }

    .info-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        max-width: 90vw;
    }

    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-actions {
        width: 100%;
        justify-content: space-between;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }

    .radio-group {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 20px;
        padding: 15px 20px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .cta-card {
        padding: 40px 20px;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-content {
        padding: 20px;
    }
}

/* ==================== SCROLLBAR STYLING ==================== */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(192, 192, 192, 0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(192, 192, 192, 0.3), rgba(192, 192, 192, 0.2));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(192, 192, 192, 0.5), rgba(192, 192, 192, 0.4));
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.2);
}

/* ==================== UTILITY CLASSES ==================== */
.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.glow-text {
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
}

.glowing-border {
    border: 1.5px solid rgba(192, 192, 192, 0.3);
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.15);
}
