/* ========================================
   EXOTICEXPANSION - FUTURISTIC DARK THEME
   Premium Influencer Management Agency
   ======================================== */

/* === CSS VARIABLES === */
:root {
    /* Colors */
    --deep-space: #0A0A0F;
    --dark-slate: #141420;
    --void-gray: #1E1E2E;
    --cyber-purple: #8B5CF6;
    --neon-blue: #00D4FF;
    --electric-gold: #FFD700;
    --magenta-glow: #FF006E;
    --frost-white: #F8FAFC;
    --ghost-gray: #94A3B8;
    
    /* Gradients */
    --hero-gradient: linear-gradient(135deg, #8B5CF6 0%, #00D4FF 50%, #FFD700 100%);
    --card-glow: linear-gradient(135deg, rgba(139,92,246,0.1) 0%, rgba(0,212,255,0.1) 100%);
    --button-shine: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    
    /* Typography */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Space Mono', monospace;
    
    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;
    
    /* Animations */
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* === GLOBAL RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--deep-space);
    color: var(--frost-white);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* === LOADING SCREEN === */
#loading-screen {
    position: fixed;
    inset: 0;
    background: var(--deep-space);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    width: 150px;
    height: 150px;
}

.loader-ring {
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-top-color: var(--cyber-purple);
    border-right-color: var(--neon-blue);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.loader-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
}

/* === CURSOR GLOW === */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139,92,246,0.15), transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s var(--ease-out);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.navbar-brand img {
    width: 45px;
    height: 45px;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

.brand-accent {
    background: var(--hero-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 35px;
}

.nav-link {
    position: relative;
    color: var(--ghost-gray);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--hero-gradient);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
    color: var(--frost-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-nav {
    padding: 10px 25px;
    background: var(--button-shine);
    color: var(--deep-space);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s var(--ease-out);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--frost-white);
    transition: all 0.3s;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

#particles-js {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--hero-gradient);
    opacity: 0.1;
    animation: gradientShift 15s ease-in-out infinite;
    z-index: 2;
}

@keyframes gradientShift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    color: var(--cyber-purple);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.gradient-text {
    background: var(--hero-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--ghost-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--button-shine);
    color: var(--deep-space);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
}

.btn-outline:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--ghost-gray);
    font-size: 0.85rem;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--cyber-purple), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

@keyframes timelinePulse {
    0% { 
        transform: scale(1);
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.6), inset 0 0 20px rgba(139, 92, 246, 0.2);
    }
    50% { 
        transform: scale(1.2);
        box-shadow: 0 0 60px rgba(139, 92, 246, 1), inset 0 0 30px rgba(139, 92, 246, 0.4);
    }
    100% { 
        transform: scale(1);
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.6), inset 0 0 20px rgba(139, 92, 246, 0.2);
    }
}

@keyframes timelineSlide {
    0% { 
        opacity: 0;
        transform: translateX(-50px);
    }
    100% { 
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes timelineLineGrow {
    from {
        height: 0;
    }
    to {
        height: 100%;
    }
}

/* === STATS BAR === */
.stats-bar {
    background: var(--dark-slate);
    padding: 60px 0;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-icon {
    font-size: 2rem;
    color: var(--cyber-purple);
    margin-bottom: 15px;
}

.stat-number {
    font-family: var(--font-mono);
    font-size: 3rem;
    font-weight: 700;
    background: var(--hero-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--ghost-gray);
    font-size: 0.95rem;
    margin-top: 10px;
}

/* === SECTIONS === */
section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    color: var(--cyber-purple);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--ghost-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* === ABOUT SECTION === */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-lead {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--frost-white);
    margin-bottom: 40px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--card-glow);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    transition: all 0.3s var(--ease-out);
}

.feature-item:hover {
    transform: translateX(10px);
    border-color: var(--cyber-purple);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
}

.feature-item i {
    font-size: 2rem;
    color: var(--neon-blue);
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--ghost-gray);
    font-size: 0.95rem;
}

.visual-card {
    position: relative;
    padding: 40px;
    background: var(--dark-slate);
    border-radius: 20px;
    overflow: hidden;
}

.visual-glow {
    position: absolute;
    inset: -50%;
    background: var(--hero-gradient);
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.visual-card img {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.5));
}

/* === SERVICES SECTION === */
.services-section {
    background: var(--dark-slate);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    position: relative;
    padding: 40px 30px;
    background: var(--void-gray);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    transition: all 0.3s var(--ease-out);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--hero-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--cyber-purple);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-glow);
    border-radius: 15px;
    font-size: 2rem;
    color: var(--neon-blue);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--ghost-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.service-features span {
    padding: 6px 15px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--cyber-purple);
}

.service-features i {
    font-size: 0.75rem;
    margin-right: 5px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--electric-gold);
    font-weight: 600;
    transition: gap 0.3s var(--ease-out);
}

.service-link:hover {
    gap: 15px;
}

