/* ================================================
   SIMITRATECH - Final Stylesheet
   ITC Benguiat Bold + Blur/Flicker Effects
   ================================================ */

/* ================================================
   SIMITRATECH - Stranger Things Style
   ================================================ */

/* Stranger Things Font */
@font-face {
    font-family: 'Stranger Things';
    src: url('../fonts/strangerthings.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Stranger Things Red */
    --st-red: #b81d24;
    --st-red-light: #e50914;
    --st-red-dark: #8b1419;
    --st-red-glow: rgba(184, 29, 36, 0.6);
    
    /* Neon Colors */
    --neon-cyan: #00f5ff;
    --neon-cyan-glow: rgba(0, 245, 255, 0.5);
    --neon-green: #39ff14;
    --neon-purple: #bf00ff;
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #b0b0c0;
    --text-muted: #606080;
    
    /* Glass */
    --glass-bg: rgba(5, 10, 20, 0.6);
    --glass-border: rgba(0, 245, 255, 0.15);
    
    /* Logo Font - Stranger Things */
    --logo-font: 'Stranger Things', 'Cinzel', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: 'Rajdhani', sans-serif; 
    color: var(--text-primary); 
    background: #000; 
    overflow-x: hidden;
}

/* ================================================
   STRANGER THINGS INTRO
   ================================================ */
.st-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.st-intro.fade-out {
    animation: introFadeOut 1.5s ease forwards;
}

@keyframes introFadeOut {
    to { opacity: 0; visibility: hidden; pointer-events: none; }
}

.st-camera {
    animation: cameraMove 12s ease-in-out forwards;
}

@keyframes cameraMove {
    0% { transform: scale(5) translateX(35%); }
    25% { transform: scale(3.5) translateX(10%); }
    50% { transform: scale(2) translateX(-15%); }
    75% { transform: scale(1.3) translateX(-5%); }
    100% { transform: scale(1) translateX(0); }
}

.st-title-wrapper {
    position: relative;
    padding: 0.5rem 0;
}

.st-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--st-red);
    opacity: 0;
}

.st-line-top { top: 0; animation: lineReveal 0.8s ease-out 9s forwards; }
.st-line-bottom { bottom: 0; animation: lineReveal 0.8s ease-out 9.2s forwards; }

@keyframes lineReveal {
    from { opacity: 0; transform: scaleX(0); }
    to { opacity: 1; transform: scaleX(1); }
}

.st-letters {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 95vw;
    padding: 0 1rem;
}

