/* ============================================
   ELITECH HUB - HOMEPAGE STYLES
   Aggressive, Disruptive, Memorable
   ============================================ */

/* ============================================
   1. HERO SECTION - Video Background
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
    /* Account for navbar */
}

/* Video Background */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Overlay for Text Readability */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(18, 52, 107, 0.5) 0%,
            rgba(10, 10, 10, 0.4) 50%,
            rgba(195, 21, 28, 0.3) 100%);
    z-index: -1;
}

/* Grid Pattern Overlay - REMOVED for clean video display */


/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: var(--space-12) 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
}

/* Hero Text */
.hero-text {
    color: var(--pure-white);
}

/* Trust Badges */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

/* Hero Title - MASSIVE Impact */
.hero-title {
    font-size: clamp(var(--text-5xl), 8vw, var(--text-8xl));
    font-weight: var(--font-black);
    line-height: 0.9;
    margin-bottom: var(--space-8);
    text-transform: uppercase;
    letter-spacing: var(--tracking-tighter);
}

.title-line {
    display: block;
    margin-bottom: var(--space-2);
}

.title-highlight {
    color: var(--disrupt-red);
    text-shadow:
        4px 4px 0 var(--ng-green),
        8px 8px 0 var(--stark-black);
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: clamp(var(--text-lg), 2vw, var(--text-2xl));
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-10);
    max-width: 600px;
    color: var(--gray-200);
}

.hero-subtitle strong {
    color: var(--pure-white);
    font-weight: var(--font-bold);
}

.hero-subtitle em {
    color: var(--disrupt-red);
    font-style: normal;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: var(--space-8);
    align-items: center;
    margin-bottom: var(--space-10);
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.05);
    border: 3px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: var(--font-black);
    color: var(--disrupt-red);
    line-height: 1;
}

.stat-label {
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--gray-300);
    margin-top: var(--space-2);
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: var(--space-4);
    }

    .stat-divider {
        width: 60px;
        height: 2px;
    }
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-10);
    flex-wrap: wrap;
}

/* Social Proof */
.hero-proof {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.proof-avatars {
    display: flex;
    align-items: center;
}

.proof-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    border: 4px solid var(--stark-black);
    margin-left: -15px;
    transition: transform var(--duration-base) var(--ease-out);
}

.proof-avatar:first-child {
    margin-left: 0;
}

.proof-avatar:hover {
    transform: scale(1.2) translateY(-5px);
    z-index: 10;
}

.proof-count {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--disrupt-red);
    border: 4px solid var(--stark-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-black);
    font-size: var(--text-sm);
    margin-left: -15px;
}

.proof-text {
    font-size: var(--text-sm);
    color: var(--gray-300);
    line-height: var(--leading-tight);
}

.proof-text strong {
    color: var(--pure-white);
}

/* ============================================
   2. HERO VISUAL - Terminal & Floating Cards
   ============================================ */

.hero-visual {
    position: relative;
    height: 600px;
}

/* Terminal Window */
.terminal-window {
    background: var(--stark-black);
    border: 4px solid var(--pure-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 0 8px rgba(220, 38, 38, 0.2);
}

.terminal-header {
    background: var(--gray-800);
    padding: var(--space-3) var(--space-4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--gray-700);
}

.terminal-controls {
    display: flex;
    gap: var(--space-2);
}

.terminal-dot {
    width: 14px;
    height: 14px;
    border-radius: var(--radius-full);
    border: 2px solid var(--stark-black);
}

.terminal-dot.red {
    background: #FF5F56;
}

.terminal-dot.yellow {
    background: #FFBD2E;
}

.terminal-dot.green {
    background: #27C93F;
}

.terminal-title {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    color: var(--gray-400);
}

.terminal-body {
    padding: var(--space-6);
    font-family: var(--font-mono);
    font-size: var(--text-base);
    color: var(--ng-green-light);
    min-height: 300px;
}

.terminal-line {
    display: flex;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.prompt {
    color: var(--disrupt-red);
    font-weight: var(--font-bold);
}

.command {
    color: var(--pure-white);
}

.cursor {
    animation: blinkCursor 1s infinite;
    color: var(--ng-green);
}

.terminal-output {
    color: var(--gray-400);
    line-height: var(--leading-relaxed);
}

.terminal-output .success {
    color: var(--ng-green);
}

.terminal-output .warning {
    color: var(--warning-amber);
}

.terminal-output .error {
    color: var(--disrupt-red);
}

/* Floating Skill Cards */
.skill-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.skill-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-4) var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--pure-white);
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    pointer-events: auto;
    transition: all var(--duration-base) var(--ease-out);
}

