/* ============================================
   TRAFICAUTO - BUSINESS SIGNUP STYLESHEET
   Version 4.0 | Complete Cyber Hexagonal Theme with Premium Animations
   File: business-signup-style.css
   Developed with ❤️ by Janbaaz - Har button, har feature ke saath perfect animations!
   Adapted from Enterprise Version for Business Signup
============================================= */

/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors - Business Green */
    --primary: #10B981;
    --primary-dark: #059669;
    --primary-light: #34D399;
    --primary-glow: rgba(16, 185, 129, 0.6);
    --primary-glow-soft: rgba(16, 185, 129, 0.3);
    --primary-gradient: linear-gradient(135deg, #10B981, #34D399, #10B981);
    
    /* Secondary Colors - Deep Space */
    --secondary: #0F172A;
    --secondary-dark: #020617;
    --secondary-light: #1E293B;
    --secondary-glow: rgba(15, 23, 42, 0.8);
    
    /* Accent Colors */
    --accent: #F8FAFC;
    --accent-dark: #CBD5E1;
    --accent-darker: #94A3B8;
    
    /* Status Colors */
    --success: #10B981;
    --success-light: #34D399;
    --success-glow: rgba(16, 185, 129, 0.5);
    --success-gradient: linear-gradient(135deg, #10B981, #34D399, #10B981);
    
    --warning: #F59E0B;
    --warning-glow: rgba(245, 158, 11, 0.5);
    
    --error: #EF4444;
    --error-glow: rgba(239, 68, 68, 0.5);
    
    /* Gradients */
    --gradient-electric: linear-gradient(135deg, #10B981, #34D399, #10B981);
    --gradient-success: linear-gradient(135deg, #10B981, #34D399, #10B981);
    --gradient-cyber: linear-gradient(135deg, #0F172A, #1E293B, #0F172A);
    --gradient-dark: linear-gradient(135deg, #020617, #0F172A, #020617);
    
    /* Glass Effects */
    --glass-bg: rgba(16, 185, 129, 0.1);
    --glass-bg-dark: rgba(15, 23, 42, 0.8);
    --glass-border: rgba(16, 185, 129, 0.2);
    --glass-border-light: rgba(16, 185, 129, 0.3);
    --glass-shadow: 0 8px 32px rgba(16, 185, 129, 0.15);
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(16, 185, 129, 0.1);
    --shadow-md: 0 5px 20px rgba(16, 185, 129, 0.15);
    --shadow-lg: 0 10px 40px rgba(16, 185, 129, 0.2);
    --shadow-xl: 0 20px 60px rgba(16, 185, 129, 0.25);
    --shadow-neon: 0 0 30px rgba(16, 185, 129, 0.5);
    --shadow-neon-strong: 0 0 50px rgba(16, 185, 129, 0.8);
    --shadow-success: 0 0 30px rgba(16, 185, 129, 0.5);
    --shadow-inner: inset 0 2px 10px rgba(0, 0, 0, 0.5);
    
    /* Border Radius - Hexagonal Theme */
    --radius-hex: 30px 10px 30px 10px;
    --radius-hex-alt: 10px 30px 10px 30px;
    --radius-hex-sm: 15px 5px 15px 5px;
    --radius-hex-md: 25px 8px 25px 8px;
    --radius-hex-lg: 40px 15px 40px 15px;
    --radius-hex-xl: 50px 20px 50px 20px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-elastic: 0.6s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    
    /* Spacing */
    --space-xs: 5px;
    --space-sm: 10px;
    --space-md: 20px;
    --space-lg: 30px;
    --space-xl: 40px;
    --space-xxl: 50px;
    --space-xxxl: 60px;
    
    /* Z-Index Layers */
    --z-background: 1;
    --z-content: 10;
    --z-navbar: 1000;
    --z-floating: 2000;
    --z-cursor: 9999;
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--secondary);
    color: var(--accent);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 40%),
        repeating-linear-gradient(45deg, rgba(16, 185, 129, 0.02) 0px, rgba(16, 185, 129, 0.02) 2px, transparent 2px, transparent 10px);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: var(--z-content);
}

/* ===== NEON CURSOR WITH ENHANCED EFFECTS - BUSINESS GREEN ===== */
.neon-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: rgba(16, 185, 129, 0.3);
    border: 2px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999 !important;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
    backdrop-filter: blur(2px);
    mix-blend-mode: difference;
    left: 0;
    top: 0;
    opacity: 1;
    will-change: transform, left, top;
}

.neon-cursor::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
}

/* Cursor hover effects */
.neon-cursor.hover {
    width: 40px !important;
    height: 40px !important;
    background: rgba(16, 185, 129, 0.5) !important;
    border-color: var(--accent) !important;
    box-shadow: 0 0 40px var(--primary) !important;
}

.neon-cursor.input-hover {
    width: 30px !important;
    height: 30px !important;
    background: rgba(16, 185, 129, 0.4) !important;
    border-color: var(--success) !important;
    box-shadow: 0 0 30px var(--success) !important;
}

.neon-cursor.button-hover {
    width: 50px !important;
    height: 50px !important;
    background: rgba(16, 185, 129, 0.6) !important;
    border-color: var(--accent) !important;
    box-shadow: 0 0 50px var(--primary) !important;
}

/* ===== ANIMATION KEYFRAMES ===== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

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

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 20px var(--primary-glow);
        filter: brightness(1);
    }
    50% { 
        box-shadow: 0 0 50px var(--primary-glow);
        filter: brightness(1.2);
    }
}

@keyframes pulse-glow-strong {
    0%, 100% { 
        box-shadow: 0 0 30px var(--primary-glow);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 80px var(--primary-glow);
        transform: scale(1.05);
    }
}

@keyframes success-pulse {
    0%, 100% { 
        box-shadow: 0 0 20px var(--success-glow);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 60px var(--success-glow);
        transform: scale(1.05);
    }
}

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

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

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

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

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleInBounce {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes borderPulse {
    0%, 100% { 
        border-color: var(--primary);
        box-shadow: 0 0 10px var(--primary-glow);
    }
    50% { 
        border-color: var(--primary-light);
        box-shadow: 0 0 30px var(--primary-glow);
    }
}

@keyframes borderPulseSuccess {
    0%, 100% { 
        border-color: var(--success);
        box-shadow: 0 0 10px var(--success-glow);
    }
    50% { 
        border-color: var(--success-light);
        box-shadow: 0 0 30px var(--success-glow);
    }
}

@keyframes inputFocus {
    0% { 
        transform: scale(1);
        box-shadow: 0 0 0 rgba(16, 185, 129, 0);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 0 30px var(--primary-glow);
    }
    100% { 
        transform: scale(1);
        box-shadow: 0 0 20px var(--primary-glow);
    }
}

@keyframes buttonPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px var(--primary-glow);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 40px var(--primary-glow);
    }
}

@keyframes stepPulse {
    0%, 100% { 
        transform: scale(1);
        background: var(--primary);
        box-shadow: 0 0 20px var(--primary-glow);
    }
    50% { 
        transform: scale(1.1);
        background: var(--primary-light);
        box-shadow: 0 0 40px var(--primary-glow);
    }
}

@keyframes gradientShift {
    0%, 100% { 
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
    50% { 
        background-position: 100% 50%;
        filter: hue-rotate(10deg);
    }
}

@keyframes checkmark {
    0% { 
        transform: scale(0) rotate(-45deg); 
        opacity: 0; 
    }
    50% { 
        transform: scale(1.2) rotate(0deg); 
        opacity: 0.8; 
    }
    100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 1; 
    }
}

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

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

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

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

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

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

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes glow {
    0%, 100% { 
        text-shadow: 0 0 10px var(--primary);
    }
    50% { 
        text-shadow: 0 0 30px var(--primary);
    }
}

@keyframes numberPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); color: var(--primary-light); }
    100% { transform: scale(1); }
}

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

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

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

@keyframes confettiFall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

@keyframes floatParticle {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 40px) rotate(240deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes nodePulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
    }
    33% {
        transform: scale(1.1) rotate(120deg);
        box-shadow: 0 0 40px rgba(16, 185, 129, 0.4);
    }
    66% {
        transform: scale(0.95) rotate(240deg);
        box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
    }
}

@keyframes ballRoll {
    0% {
        transform: translateX(-50px) translateY(-50px) rotate(0deg);
    }
    25% {
        transform: translateX(50px) translateY(-30px) rotate(90deg);
    }
    50% {
        transform: translateX(100px) translateY(0) rotate(180deg);
    }
    75% {
        transform: translateX(50px) translateY(30px) rotate(270deg);
    }
    100% {
        transform: translateX(-50px) translateY(50px) rotate(360deg);
    }
}

@keyframes particleFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 0.8;
        transform: translate(20px, -20px) rotate(72deg);
    }
    40% {
        transform: translate(40px, -40px) rotate(144deg);
        opacity: 0.6;
    }
    60% {
        transform: translate(60px, -60px) rotate(216deg);
        opacity: 0.4;
    }
    80% {
        transform: translate(80px, -80px) rotate(288deg);
        opacity: 0.2;
    }
    100% {
        transform: translate(100px, -100px) rotate(360deg);
        opacity: 0;
    }
}

/* Animation Classes */
.animate-float { animation: float 3s ease-in-out infinite; }
.animate-pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }
.animate-success-pulse { animation: success-pulse 3s ease-in-out infinite; }
.animate-rotate-slow { animation: rotate-slow 20s linear infinite; }
.animate-rotate-medium { animation: rotate-medium 15s linear infinite; }
.animate-rotate-fast { animation: rotate-fast 10s linear infinite; }
.animate-fadeInUp { animation: fadeInUp 0.8s ease forwards; }
.animate-fadeInDown { animation: fadeInDown 0.8s ease forwards; }
.animate-fadeInLeft { animation: fadeInLeft 0.8s ease forwards; }
.animate-fadeInRight { animation: fadeInRight 0.8s ease forwards; }
.animate-scaleIn { animation: scaleIn 0.8s ease forwards; }
.animate-scaleInBounce { animation: scaleInBounce 0.8s ease forwards; }
.animate-borderPulse { animation: borderPulse 2s ease-in-out infinite; }
.animate-shimmer { 
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    background-size: 1000px 100%;
    animation: shimmer 3s linear infinite;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

.gradient-electric {
    background: var(--gradient-electric);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

.gradient-success {
    background: var(--gradient-success);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

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

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: var(--z-navbar);
    border-bottom: 2px solid var(--primary);
    padding: 15px 0;
    animation: fadeInDown 0.8s ease;
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.logo {
    height: 50px;
    width: auto;
    border-radius: 10px;
    filter: drop-shadow(0 0 10px var(--primary-glow));
    transition: all var(--transition-bounce);
    animation: pulse-glow 3s ease-in-out infinite;
}

.logo:hover {
    transform: scale(1.1) rotate(360deg);
    filter: drop-shadow(0 0 20px var(--primary));
}

.brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 28px;
    background: var(--gradient-electric);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 3s ease-in-out infinite;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--accent);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-normal);
}

