/* Terminal Theme Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Courier New', Courier, monospace; 
    background: #000; 
    overflow-x: hidden;
    color: #00ffff;
}

/* Terminal Background */
.terminal-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -2;
}

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

/* Navigation */
.nav { 
    position: fixed; 
    width: 100%; 
    background: #000; 
    color: #00ffff; 
    z-index: 50; 
    border-bottom: 1px solid #00ffff;
}
.nav-content { 
    max-width: 80rem; 
    margin: 0 auto; 
    padding: 0 1rem; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    height: 4rem; 
}
.nav-brand { 
    font-weight: bold; 
    font-size: 1.25rem; 
    letter-spacing: 0.1em; 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
}
.nav-brand span { color: #00ffff; }
.nav-menu { display: none; }
.nav-menu.active { display: block; background: #000; padding: 1rem; border-top: 1px solid #00ffff; }
.nav-menu-item { 
    background: none; 
    border: none; 
    color: #00ffff; 
    padding: 0.75rem; 
    cursor: pointer; 
    width: 100%; 
    text-align: left; 
    font-size: 1rem; 
    font-family: 'Courier New', Courier, monospace; 
}
.nav-menu-item:hover { background: rgba(0, 255, 255, 0.1); }
.nav-toggle { 
    background: none; 
    border: none; 
    color: #00ffff; 
    cursor: pointer; 
    font-size: 1.5rem; 
    font-family: 'Courier New', Courier, monospace; 
}
@media (min-width: 768px) { 
    .nav-menu { display: flex; gap: 1rem; margin-left: 2.5rem; } 
    .nav-toggle { display: none; } 
}

/* Hero Section */
.hero { 
    background: #000; 
    padding: 5rem 1rem; 
    text-align: center; 
    position: relative; 
    overflow: hidden; 
    padding-top: 7rem; 
    border-bottom: 1px solid #00ffff;
}
@media (min-width: 640px) { .hero { padding-top: 8rem; } }
@media (min-width: 1024px) { .hero { padding: 8rem 1rem; } }
.hero h1 { 
    color: #00ffff; 
    font-size: 2rem; 
    font-weight: 900; 
    margin-bottom: 1rem; 
    font-family: 'Courier New', Courier, monospace; 
}
@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.5rem; } }
.hero h1 span { color: #00ffff; }
.hero p { 
    color: #80ffff; 
    font-size: 0.95rem; 
    max-width: 40rem; 
    margin: 0 auto 2rem; 
    font-family: 'Courier New', Courier, monospace; 
}
@media (min-width: 768px) { .hero p { font-size: 1.1rem; } }
.hero-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; align-items: center; }
@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }

/* Buttons */
.btn { 
    padding: 0.75rem 2rem; 
    border: none; 
    border-radius: 0; 
    cursor: pointer; 
    font-weight: 500; 
    transition: all 0.3s; 
    font-size: 0.95rem; 
    width: 100%; 
    font-family: 'Courier New', Courier, monospace; 
}
@media (min-width: 640px) { .btn { width: auto; } }
.btn-primary { 
    background: transparent;
    color: #00ffff; 
    border: 1px solid #00ffff;
}
.btn-primary:hover { 
    background: rgba(0, 255, 255, 0.1); 
}
.btn-secondary { 
    background: transparent; 
    color: #00ffff; 
    border: 1px solid #80ffff;
}
.btn-secondary:hover { 
    background: rgba(128, 255, 255, 0.1); 
}