/* === PROCESS SECTION === */
.process-section {
    background: var(--dark-slate);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.process-timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 0;
    z-index: 2;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        transparent 0%,
        var(--cyber-purple) 5%, 
        var(--neon-blue) 50%, 
        var(--electric-gold) 95%,
        transparent 100%
    );
    transform: translateX(-50%);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
    z-index: 1;
}

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    margin-bottom: 80px;
    align-items: center;
    min-height: 200px;
}

.process-step:last-child {
    margin-bottom: 0;
}

/* Odd steps - content on right */
.process-step:nth-child(odd) {
    grid-template-areas: "empty number content";
}

.process-step:nth-child(odd) .step-content {
    grid-area: content;
    margin-left: 60px;
}

.process-step:nth-child(odd) .step-number {
    grid-area: number;
}

/* Even steps - content on left */
.process-step:nth-child(even) {
    grid-template-areas: "content number empty";
}

.process-step:nth-child(even) .step-content {
    grid-area: content;
    text-align: right;
    margin-right: 60px;
}

.process-step:nth-child(even) .step-number {
    grid-area: number;
}

.step-number {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--deep-space);
    border: 5px solid var(--cyber-purple);
    border-radius: 50%;
    font-family: var(--font-mono);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--electric-gold);
    z-index: 10;
    position: relative;
    box-shadow: 
        0 0 40px rgba(139, 92, 246, 0.8),
        inset 0 0 30px rgba(139, 92, 246, 0.3);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-number::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--cyber-purple) 0%, 
        var(--neon-blue) 100%
    );
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.process-step:nth-child(odd) .step-number::after {
    right: -45px;
}

.process-step:nth-child(even) .step-number::after {
    left: -45px;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyber-purple), var(--neon-blue), var(--electric-gold));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
    animation: pulseRing 3s ease-in-out infinite;
}

@keyframes pulseRing {
    0%, 100% { 
        transform: scale(1);
        opacity: 0;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.2;
    }
}

.process-step:hover .step-number {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 
        0 0 60px rgba(255, 215, 0, 1),
        inset 0 0 40px rgba(255, 215, 0, 0.4);
}

.process-step:hover .step-number::before {
    opacity: 0.4;
    animation: none;
}

.step-content {
    padding: 40px 45px;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.12) 0%, 
        rgba(0, 212, 255, 0.06) 50%,
        rgba(30, 30, 46, 0.8) 100%
    );
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    max-width: 450px;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, 
        var(--cyber-purple) 0%, 
        var(--neon-blue) 50%, 
        var(--electric-gold) 100%
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-content::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.process-step:hover .step-content {
    transform: translateY(-12px);
    border-color: var(--electric-gold);
    box-shadow: 
        0 25px 70px rgba(139, 92, 246, 0.5),
        0 0 50px rgba(0, 212, 255, 0.3),
        inset 0 0 60px rgba(139, 92, 246, 0.1);
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.2) 0%, 
        rgba(0, 212, 255, 0.15) 50%,
        rgba(30, 30, 46, 0.9) 100%
    );
}

.process-step:hover .step-content::before {
    transform: scaleX(1);
}

.process-step:hover .step-content::after {
    opacity: 1;
}

/* Right-align icon for even steps */
.process-step:nth-child(even) .step-content .step-icon {
    float: right;
    margin-left: 25px;
    margin-bottom: 0;
    margin-top: 5px;
}

.step-icon {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.3) 0%, 
        rgba(0, 212, 255, 0.3) 100%
    );
    border: 3px solid var(--neon-blue);
    border-radius: 18px;
    font-size: 2rem;
    color: var(--neon-blue);
    margin-bottom: 20px;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.4),
        inset 0 0 20px rgba(0, 212, 255, 0.1);
    position: relative;
    z-index: 2;
}

.process-step:hover .step-icon {
    transform: rotateY(360deg) scale(1.1);
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.4) 0%, 
        rgba(139, 92, 246, 0.3) 100%
    );
    border-color: var(--electric-gold);
    color: var(--electric-gold);
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.6),
        inset 0 0 30px rgba(255, 215, 0, 0.2);
}

.step-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 18px;
    background: linear-gradient(135deg, 
        var(--frost-white) 0%,
        var(--neon-blue) 50%,
        var(--electric-gold) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    position: relative;
    z-index: 2;
    letter-spacing: -0.5px;
}

.step-content p {
    color: var(--ghost-gray);
    line-height: 1.9;
    font-size: 1.08rem;
    position: relative;
    z-index: 2;
}

.process-step:hover .step-content h3 {
    background: linear-gradient(135deg, 
        var(--electric-gold) 0%,
        var(--neon-blue) 50%,
        var(--frost-white) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-step:hover .step-content p {
    color: var(--frost-white);
}

/* === TESTIMONIALS === */
.testimonials-section {
    background: var(--dark-slate);
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    background: var(--card-glow);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    font-size: 1.2rem;
    color: var(--electric-gold);
    margin-bottom: 25px;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--cyber-purple);
}

.author-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.author-title {
    color: var(--ghost-gray);
    font-size: 0.9rem;
}

/* === CONTACT SECTION === */
.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    background: var(--dark-slate);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    color: var(--frost-white);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s var(--ease-out);
}

.form-input:focus {
    outline: none;
    border-color: var(--cyber-purple);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.form-group i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ghost-gray);
}