.nav-menu a i {
    color: var(--primary);
    font-size: 16px;
    transition: transform var(--transition-bounce);
}

.nav-menu a:hover i {
    transform: translateY(-2px) rotate(360deg);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-electric);
    transition: width var(--transition-normal);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

.nav-menu a.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-cta .btn-cyber {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--primary);
    padding: 10px 20px;
    border-radius: var(--radius-hex-sm);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
    font-weight: 600;
}

.nav-cta .btn-cyber::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-electric);
    transition: left var(--transition-normal);
    z-index: -1;
}

.nav-cta .btn-cyber:hover::before {
    left: 0;
}

.nav-cta .btn-cyber:hover {
    color: var(--secondary);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: calc(var(--z-navbar) + 1);
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--gradient-electric);
    border-radius: 10px;
    transition: all var(--transition-bounce);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    width: 30px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    width: 30px;
}

/* ===== SIGNUP SECTION ===== */
.signup-section {
    padding: 150px 0 80px;
    min-height: 100vh;
    position: relative;
    z-index: var(--z-content);
    background: transparent;
}

.signup-container {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

/* ===== PROGRESS STEPS ===== */
.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
    padding: 0 30px;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 80px;
    right: 80px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary) 20%, 
        var(--primary-light) 50%, 
        var(--primary) 80%, 
        transparent);
    z-index: 1;
    animation: borderPulse 3s ease-in-out infinite;
}

