/* Itworkz Modern UI - Flashy & Animated */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --secondary: #06b6d4;
    --accent: #f97316;
    --success: #10b981;
    --danger: #ef4444;
    --dark: #0f172a;
    --darker: #020617;
    --light: #f8fafc;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glow-primary: 0 0 40px rgba(14, 165, 233, 0.4);
    --glow-secondary: 0 0 40px rgba(6, 182, 212, 0.4);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--darker);
    color: white;
    padding-top: 70px;
    overflow-x: hidden;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(14, 165, 233, 0.4); }
    50% { box-shadow: 0 0 40px rgba(14, 165, 233, 0.8), 0 0 60px rgba(14, 165, 233, 0.4); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes slide-up {
    from { opacity: 0; transform: translateY(60px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slide-in-left {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slide-in-right {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scale-in {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

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

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

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes glow-pulse {
    0%, 100% { filter: drop-shadow(0 0 10px var(--primary)); }
    50% { filter: drop-shadow(0 0 25px var(--primary)) drop-shadow(0 0 40px var(--secondary)); }
}

/* Animation Classes */
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }
.animate-slide-up { animation: slide-up 0.8s ease-out forwards; }
.animate-slide-left { animation: slide-in-left 0.8s ease-out forwards; }
.animate-slide-right { animation: slide-in-right 0.8s ease-out forwards; }
.animate-fade-in { animation: fade-in 1s ease-out forwards; }
.animate-scale-in { animation: scale-in 0.6s ease-out forwards; }
.animate-bounce { animation: bounce 2s ease-in-out infinite; }
.animate-glow { animation: glow-pulse 3s ease-in-out infinite; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   NAVBAR - Glassmorphism
   ============================================ */

.navbar {
    background: rgba(15, 23, 42, 0.8) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand i {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: #ffffff !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: white !important;
}

.nav-link:hover::after {
    width: 80%;
}

/* ============================================
   BUTTONS - Neon Glow Effects
   ============================================ */

.btn {
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    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.2), transparent);
    transition: left 0.5s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.6);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary-light);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.btn-glow {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    animation: pulse-glow 2s ease-in-out infinite;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 16px;
}

.btn-secondary {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

/* ============================================
   HERO SECTION - Immersive Experience
   ============================================ */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 50%, #1e1b4b 100%);
}

/* Animated Background Orbs */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.hero-bg .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 10s ease-in-out infinite;
}

.hero-bg .orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.hero-bg .orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -100px;
    left: -100px;
    animation-delay: 2s;
}

.hero-bg .orb-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

/* Grid Pattern Overlay */
.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(14, 165, 233, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 165, 233, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    max-width: 550px;
    line-height: 1.7;
}

/* Hero Visual Card */
.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: visible;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.hero-card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

/* Ensure all content inside hero-card is visible above glow */
.hero-card form,
.hero-card .form-control,
.hero-card .form-label,
.hero-card .btn,
.hero-card input,
.hero-card textarea,
.hero-card a,
.hero-card .text-center,
.hero-card .row,
.hero-card .col-4,
.hero-card .bg-glass,
.hero-card h3,
.hero-card h4,
.hero-card p,
.hero-card i,
.hero-card div:not(.hero-card-glow) {
    position: relative;
    z-index: 2;
}

.hero-card > * {
    position: relative;
    z-index: 2;
}

/* Floating Elements */
.floating-badge {
    position: absolute;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    z-index: 3;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(14, 165, 233, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    width: auto;
    max-width: fit-content;
    display: inline-flex;
    align-items: center;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-badge:hover {
    transform: scale(1.05);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(14, 165, 233, 0.3);
}

.floating-badge i {
    font-size: 0.85rem;
}

.floating-badge-1 {
    top: -20px;
    left: 10%;
    animation: floatBubble1 6s ease-in-out infinite;
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(16, 185, 129, 0.2);
}

.floating-badge-2 {
    top: 5%;
    right: -25px;
    animation: floatBubble2 5s ease-in-out infinite;
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(14, 165, 233, 0.2);
}

.floating-badge-3 {
    top: 55%;
    left: -30px;
    animation: floatBubble3 7s ease-in-out infinite;
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(6, 182, 212, 0.2);
}

.floating-badge-4 {
    top: 40%;
    right: -25px;
    animation: floatBubble4 5.5s ease-in-out infinite;
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(249, 115, 22, 0.2);
}

.floating-badge-5 {
    bottom: 15%;
    right: -25px;
    animation: floatBubble5 6.5s ease-in-out infinite;
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(16, 185, 129, 0.2);
}

.floating-badge-6 {
    bottom: 10%;
    left: -30px;
    animation: floatBubble6 5.8s ease-in-out infinite;
    border-color: rgba(234, 179, 8, 0.4);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(234, 179, 8, 0.2);
}

@keyframes floatBubble1 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(5px, -8px); }
    50% { transform: translate(-3px, -12px); }
    75% { transform: translate(8px, -5px); }
}

@keyframes floatBubble2 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-6px, 5px); }
    50% { transform: translate(4px, -8px); }
    75% { transform: translate(-8px, -3px); }
}