.form-group textarea + i {
    top: 20px;
    transform: none;
}

.btn-full {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
}

.info-card {
    padding: 30px;
    background: var(--card-glow);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    margin-bottom: 25px;
}

.info-card i {
    font-size: 2rem;
    color: var(--neon-blue);
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-card p,
.info-card a {
    color: var(--ghost-gray);
    line-height: 1.7;
}

.info-card a:hover {
    color: var(--electric-gold);
}

.social-connect h4 {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--void-gray);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    font-size: 1.3rem;
    transition: all 0.3s var(--ease-out);
}

.social-links a:hover {
    background: var(--cyber-purple);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

/* === FOOTER === */
.footer {
    background: var(--void-gray);
    padding: 80px 0 30px;
    position: relative;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--hero-gradient);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    width: 60px;
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--ghost-gray);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-slate);
    border-radius: 10px;
    transition: all 0.3s var(--ease-out);
}

.footer-social a:hover {
    background: var(--cyber-purple);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--ghost-gray);
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--electric-gold);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 18px;
    background: var(--dark-slate);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    color: var(--frost-white);
    font-family: var(--font-body);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--button-shine);
    border: none;
    border-radius: 10px;
    color: var(--deep-space);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    color: var(--ghost-gray);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 15px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark-slate);
        flex-direction: column;
        padding: 100px 40px;
        transition: right 0.3s var(--ease-out);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .about-content,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        padding: 30px 0;
    }
    
    .process-step {
        grid-template-columns: 90px 1fr;
        grid-template-areas: "number content";
        gap: 20px;
        margin-bottom: 50px;
        min-height: auto;
    }
    
    .timeline-line {
        left: 45px;
        top: 0;
        bottom: 0;
        width: 3px;
    }
    
    .step-number {
        grid-area: number;
        width: 90px;
        height: 90px;
        font-size: 1.6rem;
        align-self: start;
        margin-top: 0;
    }
    
    .step-number::after {
        display: none;
    }
    
    .step-content {
        grid-area: content;
        text-align: left !important;
        padding: 30px 25px;
        max-width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .process-step:nth-child(odd),
    .process-step:nth-child(even) {
        grid-template-areas: "number content";
    }
    
    .process-step:nth-child(odd) .step-content,
    .process-step:nth-child(even) .step-content {
        grid-area: content;
        text-align: left;
        margin: 0;
    }
    
    .process-step:nth-child(odd) .step-number,
    .process-step:nth-child(even) .step-number {
        grid-area: number;
    }
    
    .process-step:nth-child(even) .step-content .step-icon {
        float: none;
        margin-left: 0;
        margin-bottom: 20px;
        margin-top: 0;
    }
    
    .step-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.4rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* === INFLUENCERS SECTION === */
.influencers-section {
    background: var(--deep-space);
}

.influencers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.influencer-card {
    position: relative;
    background: var(--dark-slate);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s var(--ease-out);
    overflow: hidden;
}

.influencer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--hero-gradient);
    transform: scaleX(0);
    transition: transform 0.5s var(--ease-out);
}

.influencer-card:hover {
    transform: translateY(-10px);
    border-color: var(--cyber-purple);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.influencer-card:hover::before {
    transform: scaleX(1);
}

.influencer-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid var(--cyber-purple);
    overflow: hidden;
    position: relative;
}

.influencer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.influencer-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.influencer-handle {
    color: var(--neon-blue);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.influencer-location {
    color: var(--ghost-gray);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.influencer-location i {
    margin-right: 5px;
}

.influencer-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.influencer-stat {
    text-align: center;
}

.influencer-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--hero-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.influencer-stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--ghost-gray);
    margin-top: 5px;
}

.influencer-platforms {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.influencer-platforms i {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.influencer-platforms i:hover {
    background: var(--cyber-purple);
    transform: scale(1.1);
}

.influencer-content-type {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--neon-blue);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--neon-blue);
    margin-top: 10px;
}

.loading-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--ghost-gray);
}

.loading-state i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--cyber-purple);
}

.mt-5 {
    margin-top: 3rem;
}

.text-center {
    text-align: center;
}

/* === JOIN SECTION === */
.join-section {
    background: var(--dark-slate);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    padding: 30px;
    background: var(--card-glow);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s var(--ease-out);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--cyber-purple);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--electric-gold);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--ghost-gray);
    font-size: 0.95rem;
}

.application-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--void-gray);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 40px;
}

.talent-form {
    width: 100%;
}

.form-title {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    background: var(--hero-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.talent-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--frost-white);
    font-weight: 500;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 12px;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    transition: all 0.3s;
}

.checkbox-label:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--cyber-purple);
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"]:checked + span {
    color: var(--electric-gold);
    font-weight: 600;
}

.checkbox-label span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ghost-gray);
    transition: color 0.3s;
}

.checkbox-label span i {
    font-size: 1.2rem;
}

.form-footer {
    margin-top: 30px;
}

.form-note {
    color: var(--ghost-gray);
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 20px;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .influencers-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .application-container {
        padding: 25px;
    }
}