.progress-steps::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 80px;
    right: 80px;
    height: 2px;
    background: var(--gradient-electric);
    filter: blur(5px);
    opacity: 0.5;
    z-index: 0;
    animation: pulse-glow 3s ease-in-out infinite;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    transition: all var(--transition-bounce);
    cursor: pointer;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary-light);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 rgba(16, 185, 129, 0);
}

.step-number::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: rotate-slow 10s linear infinite;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.step:hover .step-number::before {
    opacity: 1;
}

.step.active .step-number {
    background: var(--gradient-electric);
    color: var(--secondary);
    animation: stepPulse 2s ease-in-out infinite;
    border-color: transparent;
    box-shadow: var(--shadow-neon);
    transform: scale(1.1);
}

.step.active .step-number::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary);
    animation: ripple 2s ease-out infinite;
}

.step.completed .step-number {
    background: var(--success);
    border-color: var(--success);
    color: var(--secondary);
    animation: success-pulse 2s ease-in-out infinite;
}

.step.completed .step-number::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    font-size: 1.2rem;
    animation: checkmark 0.5s ease;
    color: var(--secondary);
    z-index: 3;
}

.step.completed .step-number span {
    display: none;
}

.step-label {
    font-size: 0.9rem;
    color: var(--accent-dark);
    font-weight: 500;
    transition: all var(--transition-normal);
    text-align: center;
    max-width: 100px;
}

.step.active .step-label {
    color: var(--primary);
    transform: translateY(5px);
    font-weight: 600;
}

.step.completed .step-label {
    color: var(--success);
}