@keyframes floatBubble3 {
    0%, 100% { transform: translateY(-50%) translate(0, 0); }
    33% { transform: translateY(-50%) translate(6px, -10px); }
    66% { transform: translateY(-50%) translate(-4px, 8px); }
}

@keyframes floatBubble4 {
    0%, 100% { transform: translateY(-50%) translate(0, 0); }
    33% { transform: translateY(-50%) translate(-5px, 8px); }
    66% { transform: translateY(-50%) translate(7px, -6px); }
}

@keyframes floatBubble5 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-5px, -6px); }
    50% { transform: translate(8px, -10px); }
    75% { transform: translate(3px, -4px); }
}

@keyframes floatBubble6 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(6px, -5px); }
    50% { transform: translate(-4px, -12px); }
    75% { transform: translate(-7px, -6px); }
    animation-delay: 2s;
}

/* Trust Badges */
.trust-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.avatar-stack {
    display: flex;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid var(--darker);
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.avatar:first-child { margin-left: 0; }
.avatar-1 { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.avatar-2 { background: linear-gradient(135deg, var(--secondary), #0891b2); }
.avatar-3 { background: linear-gradient(135deg, var(--success), #059669); }
.avatar-4 { background: linear-gradient(135deg, var(--accent), #d97706); }

.trust-text {
    color: #ffffff;
    font-size: 0.95rem;
}

.trust-text strong {
    color: white;
}

/* ============================================
   FEATURE CARDS - Glass Morphism
   ============================================ */

.features-section {
    padding: 8rem 0;
    position: relative;
    background: var(--darker);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

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

.section-subtitle {
    font-size: 1.125rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(14, 165, 233, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    opacity: 0.5;
    filter: blur(15px);
    z-index: -1;
}

.feature-icon.primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}
.feature-icon.primary::after { background: var(--primary); }

.feature-icon.secondary {
    background: linear-gradient(135deg, var(--secondary), #0891b2);
    color: white;
}
.feature-icon.secondary::after { background: var(--secondary); }

.feature-icon.accent {
    background: linear-gradient(135deg, var(--accent), #d97706);
    color: white;
}
.feature-icon.accent::after { background: var(--accent); }

.feature-icon.success {
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
}
.feature-icon.success::after { background: var(--success); }

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #ffffff;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   STATS SECTION - Animated Counters
   ============================================ */

.stats-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
}

.stat-item {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   HOW IT WORKS - Timeline Style
   ============================================ */

.how-it-works {
    padding: 8rem 0;
    background: var(--darker);
}

.step-card {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.4);
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px dashed var(--primary-light);
    animation: rotate 20s linear infinite;
}

.step-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: #ffffff;
    line-height: 1.7;
}

/* ============================================
   CTA SECTION - Neon Glow
   ============================================ */

.cta-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark) 100%);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.2;
    transform: translate(-50%, -50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   AUTH PAGES - Modern Glass Cards
   ============================================ */

.auth-container {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--darker);
    position: relative;
    overflow: hidden;
}

.auth-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.2;
}

.auth-container::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: var(--secondary);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.2;
}

.auth-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 1;
}

.auth-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 2.5rem;
    text-align: center;
}

.auth-header h2 {
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.auth-body {
    padding: 2.5rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.875rem 1rem;
    color: white;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
    color: white;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-label {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* ============================================
   DASHBOARD - Modern Dark Theme
   ============================================ */

.dashboard-wrapper {
    display: flex;
    margin-top: -70px;
    padding-top: 70px;
    min-height: 100vh;
}

.dashboard-sidebar {
    background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
    min-height: calc(100vh - 70px);
    padding: 1.5rem 0;
    border-right: 1px solid var(--glass-border);
}

.dashboard-sidebar .nav-link {
    color: #ffffff !important;
    padding: 0.875rem 1.5rem !important;
    margin: 0.25rem 0.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: none;
}

.dashboard-sidebar .nav-link::after {
    display: none;
}

.dashboard-sidebar .nav-link:hover {
    color: white !important;
    background: var(--glass);
}

.dashboard-sidebar .nav-link.active {
    color: white !important;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.dashboard-sidebar .nav-link i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.dashboard-content {
    padding: 2rem;
    background: var(--darker);
    flex-grow: 1;
    min-height: calc(100vh - 80px);
}

.dashboard-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.1);
}

.dashboard-stat {
    display: flex;
    align-items: center;
}

.dashboard-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.dashboard-stat-info h3 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, white, rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dashboard-stat-info p {
    margin: 0;
    color: #ffffff;
}

/* Tables */
.table {
    color: #ffffff;
}

.table thead th {
    border-bottom: 1px solid var(--glass-border);
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    background: transparent;
}

.table tbody td {
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0.75rem;
    vertical-align: middle;
}

.table-hover tbody tr:hover {
    background: var(--glass);
}

/* ============================================
   FOOTER - Modern Dark
   ============================================ */

footer {
    background: var(--darker) !important;
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
    margin-top: 0 !important;
}

footer h5, footer h6 {
    font-weight: 700;
}

footer a {
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

footer a:hover {
    color: var(--primary-light);
}

footer .text-muted {
    color: #ffffff !important;
}

/* ============================================
   BADGES & PILLS
   ============================================ */

.badge {
    font-weight: 600;
    padding: 0.5rem 0.875rem;
    border-radius: 8px;
}

.badge.bg-success {
    background: linear-gradient(135deg, var(--success), #059669) !important;
}

.badge.bg-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
}

.badge.bg-info {
    background: linear-gradient(135deg, var(--secondary), #0891b2) !important;
}

.badge.bg-warning {
    background: linear-gradient(135deg, var(--accent), #d97706) !important;
    color: white !important;
}

.badge.bg-danger {
    background: linear-gradient(135deg, var(--danger), #dc2626) !important;
}

.badge.bg-secondary {
    background: var(--glass) !important;
    border: 1px solid var(--glass-border);
}

/* ============================================
   SCROLL EFFECTS
   ============================================ */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991.98px) {
    .hero-section {
        padding: 4rem 0;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        margin-top: 3rem;
    }
    
    .floating-badge {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .trust-section {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   UTILITIES
   ============================================ */

.bg-glass {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow-primary {
    box-shadow: var(--glow-primary);
}

.glow-secondary {
    box-shadow: var(--glow-secondary);
}

.bg-light {
    background: var(--dark) !important;
}

.text-muted {
    color: #ffffff !important;
}

/* Services Page Specific */
.service-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(14, 165, 233, 0.2);
}

.service-card-header {
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.service-card-body {
    padding: 2rem;
}

/* Admin Section Cards */
.section-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Alert Styles */
.alert {
    border: none;
    border-radius: 12px;
}

.alert-info {
    background: rgba(6, 182, 212, 0.1);
    color: var(--secondary);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Card hover glow effect */
.hover-glow:hover {
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.3);
}

/* Shimmer loading effect */
.shimmer {
    background: linear-gradient(90deg, 
        var(--glass) 0%, 
        rgba(255,255,255,0.1) 50%, 
        var(--glass) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Particles animation for hero */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

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

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2.5s; }
.particle:nth-child(8) { left: 80%; animation-delay: 4.5s; }
.particle:nth-child(9) { left: 90%; animation-delay: 1.5s; }

/* Typing cursor effect */
.typing-cursor::after {
    content: '|';
    animation: blink 1s infinite;
}

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

/* Icon backgrounds for dashboard stats */
.bg-primary.bg-opacity-10 {
    background: rgba(14, 165, 233, 0.2) !important;
}

.bg-success.bg-opacity-10 {
    background: rgba(16, 185, 129, 0.2) !important;
}

.bg-info.bg-opacity-10 {
    background: rgba(6, 182, 212, 0.2) !important;
}

.bg-warning.bg-opacity-10 {
    background: rgba(245, 158, 11, 0.2) !important;
}

.text-primary { color: var(--primary) !important; }
.text-success { color: var(--success) !important; }
.text-info { color: var(--secondary) !important; }
.text-warning { color: var(--accent) !important; }

/* Rounded corners for various elements */
.rounded-4 { border-radius: 1rem !important; }

/* Link colors */
a {
    color: var(--primary-light);
}

a:hover {
    color: var(--primary);
}

/* Input groups */
.input-group-text {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: #ffffff;
}

/* Select styling */
select.form-control,
select.form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: white;
}

select.form-control option,
select.form-select option {
    background: var(--dark);
    color: white;
}

/* Card headers */
.card-header {
    background: var(--glass);
    border-bottom: 1px solid var(--glass-border);
}

.card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

/* List groups */
.list-group-item {
    background: transparent;
    border-color: var(--glass-border);
    color: rgba(255, 255, 255, 0.8);
}

/* Pagination */
.page-link {
    background: var(--glass);
    border-color: var(--glass-border);
    color: var(--primary-light);
}

.page-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
}

/* Form check */
.form-check-input {
    background-color: var(--glass);
    border-color: var(--glass-border);
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Modals */
.modal-content {
    background: var(--dark);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.modal-header {
    border-bottom: 1px solid var(--glass-border);
}

.modal-footer {
    border-top: 1px solid var(--glass-border);
}

.btn-close {
    filter: invert(1);
}

/* Progress bars */
.progress {
    background: var(--glass);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

/* Horizontal rules */
hr {
    border-color: var(--glass-border);
    opacity: 1;
}

/* Code blocks */
code {
    background: var(--glass);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    color: var(--accent);
}

pre {
    background: var(--dark);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1rem;
}

pre code {
    background: transparent;
    padding: 0;
}

/* Env status styling */
.env-status {
    font-family: 'Courier New', monospace;
    color: var(--accent);
}