/* Terminal Component */
.terminal { 
    background: #000; 
    padding: 2rem; 
    border-radius: 0; 
    border: 1px solid #00ffff;
    max-width: 30rem; 
    margin: 2rem auto 0; 
    font-family: 'Courier New', Courier, monospace;
}
.terminal-header { 
    display: flex; 
    gap: 0.75rem; 
    margin-bottom: 1rem; 
    padding-bottom: 1rem; 
    border-bottom: 1px solid #80ffff; 
}
.terminal-dot { width: 0.75rem; height: 0.75rem; border-radius: 50%; }
.terminal-red { background: #ff0000; }
.terminal-yellow { background: #ffff00; }
.terminal-green { background: #00ff00; }
.terminal-line { 
    color: #80ffff; 
    margin-bottom: 0.5rem; 
    font-family: 'Courier New', Courier, monospace; 
}
.terminal-prompt { color: #00ffff; margin-right: 0.5rem; }
.terminal-cmd { color: #00ffff; }
.terminal-success { color: #00ffff; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* Sections */
.section { padding: 3rem 1rem; }
@media (min-width: 768px) { .section { padding: 5rem 1rem; } }
.section-white { background: #000; color: #00ffff; }
.section-gray { background: #000; color: #00ffff; }
.section-dark { 
    background: #000; 
    color: #00ffff; 
    border-top: 1px solid #80ffff; 
    border-bottom: 1px solid #80ffff; 
}
.section-content { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }

/* Headings */
h2 { 
    font-size: 1.5rem; 
    font-weight: bold; 
    margin-bottom: 2rem; 
    color: #00ffff; 
    font-family: 'Courier New', Courier, monospace; 
}
@media (min-width: 768px) { h2 { font-size: 2rem; } }
h2.section-title { text-align: center; color: #00ffff; }
h2.section-title .label { 
    color: #00ffff; 
    font-size: 0.9rem; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 0.05em; 
    display: block; 
    margin-bottom: 0.5rem; 
}
h2.section-title .subtitle { 
    color: #80ffff; 
    font-size: 1.1rem; 
    display: block; 
    margin-top: 1rem; 
}

/* Grid Layout */
.grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 3rem; }
@media (min-width: 768px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid { grid-template-columns: repeat(3, 1fr); } }

/* Cards */
.card { 
    background: #000; 
    border: 1px solid #80ffff; 
    border-radius: 0; 
    padding: 2rem; 
    transition: all 0.3s ease;
}
.card:hover { 
    border-color: #00ffff;
    background: rgba(0, 255, 255, 0.05);
}
.card-icon { 
    width: 3rem; 
    height: 3rem; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 0; 
    color: #000; 
    margin-bottom: 1.5rem; 
}
.card-icon.blue { background: #80ffff; }
.card-icon.indigo { background: #80ffff; }
.card-icon.teal { background: #80ffff; }
.card h3 { 
    color: #00ffff; 
    font-size: 1.25rem; 
    font-weight: bold; 
    margin-bottom: 1rem; 
    font-family: 'Courier New', Courier, monospace; 
}
.card ul { list-style: none; }
.card li { 
    color: #80ffff; 
    margin-bottom: 0.75rem; 
    display: flex; 
    align-items: flex-start; 
}
.card li:before { 
    content: "✓"; 
    color: #00ffff; 
    margin-right: 0.5rem; 
    font-weight: bold; 
}

/* Timeline */
.timeline { 
    position: relative; 
    border-left: 2px solid #80ffff; 
    margin-left: 0.75rem; 
    padding-left: 1.5rem; 
}
@media (min-width: 640px) { 
    .timeline { 
        margin-left: 1.5rem; 
        padding-left: 2rem; 
    } 
}
.timeline-item { margin-bottom: 2rem; position: relative; }
@media (min-width: 640px) { .timeline-item { margin-bottom: 3rem; } }
.timeline-dot { 
    width: 1.25rem; 
    height: 1.25rem; 
    border-radius: 50%; 
    border: 4px solid #000; 
    background: #00ffff; 
    position: absolute; 
    left: -2.1rem; 
    top: 0; 
}
@media (min-width: 640px) { .timeline-dot { left: -2.8rem; } }
.timeline-date { 
    font-size: 0.875rem; 
    font-weight: 600; 
    color: #00ffff; 
    background: rgba(0, 255, 255, 0.1); 
    padding: 0.25rem 0.75rem; 
    border-radius: 0; 
    width: fit-content; 
    border: 1px solid #80ffff; 
}
.timeline-title { 
    font-size: 1.25rem; 
    font-weight: bold; 
    color: #00ffff; 
    margin-bottom: 0.5rem; 
    font-family: 'Courier New', Courier, monospace; 
}
.timeline-company { 
    color: #80ffff; 
    font-weight: 500; 
    margin-bottom: 1rem; 
}
.timeline-description { color: #80ffff; margin-bottom: 1rem; }
.timeline-list { list-style: disc; list-style-position: inside; color: #80ffff; }

/* Contact Form */
.contact-form { 
    background: #000; 
    padding: 2rem; 
    border-radius: 0; 
    border: 1px solid #80ffff; 
}
.form-group { margin-bottom: 1.5rem; }
.form-label { 
    display: block; 
    font-size: 0.875rem; 
    font-weight: 500; 
    color: #80ffff; 
    margin-bottom: 0.5rem; 
    font-family: 'Courier New', Courier, monospace; 
}
.form-input, .form-select, .form-textarea { 
    width: 100%; 
    padding: 0.75rem; 
    border: 1px solid #80ffff; 
    border-radius: 0; 
    font-size: 1rem; 
    font-family: 'Courier New', Courier, monospace; 
    background: #000; 
    color: #00ffff;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { 
    outline: none; 
    border-color: #00ffff; 
    background: #000;
}
@media (min-width: 768px) { .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; } }

/* Footer */
.footer { 
    background: #000; 
    color: #80ffff; 
    padding: 3rem 1rem; 
    border-top: 1px solid #80ffff;
}
.footer-content { 
    max-width: 80rem; 
    margin: 0 auto; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
}
.footer-brand { color: #00ffff; font-weight: bold; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-link { color: #80ffff; text-decoration: none; }
.footer-link:hover { color: #00ffff; }

/* Dashboard */
.dashboard { 
    background: #000; 
    border: 1px solid #80ffff; 
    border-radius: 0; 
    overflow: hidden; 
    font-family: 'Courier New', Courier, monospace; 
}
.dashboard-header { 
    background: #000; 
    padding: 0.75rem; 
    border-bottom: 1px solid #80ffff; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
}
.dashboard-header-dots { display: flex; gap: 0.5rem; }
.dashboard-body { padding: 1.5rem; }
.metric { 
    background: #000; 
    padding: 1rem; 
    border-radius: 0; 
    border: 1px solid #80ffff; 
    margin-bottom: 1rem; 
}
.metric-label { 
    color: #80ffff; 
    font-size: 0.875rem; 
    display: flex; 
    justify-content: space-between; 
    margin-bottom: 0.5rem; 
}
.metric-value { 
    color: #00ffff; 
    font-size: 1.5rem; 
    font-weight: bold; 
    margin-bottom: 0.5rem; 
}
.metric-bar { 
    width: 100%; 
    height: 0.25rem; 
    background: #000; 
    border-radius: 0; 
    overflow: hidden; 
    border: 1px solid #80ffff; 
}
.metric-bar-fill { 
    height: 100%; 
    background: #00ffff; 
    transition: width 0.5s; 
}
.status-item { 
    display: flex; 
    justify-content: space-between; 
    padding: 0.75rem; 
    background: #000; 
    border-radius: 0; 
    border: 1px solid #80ffff; 
    margin-bottom: 0.75rem; 
}
.status-label { color: #80ffff; }
.status-badge { 
    color: #00ffff; 
    font-size: 0.75rem; 
    padding: 0.125rem 0.5rem; 
    background: rgba(0, 255, 255, 0.1); 
    border-radius: 0; 
    border: 1px solid #80ffff; 
}
.dashboard-button { 
    width: 100%; 
    padding: 0.75rem; 
    background: transparent; 
    color: #00ffff; 
    border: 1px solid #00ffff; 
    border-radius: 0; 
    cursor: pointer; 
    margin-top: 1rem; 
    font-weight: 500; 
    transition: all 0.3s; 
    font-family: 'Courier New', Courier, monospace;
}
.dashboard-button:hover { 
    background: rgba(0, 255, 255, 0.1); 
}
.dashboard-button:disabled { 
    background: rgba(50, 50, 50, 0.5); 
    cursor: not-allowed; 
}