/* ===== SIGNUP FORM ===== */
.signup-form {
    background: var(--glass-bg-dark);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-hex-lg);
    padding: 60px 50px;
    animation: scaleInBounce 0.8s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.signup-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
    animation: rotate-slow 30s linear infinite;
    pointer-events: none;
}

.signup-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    animation: shimmer 5s linear infinite;
    pointer-events: none;
    transform: skewX(-15deg);
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.form-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    animation: glow 3s ease-in-out infinite;
}

.form-subtitle {
    color: var(--accent-dark);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cyber-line-small {
    width: 80px;
    height: 4px;
    background: var(--gradient-electric);
    margin: 20px auto 0;
    border-radius: 10px;
    position: relative;
    animation: borderPulse 2s ease-in-out infinite;
}

.cyber-line-small::before,
.cyber-line-small::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    animation: pulse-glow 2s ease-in-out infinite;
}

.cyber-line-small::before { 
    left: -15px; 
    animation-delay: 0s;
}

.cyber-line-small::after { 
    right: -15px; 
    animation-delay: 1s;
}

/* ===== FORM STEPS ===== */
.form-step {
    display: none;
    animation: slideIn 0.6s ease;
    position: relative;
    z-index: 2;
}

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

.step-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(16, 185, 129, 0.3);
    position: relative;
    animation: fadeInLeft 0.5s ease;
}

.step-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100px;
    height: 3px;
    background: var(--gradient-electric);
    border-radius: 10px;
    animation: borderPulse 2s ease-in-out infinite;
}

/* ===== FORM GROUPS ===== */
.form-group {
    margin-bottom: 25px;
    position: relative;
    animation: fadeInUp 0.5s ease;
    animation-fill-mode: both;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }
.form-group:nth-child(6) { animation-delay: 0.6s; }
.form-group:nth-child(7) { animation-delay: 0.7s; }
.form-group:nth-child(8) { animation-delay: 0.8s; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: var(--accent);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
}

label i {
    color: var(--primary);
    margin-right: 5px;
    font-size: 0.9rem;
    transition: transform var(--transition-bounce);
}

label:hover i {
    transform: scale(1.2) rotate(10deg);
}

.required-asterisk {
    color: var(--error);
    margin-left: 3px;
    animation: pulse-glow 2s ease-in-out infinite;
}

input, select, textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-hex-sm);
    color: var(--accent);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all var(--transition-bounce);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(5px);
}

input:hover, select:hover, textarea:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: var(--shadow-neon);
    animation: inputFocus 0.4s ease;
    transform: scale(1.02);
    background: rgba(15, 23, 42, 0.9);
}

input:valid, select:valid, textarea:valid {
    border-color: rgba(16, 185, 129, 0.5);
}

input:invalid:not(:placeholder-shown), select:invalid:not(:placeholder-shown), textarea:invalid:not(:placeholder-shown) {
    border-color: var(--error);
    animation: shake 0.3s ease;
}

input::placeholder, textarea::placeholder {
    color: var(--accent-darker);
    opacity: 0.7;
    transition: opacity var(--transition-normal);
}

input:focus::placeholder, textarea:focus::placeholder {
    opacity: 0.4;
    transform: translateX(10px);
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    padding-right: 50px;
}

select:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2334D399' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* Phone Input Group */
.phone-input-group {
    display: flex;
    gap: 10px;
    position: relative;
}

.country-code {
    width: 120px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
}

.country-code option {
    background: var(--secondary);
    color: var(--accent);
}

.phone-number {
    flex: 1;
}

/* Social Input */
.social-input {
    display: flex;
    align-items: center;
}

.social-prefix {
    background: var(--gradient-electric);
    color: var(--secondary);
    padding: 15px 20px;
    border-radius: var(--radius-hex-sm) 0 0 var(--radius-hex-sm);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid transparent;
    box-shadow: 0 0 10px var(--primary-glow);
    animation: pulse-glow 3s ease-in-out infinite;
}

.social-input input {
    border-radius: 0 var(--radius-hex-sm) var(--radius-hex-sm) 0;
    border-left: none;
}

.social-input input:focus {
    border-left: none;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: var(--radius-hex-sm);
    transition: all var(--transition-normal);
}

.checkbox-group:hover {
    background: rgba(16, 185, 129, 0.05);
    transform: translateX(5px);
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary);
    position: relative;
    transition: all var(--transition-bounce);
}

.checkbox-group input[type="checkbox"]:checked {
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px var(--primary));
}