.skill-card:hover {
    background: rgba(220, 38, 38, 0.2);
    border-color: var(--disrupt-red);
    transform: scale(1.1);
}

.skill-card i {
    font-size: var(--text-2xl);
    color: var(--ng-green);
}

.skill-card:nth-child(1) {
    top: 10%;
    right: -10%;
}

.skill-card:nth-child(2) {
    top: 30%;
    right: -20%;
}

.skill-card:nth-child(3) {
    top: 60%;
    right: -15%;
}

.skill-card:nth-child(4) {
    top: 85%;
    right: -10%;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    font-size: var(--text-3xl);
    color: var(--pure-white);
    cursor: pointer;
    z-index: 10;
}

/* ============================================
   3. ANTI-GURU STATEMENT SECTION
   ============================================ */

.statement {
    background: var(--stark-black);
    color: var(--pure-white);
    border-top: 6px solid var(--disrupt-red);
    border-bottom: 6px solid var(--ng-green);
}

.statement-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.statement-title {
    font-size: clamp(var(--text-3xl), 5vw, var(--text-6xl));
    color: var(--disrupt-red);
    margin-bottom: var(--space-6);
}

.statement-text {
    font-size: clamp(var(--text-lg), 2vw, var(--text-2xl));
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-10);
}

.statement-proof {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
    text-align: left;
}

.proof-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--ng-green);
}

.proof-item i {
    font-size: var(--text-2xl);
    color: var(--ng-green);
    flex-shrink: 0;
}

/* ============================================
   4. PROGRAMS SECTION
   ============================================ */

.programs {
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-title {
    font-size: clamp(var(--text-3xl), 5vw, var(--text-6xl));
    margin-bottom: var(--space-4);
}

.section-subtitle {
    font-size: clamp(var(--text-lg), 2vw, var(--text-xl));
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
}

/* Pricing Card Styles */
.pricing-header {
    text-align: center;
    margin-bottom: var(--space-6);
}

.pricing-title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-2);
}

.pricing-tagline {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
}

.pricing-amount {
    text-align: center;
    margin-bottom: var(--space-8);
    padding: var(--space-6) 0;
    border-top: 3px solid var(--stark-black);
    border-bottom: 3px solid var(--stark-black);
}

.currency {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--disrupt-red);
}

.price {
    font-size: var(--text-5xl);
    font-weight: var(--font-black);
    color: var(--stark-black);
}

.price-text {
    font-size: var(--text-3xl);
    font-weight: var(--font-black);
    color: var(--stark-black);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--space-8);
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-features i {
    color: var(--ng-green);
    font-size: var(--text-lg);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================
   5. DIFFERENCE SECTION
   ============================================ */

.difference {
    background: var(--pure-white);
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
}

/* ============================================
   6. CTA SECTION
   ============================================ */

.cta {
    background: var(--disrupt-red);
    color: var(--pure-white);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 50px,
            rgba(0, 0, 0, 0.1) 50px,
            rgba(0, 0, 0, 0.1) 100px);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(var(--text-4xl), 6vw, var(--text-7xl));
    margin-bottom: var(--space-6);
}

.cta-text {
    font-size: clamp(var(--text-lg), 2vw, var(--text-2xl));
    margin-bottom: var(--space-10);
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-outline {
    border-color: var(--pure-white);
    color: var(--pure-white);
}

.cta .btn-outline:hover {
    background: var(--pure-white);
    color: var(--disrupt-red);
}

/* ============================================
   7. CONTACT SECTION
   ============================================ */

.contact {
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form {
    padding: var(--space-10);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-6);
}

.info-item i {
    font-size: var(--text-3xl);
    color: var(--disrupt-red);
    flex-shrink: 0;
}

.info-item h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

.info-item p {
    color: var(--color-text-muted);
    margin: 0;
}

/* ============================================
   8. FOOTER
   ============================================ */

.footer {
    background: var(--stark-black);
    color: var(--pure-white);
    padding: var(--space-16) 0 var(--space-8);
    border-top: 6px solid var(--disrupt-red);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-16);
    margin-bottom: var(--space-12);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
}

.footer-tagline {
    font-size: var(--text-lg);
    color: var(--gray-400);
    margin: var(--space-4) 0;
    line-height: var(--leading-relaxed);
}