/* INTRO LETTERS - Pure black background, CLEAR outline only */
.st-letter {
    font-family: var(--logo-font);
    font-size: clamp(1.5rem, 7vw, 7rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.01em;
    
    /* OUTLINE ONLY - NO blur, NO glow */
    color: transparent;
    -webkit-text-stroke: 3px var(--st-red);
    text-stroke: 3px var(--st-red);
    text-shadow: none;
    
    opacity: 0;
    animation: letterShow 1s ease-out forwards;
}

.st-letter:nth-child(1)  { animation-delay: 0.3s; }
.st-letter:nth-child(2)  { animation-delay: 0.6s; }
.st-letter:nth-child(3)  { animation-delay: 0.9s; }
.st-letter:nth-child(4)  { animation-delay: 1.2s; }
.st-letter:nth-child(5)  { animation-delay: 1.5s; }
.st-letter:nth-child(6)  { animation-delay: 1.8s; }
.st-letter:nth-child(7)  { animation-delay: 2.1s; }
.st-letter:nth-child(8)  { animation-delay: 2.4s; }
.st-letter:nth-child(9)  { animation-delay: 2.7s; }
.st-letter:nth-child(10) { animation-delay: 3.0s; }

@keyframes letterShow {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.st-camera.assembled .st-letter {
    animation: introFlicker 3s ease-in-out infinite;
}

@keyframes introFlicker {
    0%, 100% { 
        opacity: 1;
        -webkit-text-stroke-color: var(--st-red); 
    }
    5% { opacity: 0.8; }
    10% { opacity: 1; }
    15% { opacity: 0.9; }
    20% { 
        opacity: 1;
        -webkit-text-stroke-color: var(--st-red-light);
    }
    25% { opacity: 0.85; }
    30% { opacity: 1; }
    50% { 
        opacity: 1;
        -webkit-text-stroke-color: var(--st-red);
    }
    55% { opacity: 0.9; }
    60% { opacity: 1; }
    75% { 
        opacity: 1;
        -webkit-text-stroke-color: var(--st-red-light);
    }
    80% { opacity: 0.85; }
    85% { opacity: 1; }
}

.skip-intro {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.5rem 1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    z-index: 10001;
}

.skip-intro:hover {
    color: var(--st-red);
    border-color: var(--st-red);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}

/* ================================================
   HERO LOGO - WITH BLUR (middle of page)
   ================================================ */
.hero-logo-main {
    margin-bottom: 2rem;
    opacity: 0;
    transition: opacity 0.5s ease;
    max-width: 95vw;
    padding: 0 1rem;
    text-align: center;
}

.hero-logo-main.visible {
    opacity: 1;
}

.hero-logo-main a {
    font-family: var(--logo-font);
    font-size: clamp(1.8rem, 8vw, 8rem);
    font-weight: 900;
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
    
    /* OUTLINE ONLY with shadow behind to pop */
    color: transparent;
    -webkit-text-stroke: 3px var(--st-red);
    text-stroke: 3px var(--st-red);
    text-shadow: 
        4px 4px 8px rgba(0, 0, 0, 0.9),
        -2px -2px 6px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(0, 0, 0, 0.8);
    
    /* FLICKER animation */
    animation: flicker 4s infinite;
    
    transition: all 0.3s;
}

.hero-logo-main a:hover {
    -webkit-text-stroke-color: var(--st-red-light);
    animation: none;
}

/* ================================================
   CORNER LOGO - NO BLUR, WITH FLICKER
   ================================================ */
.hero-logo-corner {
    position: fixed;
    top: 1.5rem;
    left: 2rem;
    z-index: 100;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.hero-logo-corner.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-logo-corner a {
    font-family: var(--logo-font);
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    
    /* NO BLUR - clean outline */
    color: transparent;
    -webkit-text-stroke: 2px var(--st-red);
    text-shadow: none;
    
    /* FLICKER animation */
    animation: flicker 4s infinite;
}

/* Flicker Animation */
@keyframes flicker {
    0%, 100% { 
        opacity: 1; 
        -webkit-text-stroke-color: var(--st-red);
    }
    5% { opacity: 0.8; }
    10% { opacity: 1; }
    15% { opacity: 0.9; }
    20% { 
        opacity: 1;
        -webkit-text-stroke-color: var(--st-red-light);
    }
    25% { opacity: 0.85; }
    30% { opacity: 1; }
    50% { 
        opacity: 1;
        -webkit-text-stroke-color: var(--st-red);
    }
    55% { opacity: 0.9; }
    60% { opacity: 1; }
    70% { opacity: 0.95; }
    75% { 
        opacity: 1;
        -webkit-text-stroke-color: var(--st-red-light);
    }
    80% { opacity: 0.85; }
    85% { opacity: 1; }
    90% { opacity: 0.9; }
    95% { opacity: 1; }
}

/* ================================================
   BOXED TREE/VIDEO CONTAINER
   ================================================ */
.hero-media-box {
    width: 100%;
    max-width: 400px;
    margin-bottom: 2rem;
    border-radius: 20px;
    border: 3px solid var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
    overflow: hidden;
    position: relative;
}

.hero-media-box img,
.hero-media-box video {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    max-width: 600px;
}

.hero-tagline {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    color: var(--neon-green);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-prompt {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.scroll-prompt span {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.3rem;
    animation: bounce 2s infinite;
}

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

/* ================================================
   BACKGROUND
   ================================================ */
.descent-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.descent-image {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    min-width: 100%;
    height: auto;
    min-height: 300vh;
    object-fit: cover;
    object-position: top center;
}

.descent-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
}

/* Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.8s;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: floatUp 12s ease-in-out infinite;
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.4; }
    100% { transform: translateY(-100vh); opacity: 0; }
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg, rgba(0,0,0,0.04) 0px, rgba(0,0,0,0.04) 1px, transparent 1px, transparent 3px);
    pointer-events: none;
    z-index: 9998;
    opacity: 0.12;
}

.depth-indicator {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.depth-line {
    width: 3px;
    height: 140px;
    background: rgba(255,255,255,0.06);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.depth-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, #ffaa00, var(--neon-cyan), var(--neon-purple));
    border-radius: 3px;
    transition: height 0.2s;
}

.depth-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.5rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
}

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 1rem 0;
    transition: all 0.4s;
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin-right: 1.5rem;
}

.nav-links a {
    font-family: 'Share Tech Mono', monospace;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s;
}

.nav-links a:hover { color: var(--neon-cyan); }

.nav-cta {
    font-family: 'Orbitron', sans-serif;
    padding: 0.5rem 1rem;
    background: rgba(0, 245, 255, 0.1);
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--neon-cyan);
    color: #000;
}

.mobile-toggle { display: none; }

/* ================================================
   CONTAINER & SECTIONS
   ================================================ */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 3rem);
    position: relative;
    z-index: 10;
}

section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 5rem 0;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn-neon {
    font-family: 'Orbitron', sans-serif;
    padding: 0.9rem 1.8rem;
    background: var(--glass-bg);
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-neon:hover {
    background: var(--neon-cyan);
    color: #000;
}

.btn-ghost {
    font-family: 'Share Tech Mono', monospace;
    padding: 0.9rem 1.8rem;
    background: var(--glass-bg);
    color: var(--text-secondary);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.btn-ghost:hover {
    border-color: var(--st-red);
    color: var(--st-red);
}

/* ================================================
   GLASS CARDS
   ================================================ */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s;
}

.glass-card:hover {
    border-color: rgba(0, 245, 255, 0.3);
    transform: translateY(-4px);
}

/* ================================================
   SECTION HEADERS
   ================================================ */
.section-header { text-align: center; margin-bottom: 3rem; }

.section-eyebrow {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 0.6rem;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.3rem);
    font-weight: 700;
    text-transform: uppercase;
}

.neon-cyan { color: var(--neon-cyan); }
.neon-red { color: var(--st-red); }
.neon-green { color: var(--neon-green); }
.neon-purple { color: var(--neon-purple); }

/* ================================================
   SERVICES - COLLAPSIBLE
   ================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card { cursor: pointer; }

.service-card.aviation { --card-color: var(--neon-cyan); }
.service-card.marine { --card-color: var(--neon-green); }
.service-card.education { --card-color: var(--neon-purple); }
.service-card.general { --card-color: #ffaa00; }

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.service-header-text {
    flex: 1;
}
}

.service-header-text { flex: 1; }

.service-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--card-color, var(--neon-cyan));
    margin-bottom: 0.2rem;
}

.service-subtitle {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-muted);
}

.service-toggle {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--card-color, var(--neon-cyan));
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.service-card.expanded .service-toggle {
    transform: rotate(180deg);
}

.service-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.service-card.expanded .service-content {
    max-height: 400px;
    padding-top: 1.25rem;
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.85rem;
}

.service-features {
    list-style: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.service-features li {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-muted);
    padding: 0.35rem 0;
}

.service-features li::before {
    content: '▸ ';
    color: var(--card-color, var(--neon-cyan));
}

/* ================================================
   ABOUT SECTION
   ================================================ */
.about-grid { display: grid; gap: 2rem; }

.about-mission {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-mission h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.about-mission p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.about-details {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.about-approach {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-approach h4,
.about-team-section h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--neon-cyan);
    text-align: center;
}

.about-approach p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.2rem;
    text-align: center;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.about-team-section {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--neon-cyan);
}

.stat-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.team-cards {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.team-card { 
    text-align: center; 
    padding: 2rem;
    width: 220px;
}

.team-avatar {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    border: 3px solid var(--neon-cyan);
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0, 245, 255, 0.3);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
}

.team-role {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    color: var(--st-red);
    margin: 0.2rem 0 0.4rem;
}

.team-bio {
    color: var(--text-secondary);
    font-size: 0.7rem;
}

/* ================================================
   CONTACT
   ================================================ */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
}

.contact-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(0, 245, 255, 0.08);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    font-size: 0.9rem;
}