.checkbox-group label {
    margin: 0;
    font-size: 0.95rem;
    color: var(--accent-dark);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.checkbox-group:hover label {
    color: var(--accent);
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: none;
    position: relative;
    transition: all var(--transition-normal);
    font-weight: 600;
}

.checkbox-group a:hover {
    color: var(--primary-light);
    text-decoration: underline;
    letter-spacing: 0.5px;
}

/* Form Text */
.form-text {
    display: block;
    margin-top: 5px;
    font-size: 0.8rem;
    color: var(--accent-darker);
    transition: all var(--transition-normal);
}

.form-text i {
    color: var(--primary);
    margin-right: 3px;
    font-size: 0.7rem;
}

.form-text:hover {
    color: var(--accent-dark);
}

/* Field validation states */
.field-success {
    color: var(--success);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    animation: scaleIn 0.3s ease;
    z-index: 2;
}

.field-error {
    color: var(--error);
    font-size: 0.8rem;
    margin-top: 5px;
    display: block;
    animation: fadeInUp 0.3s ease;
}

/* ===== FORM BUTTONS ===== */
.form-buttons {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-next, .btn-prev, .btn-submit {
    padding: 18px 35px;
    border: none;
    border-radius: var(--radius-hex-sm);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-bounce);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    z-index: 1;
}

.btn-next {
    background: var(--gradient-electric);
    color: var(--secondary);
    flex: 1;
    animation: buttonPulse 3s ease-in-out infinite;
    box-shadow: var(--shadow-md);
}

.btn-prev {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--primary);
    flex: 0.5;
}

.btn-submit {
    background: var(--gradient-success);
    color: var(--secondary);
    flex: 2;
    animation: success-pulse 3s ease-in-out infinite;
    box-shadow: var(--shadow-md);
}

.btn-next::before, .btn-prev::before, .btn-submit::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;
    z-index: -1;
}

.btn-next:hover::before, .btn-prev:hover::before, .btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

.btn-next::after, .btn-prev::after, .btn-submit::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s linear infinite;
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.btn-next:hover::after, .btn-prev:hover::after, .btn-submit:hover::after {
    opacity: 1;
}

.btn-next:hover, .btn-prev:hover, .btn-submit:hover {
    transform: translateY(-5px) scale(1.02);
    letter-spacing: 1px;
}

.btn-next:hover {
    box-shadow: var(--shadow-neon-strong);
}

.btn-prev:hover {
    background: var(--primary);
    color: var(--secondary);
    border-color: transparent;
    box-shadow: var(--shadow-neon);
}

.btn-submit:hover {
    box-shadow: var(--shadow-success);
}

.btn-next i, .btn-prev i, .btn-submit i {
    transition: transform var(--transition-bounce);
    font-size: 1rem;
}

.btn-next:hover i, .btn-prev:hover i, .btn-submit:hover i {
    transform: translateX(5px) rotate(360deg);
}

.btn-prev:hover i {
    transform: translateX(-5px) rotate(-360deg);
}

.btn-next:active, .btn-prev:active, .btn-submit:active {
    transform: translateY(0) scale(0.98);
}

/* Disabled button state */
.btn-next.disabled, .btn-prev.disabled, .btn-submit.disabled {
    opacity: 0.5;
    pointer-events: none;
    filter: grayscale(0.5);
}

/* ===== FORM FOOTER ===== */
.form-footer {
    margin-top: 40px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    position: relative;
    z-index: 2;
}

.form-footer p {
    color: var(--accent-dark);
    margin: 8px 0;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
}

.form-footer p:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.form-footer a {
    color: var(--primary);
    text-decoration: none;
    transition: all var(--transition-bounce);
    font-weight: 600;
    position: relative;
}

.form-footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-electric);
    transition: width var(--transition-normal);
}

.form-footer a:hover::after {
    width: 100%;
}

.form-footer a:hover {
    color: var(--primary-light);
    letter-spacing: 0.5px;
}

/* ===== THANK YOU SECTION ===== */
.thank-you-section {
    animation: scaleInBounce 0.8s ease;
}

.thank-you-card {
    background: var(--glass-bg-dark);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-hex-xl);
    padding: 70px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease;
    box-shadow: var(--shadow-xl);
}

.thank-you-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    animation: rotate-slow 40s linear infinite;
    pointer-events: none;
}

.thank-you-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 6s linear infinite;
    pointer-events: none;
    transform: skewX(-15deg);
}

.thank-you-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    font-size: 3.5rem;
    color: var(--secondary);
    animation: success-pulse 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-success);
}

.thank-you-icon i {
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.5));
}

.thank-you-card h1 {
    font-size: 3rem;
    color: var(--success);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    animation: glow 3s ease-in-out infinite;
    text-shadow: 0 0 20px var(--success-glow);
}

.thank-you-card > p {
    color: var(--accent-dark);
    font-size: 1.2rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.registration-number {
    background: rgba(16, 185, 129, 0.15);
    border: 2px solid var(--success);
    border-radius: var(--radius-hex);
    padding: 25px;
    margin: 30px 0 40px;
    position: relative;
    z-index: 2;
    animation: borderPulseSuccess 2s ease-in-out infinite;
    backdrop-filter: blur(5px);
}

.registration-number strong {
    color: var(--accent);
    display: block;
    margin-bottom: 15px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.reg-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--success);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 3px;
    animation: numberPop 2s ease-in-out infinite;
    text-shadow: 0 0 20px var(--success-glow);
}