.footer-credentials {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-6);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

@media (max-width: 640px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
}

.footer-column h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
    color: var(--disrupt-red);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: var(--space-3);
}

.footer-column a {
    color: var(--gray-400);
    transition: color var(--duration-base) var(--ease-out);
}

.footer-column a:hover {
    color: var(--pure-white);
}

.social-links a {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-8);
    border-top: 2px solid var(--gray-800);
    color: var(--gray-500);
    font-size: var(--text-sm);
}

.footer-bottom p {
    margin-bottom: var(--space-2);
}

/* ============================================
   TERMINAL SYNTAX HIGHLIGHTING
   Colorful terminal code output styling
   ============================================ */

/* Terminal Command Prompt */
.terminal-prompt {
    color: #DC2626;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(220, 38, 38, 0.6);
}

/* Terminal Success/Positive */
.terminal-success {
    color: #10B981;
    font-weight: 500;
}

.terminal-success-bright {
    color: #34D399;
    text-shadow: 0 0 8px rgba(52, 211, 153, 0.4);
    font-weight: 600;
}

/* Terminal Warning/Alert */
.terminal-warning {
    color: #F59E0B;
    font-weight: 500;
}

.terminal-warning-bright {
    color: #FCD34D;
    text-shadow: 0 0 8px rgba(252, 211, 77, 0.4);
    font-weight: 600;
}

/* Terminal Error/Critical */
.terminal-error {
    color: #EF4444;
    font-weight: 500;
}

.terminal-error-critical {
    color: #DC2626;
    text-shadow: 0 0 12px rgba(220, 38, 38, 0.6);
    font-weight: 600;
}

/* Terminal Info/Command */
.terminal-info {
    color: #60A5FA;
    font-weight: 500;
}

.terminal-info-cyan {
    color: #06B6D4;
    text-shadow: 0 0 8px rgba(6, 182, 212, 0.4);
    font-weight: 500;
}

/* Terminal Neutral/Output */
.terminal-output {
    color: #9CA3AF;
    opacity: 0.9;
}

.terminal-output-light {
    color: rgba(255, 255, 255, 0.7);
}

.terminal-output-dim {
    color: #6B7280;
    opacity: 0.75;
}

/* Terminal Value/Data */
.terminal-value {
    color: #A78BFA;
    font-weight: 500;
}

.terminal-value-code {
    color: #FCA5A5;
    font-family: 'Courier New', monospace;
    padding: 0 2px;
}

/* Terminal Port/Network */
.terminal-port {
    color: #10B981;
    font-weight: 600;
}

.terminal-port-open {
    color: #60A5FA;
    font-weight: 500;
}

.terminal-port-closed {
    color: #EF4444;
    font-weight: 600;
}

/* Terminal Service/Application */
.terminal-service {
    color: #F59E0B;
    font-weight: 500;
}

.terminal-version {
    color: #A78BFA;
    opacity: 0.9;
}

/* Terminal Status Indicators */
.terminal-badge-critical {
    color: #DC2626;
    font-weight: 600;
    text-shadow: 0 0 12px rgba(220, 38, 38, 0.6);
}

.terminal-badge-high {
    color: #F59E0B;
    font-weight: 600;
}

.terminal-badge-medium {
    color: #F59E0B;
    font-weight: 500;
}

.terminal-badge-low {
    color: #10B981;
    font-weight: 500;
}

/* Terminal Decorative Elements */
.terminal-border {
    color: #F59E0B;
    opacity: 0.8;
}

.terminal-border-success {
    color: #008751;
    text-shadow: 0 0 10px rgba(0, 135, 81, 0.8);
    font-weight: 600;
}

.terminal-border-critical {
    color: #DC2626;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.8);
    font-weight: 600;
}

/* Terminal Glow Effects */
.terminal-glow {
    text-shadow: 0 0 10px currentColor, 0 0 20px rgba(0, 135, 81, 0.4);
}

.terminal-glow-red {
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.8), 0 0 20px rgba(220, 38, 38, 0.4);
}

.terminal-glow-cyan {
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.8), 0 0 20px rgba(6, 182, 212, 0.4);
}

.terminal-glow-green {
    text-shadow: 0 0 10px rgba(0, 135, 81, 0.8), 0 0 20px rgba(0, 135, 81, 0.4);
}

.terminal-glow-yellow {
    text-shadow: 0 0 10px rgba(252, 211, 77, 0.8), 0 0 20px rgba(252, 211, 77, 0.4);
}