.contact-item-text {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.contact-item-text strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.1rem;
}

.contact-form { padding: 1.75rem; }
.form-group { margin-bottom: 0.9rem; }

.form-group label {
    display: block;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.65rem;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--neon-cyan);
}

.form-group textarea { min-height: 80px; resize: vertical; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.form-submit {
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: rgba(0, 245, 255, 0.1);
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    border-radius: 8px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover {
    background: var(--neon-cyan);
    color: #000;
}

/* ================================================
   FOOTER - Logo with FLICKER (no blur)
   ================================================ */
.footer {
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid var(--glass-border);
    padding: 2.5rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

/* Footer logo - NO BLUR, WITH FLICKER */
.footer-logo {
    font-family: var(--logo-font);
    font-size: 1.8rem;
    font-weight: bold;
    color: transparent;
    -webkit-text-stroke: 2px var(--st-red);
    text-shadow: none;
    animation: flicker 5s infinite;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 0.75rem;
    line-height: 1.5;
}

.footer-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
    color: var(--neon-cyan);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }

.footer-links a {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--neon-cyan); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.footer-copyright {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1rem;
    color: var(--text-muted);
}

/* ================================================
   REVEAL ANIMATIONS
   ================================================ */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.6s ease;
}

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

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .about-details { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; text-align: center; }
    .depth-indicator { display: none; }
    .st-letter { -webkit-text-stroke-width: 2.5px; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .mobile-toggle { 
        display: flex; 
        flex-direction: column; 
        gap: 5px; 
        background: none; 
        border: none; 
        cursor: pointer;
        padding: 10px;
    }
    .mobile-toggle span { width: 25px; height: 2px; background: var(--neon-cyan); }
    .services-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; text-align: center; }
    .team-cards { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    
    .st-letter { 
        font-size: clamp(1.2rem, 6vw, 3rem);
        -webkit-text-stroke-width: 2px;
        letter-spacing: 0;
    }
    .hero-logo-main a { 
        font-size: clamp(1.5rem, 7vw, 3rem);
        -webkit-text-stroke-width: 2px;
        letter-spacing: 0;
    }
    .hero-media-box { max-width: 280px; }
    .skip-intro { bottom: 1rem; right: 1rem; font-size: 0.6rem; }
    .hero-logo-corner a { font-size: 1rem; }
}

@media (max-width: 480px) {
    .st-letter { 
        font-size: clamp(1rem, 5.5vw, 2rem);
        -webkit-text-stroke-width: 1.5px;
        letter-spacing: 0;
    }
    .hero-logo-main a {
        font-size: clamp(1.2rem, 6vw, 2rem);
        -webkit-text-stroke-width: 1.5px;
        letter-spacing: 0;
    }
    .hero-media-box { max-width: 240px; }
}