.thank-you-details {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-hex-lg);
    padding: 40px;
    margin: 40px 0;
    position: relative;
    z-index: 2;
    text-align: left;
    backdrop-filter: blur(5px);
    box-shadow: var(--shadow-lg);
}

.thank-you-details h4 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 1.4rem;
    padding-left: 10px;
    border-left: 4px solid var(--primary);
    animation: fadeInLeft 0.5s ease;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.detail-item {
    padding: 15px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-hex-sm);
    border: 1px solid rgba(16, 185, 129, 0.2);
    transition: all var(--transition-bounce);
    animation: fadeInUp 0.5s ease;
    animation-fill-mode: both;
}

.detail-item:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(16, 185, 129, 0.15);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.detail-item:nth-child(1) { animation-delay: 0.1s; }
.detail-item:nth-child(2) { animation-delay: 0.2s; }
.detail-item:nth-child(3) { animation-delay: 0.3s; }
.detail-item:nth-child(4) { animation-delay: 0.4s; }
.detail-item:nth-child(5) { animation-delay: 0.5s; }
.detail-item:nth-child(6) { animation-delay: 0.6s; }
.detail-item:nth-child(7) { animation-delay: 0.7s; }
.detail-item:nth-child(8) { animation-delay: 0.8s; }

.detail-item strong {
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-item span {
    color: var(--accent);
    font-size: 1rem;
    font-weight: 500;
}

.notification-message {
    background: rgba(16, 185, 129, 0.15);
    border: 2px solid var(--success);
    border-radius: var(--radius-hex);
    padding: 30px;
    margin: 40px 0;
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 2;
    animation: success-pulse 3s ease-in-out infinite;
    backdrop-filter: blur(5px);
}

.notification-message i {
    font-size: 2.5rem;
    color: var(--success);
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px var(--success-glow));
}

.notification-message p {
    color: var(--accent);
    margin: 0;
    font-size: 1.1rem;
    text-align: left;
    line-height: 1.6;
}

.notification-message strong {
    color: var(--success);
    font-weight: 700;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 50px 0;
    position: relative;
    z-index: 2;
}

.btn-home, .btn-register-another {
    padding: 18px 45px;
    border: none;
    border-radius: var(--radius-hex-sm);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-bounce);
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-home {
    background: var(--gradient-electric);
    color: var(--secondary);
    box-shadow: var(--shadow-md);
    animation: pulse-glow 3s ease-in-out infinite;
}

.btn-register-another {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--primary);
}

.btn-home::before, .btn-register-another::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;
    z-index: -1;
}

.btn-home:hover::before, .btn-register-another:hover::before {
    width: 300px;
    height: 300px;
}

.btn-home:hover, .btn-register-another:hover {
    transform: translateY(-5px) scale(1.05);
    letter-spacing: 1px;
}

.btn-home:hover {
    box-shadow: var(--shadow-neon-strong);
}

.btn-register-another:hover {
    background: var(--primary);
    color: var(--secondary);
    border-color: transparent;
    box-shadow: var(--shadow-neon);
}

.btn-home i, .btn-register-another i {
    transition: transform var(--transition-bounce);
}

.btn-home:hover i, .btn-register-another:hover i {
    transform: rotate(360deg);
}

.contact-info {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    position: relative;
    z-index: 2;
}

.contact-info p {
    color: var(--accent-dark);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.community-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 25px 0;
}

.community-link {
    padding: 12px 30px;
    border-radius: var(--radius-hex-sm);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-bounce);
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--accent);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.community-link::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;
    z-index: -1;
}

.community-link:hover::before {
    left: 100%;
}

.community-link.whatsapp:hover {
    background: #25D366;
    color: var(--secondary);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 30px #25D366;
    border-color: transparent;
}

.community-link.linkedin:hover {
    background: #0077B5;
    color: var(--secondary);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 30px #0077B5;
    border-color: transparent;
}

.community-link.telegram:hover {
    background: #0088cc;
    color: var(--secondary);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 30px #0088cc;
    border-color: transparent;
}

.community-link.discord:hover {
    background: #5865F2;
    color: var(--secondary);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 30px #5865F2;
    border-color: transparent;
}

.contact-details {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--accent-dark);
    font-size: 1rem;
    margin: 0;
    transition: all var(--transition-bounce);
    padding: 10px 20px;
    border-radius: var(--radius-hex-sm);
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.contact-details p:hover {
    transform: translateY(-3px) scale(1.02);
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--primary);
    color: var(--accent);
}

.contact-details i {
    color: var(--primary);
    font-size: 1.1rem;
    transition: transform var(--transition-bounce);
}

.contact-details p:hover i {
    transform: scale(1.2) rotate(360deg);
    color: var(--primary-light);
}

/* ===== FOOTER ===== */
footer {
    background: var(--secondary-dark);
    padding: 40px 0;
    border-top: 1px solid rgba(16, 185, 129, 0.3);
    position: relative;
    z-index: var(--z-content);
    margin-top: 50px;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: var(--accent-dark);
    margin: 12px 0;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
}

.footer-bottom p:hover {
    color: var(--accent);
}

.footer-links-small a {
    color: var(--accent-dark);
    text-decoration: none;
    margin: 0 8px;
    transition: all var(--transition-bounce);
    position: relative;
    padding: 0 5px;
}

.footer-links-small a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-electric);
    transition: width var(--transition-normal);
}

.footer-links-small a:hover::after {
    width: 100%;
}

.footer-links-small a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

/* ===== FLOATING ACTIONS ===== */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: var(--z-floating);
}

.floating-btn {
    width: 65px;
    height: 65px;
    border-radius: var(--radius-hex-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 26px;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    animation: float 3s ease-in-out infinite;
    cursor: pointer;
}

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

.floating-btn:hover::before {
    transform: translateX(100%);
}

.floating-btn::after {
    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;
    z-index: -1;
}

.floating-btn:hover::after {
    width: 130px;
    height: 130px;
}

.ai-assistant {
    background: linear-gradient(135deg, #10B981, #34D399);
    animation-delay: 0s;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.whatsapp-btn {
    background: #25D366;
    animation-delay: 0.2s;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

.call-btn {
    background: linear-gradient(135deg, #3B82F6, #10B981);
    animation-delay: 0.4s;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.floating-btn:hover {
    transform: scale(1.2) translateY(-5px);
    box-shadow: var(--shadow-neon-strong);
    border-color: var(--accent);
}

.floating-btn i {
    transition: transform var(--transition-bounce);
}

.floating-btn:hover i {
    transform: rotate(360deg) scale(1.1);
}

.floating-btn span {
    position: absolute;
    right: 80px;
    background: var(--secondary);
    color: var(--accent);
    padding: 10px 20px;
    border-radius: var(--radius-hex-sm);
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity var(--transition-normal), transform var(--transition-bounce);
    pointer-events: none;
    border: 1px solid var(--primary);
    box-shadow: var(--shadow-lg);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.floating-btn:hover span {
    opacity: 1;
    transform: translateX(-10px);
}

.floating-btn span::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 8px;
    border-color: transparent transparent transparent var(--primary);
}

/* ===== BACKGROUND ANIMATIONS ===== */
.animation-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: var(--z-background);
    overflow: hidden;
}

/* Floating Balls */
.floating-ball {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--gradient-electric);
    border-radius: 50%;
    filter: blur(3px);
    opacity: 0.15;
    animation: ballRoll 25s linear infinite;
    box-shadow: 0 0 40px var(--primary);
}

.ball-1 { top: 10%; left: 5%; animation-duration: 30s; }
.ball-2 { top: 20%; right: 10%; animation-duration: 35s; animation-delay: -5s; }
.ball-3 { bottom: 30%; left: 15%; animation-duration: 40s; animation-delay: -10s; }
.ball-4 { bottom: 10%; right: 20%; animation-duration: 45s; animation-delay: -15s; }
.ball-5 { top: 50%; left: 50%; animation-duration: 50s; animation-delay: -20s; }

/* Mind Map Nodes */
.mindmap-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--primary);
    border-radius: var(--radius-hex);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    animation: nodePulse 4s ease-in-out infinite;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
}

.mindmap-node i {
    font-size: 24px;
    filter: drop-shadow(0 0 5px var(--primary));
}

.node-1 { top: 15%; left: 10%; animation-delay: 0s; }
.node-2 { top: 25%; right: 15%; animation-delay: 0.5s; }
.node-3 { bottom: 30%; left: 20%; animation-delay: 1s; }
.node-4 { bottom: 20%; right: 25%; animation-delay: 1.5s; }
.node-5 { top: 60%; left: 80%; animation-delay: 2s; }
.node-6 { top: 80%; left: 40%; animation-delay: 2.5s; }
.node-7 { top: 40%; left: 30%; animation-delay: 3s; }
.node-8 { top: 70%; right: 10%; animation-delay: 3.5s; }

/* Data Particles */
.data-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(1px);
    animation: particleFloat 18s linear infinite;
    box-shadow: 0 0 10px var(--primary);
}

.particle-1 { top: 20%; left: 30%; animation-delay: 0s; }
.particle-2 { top: 50%; left: 70%; animation-delay: 2s; }
.particle-3 { top: 80%; left: 40%; animation-delay: 4s; }
.particle-4 { top: 30%; left: 80%; animation-delay: 6s; }
.particle-5 { top: 60%; left: 20%; animation-delay: 8s; }
.particle-6 { top: 40%; left: 50%; animation-delay: 10s; }
.particle-7 { top: 70%; left: 60%; animation-delay: 12s; }
.particle-8 { top: 10%; left: 90%; animation-delay: 14s; }

/* Connection Lines */
.connection-line {
    position: absolute;
    width: 2px;
    height: 120px;
    background: linear-gradient(180deg, transparent, var(--primary), transparent);
    transform-origin: top left;
    animation: rotate-slow 25s linear infinite;
    opacity: 0.15;
    filter: blur(1px);
}

.line-1 { top: 20%; left: 20%; transform: rotate(45deg); }
.line-2 { top: 30%; right: 30%; transform: rotate(-45deg); }
.line-3 { bottom: 40%; left: 40%; transform: rotate(90deg); }
.line-4 { bottom: 20%; right: 20%; transform: rotate(135deg); }

/* Floating Orbs */
.floating-orb {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16,185,129,0.15) 0%, transparent 70%);
    animation: pulse-glow 8s ease-in-out infinite;
    filter: blur(20px);
}

.orb-1 { top: 10%; right: 5%; }
.orb-2 { bottom: 15%; left: 8%; animation-delay: -3s; }
.orb-3 { top: 40%; left: 30%; animation-delay: -5s; }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .signup-container {
        max-width: 90%;
    }
    
    .progress-steps::before {
        left: 60px;
        right: 60px;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .form-title {
        font-size: 2.5rem;
    }
    
    .thank-you-card {
        padding: 50px 40px;
    }
    
    .thank-you-card h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    * {
        cursor: auto !important;
    }
    
    .neon-cursor {
        display: none !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--secondary);
        flex-direction: column;
        padding: 50px;
        gap: 25px;
        transition: left var(--transition-normal);
        border-bottom: 2px solid var(--primary);
        z-index: calc(var(--z-navbar) - 1);
        box-shadow: var(--shadow-xl);
        backdrop-filter: blur(20px);
    }

    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .signup-section {
        padding: 120px 0 60px;
    }
    
    .signup-form {
        padding: 40px 30px;
    }
    
    .form-title {
        font-size: 2.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .progress-steps::before {
        display: none;
    }
    
    .step {
        flex: 1;
    }
    
    .step-label {
        font-size: 0.8rem;
        max-width: 80px;
    }
    
    .form-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-next, .btn-prev, .btn-submit {
        width: 100%;
        justify-content: center;
    }
    
    .thank-you-card {
        padding: 40px 25px;
    }
    
    .thank-you-card h1 {
        font-size: 2rem;
    }
    
    .thank-you-icon {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }
    
    .reg-number {
        font-size: 1.5rem;
    }
    
    .notification-message {
        flex-direction: column;
        text-align: center;
    }
    
    .thank-you-actions {
        flex-direction: column;
    }
    
    .community-links {
        flex-direction: column;
    }
    
    .community-link {
        width: 100%;
        justify-content: center;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .floating-btn span {
        display: none;
    }
}

@media (max-width: 480px) {
    .signup-form {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .step-label {
        font-size: 0.7rem;
        max-width: 70px;
    }
    
    .phone-input-group {
        flex-direction: column;
    }
    
    .country-code {
        width: 100%;
    }
    
    .thank-you-card {
        padding: 30px 20px;
    }
    
    .thank-you-card h1 {
        font-size: 1.5rem;
    }
    
    .reg-number {
        font-size: 1.2rem;
        word-break: break-all;
    }
}

/* ===== UTILITY CLASSES ===== */
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }

.hidden { display: none; }
.flex { display: flex; }
.grid { display: grid; }

/* ===== LOADING STATES ===== */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border: 3px solid var(--accent-dark);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: -15px 0 0 -15px;
    z-index: 10;
}

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

::-webkit-scrollbar-track {
    background: var(--secondary);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-electric);
    border-radius: var(--radius-full);
    border: 2px solid var(--secondary);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #34D399, #10B981);
    box-shadow: 0 0 20px var(--primary-glow);
}

::-webkit-scrollbar-corner {
    background: var(--secondary);
}

/* ===== SELECTION COLOR ===== */
::selection {
    background: var(--primary);
    color: var(--secondary);
    text-shadow: none;
}

::-moz-selection {
    background: var(--primary);
    color: var(--secondary);
    text-shadow: none;
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .floating-actions,
    .animation-background,
    .form-buttons,
    .thank-you-actions,
    footer {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .signup-form,
    .thank-you-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}