/* ==========================================================================
   HAWKS Cyber Security Labs - Core Design System & Stylesheet
   Theme: Dark Futuristic Hacker / Enterprise Security Platform
   Accents: Neon Green (#39FF14) + Electric Blue/Cyan (#00D2FF)
   ========================================================================== */

/* 1. Global Reset & Custom Properties */
:root {
    --bg-darker: #050608;
    --bg-main: #0a0c10;
    --bg-card: rgba(13, 18, 26, 0.65);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow-green: rgba(57, 255, 20, 0.15);
    --border-glow-blue: rgba(0, 210, 255, 0.15);

    --neon-green: #39FF14;
    --neon-blue: #00D2FF;
    --neon-indigo: #0066FF;
    --neon-red: #FF3B30;
    --neon-yellow: #FFCC00;

    --text-white: #FFFFFF;
    --text-highlight: #E2E8F0;
    --text-dim: #8A99AD;

    --font-heading: 'Orbitron', -apple-system, sans-serif;
    --font-body: 'Space Grotesk', -apple-system, sans-serif;

    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-darker);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-dim);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-blue);
    box-shadow: 0 0 8px var(--neon-blue);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button {
    font-family: inherit;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

ul {
    list-style: none;
}

/* 2. Cyber Canvas Background & Overlay Elements */
.cyber-background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #0c121e 0%, var(--bg-darker) 100%);
}

#cyberCanvas {
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0.85;
}

.vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 40%, rgba(5,6,8,0.9) 100%);
    pointer-events: none;
}

.scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        rgba(255,255,255,0) 50%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.3)
    );
    background-size: 100% 4px;
    z-index: 10;
    pointer-events: none;
    opacity: 0.15;
}

/* 3. Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.grid-3-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-4-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.align-center {
    align-items: center;
}

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

.text-white { color: var(--text-white); }
.text-highlight { color: var(--text-highlight); }
.text-dim { color: var(--text-dim); }
.text-green { color: var(--neon-green); }
.text-blue { color: var(--neon-blue); }
.text-cyan { color: #00d2ff; }
.text-red { color: var(--neon-red); }
.text-yellow { color: var(--neon-yellow); }

.green-glow-text {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.4);
}

.cyan-glow-text {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.4);
}

.glow-green-text {
    color: var(--neon-green);
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.3);
}

.glow-blue-text {
    color: var(--neon-blue);
    text-shadow: 0 0 8px rgba(0, 210, 255, 0.3);
}

/* Glassmorphism Card base */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px) saturate(120%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.glow-border-green {
    border-color: rgba(57, 255, 20, 0.2);
    box-shadow: 0 8px 32px rgba(5,6,8,0.5), 0 0 15px rgba(57,255,20,0.05);
}

.glow-border-blue {
    border-color: rgba(0, 210, 255, 0.2);
    box-shadow: 0 8px 32px rgba(5,6,8,0.5), 0 0 15px rgba(0,210,255,0.05);
}

.glow-hover-green:hover {
    border-color: rgba(57, 255, 20, 0.45);
    box-shadow: 0 12px 40px rgba(5,6,8,0.7), 0 0 20px rgba(57,255,20,0.15);
    transform: translateY(-4px);
}

.glow-hover-blue:hover {
    border-color: rgba(0, 210, 255, 0.45);
    box-shadow: 0 12px 40px rgba(5,6,8,0.7), 0 0 20px rgba(0,210,255,0.15);
    transform: translateY(-4px);
}

/* Status Indicators */
.blinking-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 1.8s infinite;
}
.bg-green {
    background-color: var(--neon-green);
    box-shadow: 0 0 8px var(--neon-green);
}
@keyframes pulse {
    0% { opacity: 0.4; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.1); box-shadow: 0 0 12px currentColor; }
    100% { opacity: 0.4; transform: scale(0.9); }
}

.live-blink-indicator {
    padding: 3px 8px;
    font-size: 10px;
    font-family: var(--font-heading);
    border-radius: 4px;
    color: var(--bg-darker);
    font-weight: 700;
    letter-spacing: 1px;
}

.glow-green-bg {
    background-color: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}
.glow-blue-bg {
    background-color: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}

/* 4. Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-green) 0%, #15B300 100%);
    color: var(--bg-darker);
    box-shadow: 0 4px 15px rgba(57, 255, 20, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(0, 210, 255, 0.08);
    border: 1px solid rgba(0, 210, 255, 0.3);
    color: var(--neon-blue);
}

.btn-secondary:hover {
    background: rgba(0, 210, 255, 0.15);
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.3);
    transform: translateY(-2px);
}

.btn-nav-cta {
    padding: 10px 18px;
    background: rgba(0, 102, 255, 0.12);
    border: 1px solid rgba(0, 102, 255, 0.4);
    color: var(--neon-blue);
    font-size: 13px;
    border-radius: 6px;
}

.btn-nav-cta:hover {
    background: rgba(0, 210, 255, 0.2);
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
}

.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background: transparent;
    padding: 8px 0;
    box-shadow: none;
    border-bottom: none;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hawks-logo {
    border-radius: 50%;
    padding: 4px;
    background: rgba(0, 210, 255, 0.08);
    border: 1.5px solid rgba(0, 210, 255, 0.4);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.25);
    transition: var(--transition-smooth);
    object-fit: cover;
}

.logo-container:hover .hawks-logo {
    transform: rotate(5deg) scale(1.05);
    border-color: var(--neon-green);
    background: rgba(57, 255, 20, 0.08);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.45);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 2px;
    color: var(--text-white);
    line-height: 1.1;
    background: linear-gradient(to right, #FFFFFF, var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-sub {
    font-size: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 3.5px;
    color: var(--neon-green);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.8px;
    color: var(--text-dim);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover {
    color: var(--text-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-green);
    transition: var(--transition-fast);
    box-shadow: 0 0 8px var(--neon-green);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    z-index: 105;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition-fast);
}

/* 6. Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.hero-content-wrapper {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-content-wrapper.centered-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
}

.hero-content-wrapper.centered-hero .hero-text-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-content-wrapper.centered-hero .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.hero-content-wrapper.centered-hero .hero-buttons {
    justify-content: center;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(57, 255, 20, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.15);
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 72px;
    line-height: 1.05;
    color: var(--text-white);
    letter-spacing: -1px;
    margin-bottom: 24px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    max-width: 540px;
    margin-bottom: 40px;
    color: var(--text-highlight);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Interactive Hero Terminal */
.terminal-window {
    background: rgba(7, 10, 15, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 0;
    overflow: hidden;
    height: 380px;
    display: flex;
    flex-direction: column;
}

.terminal-header {
    background: rgba(12, 17, 26, 0.9);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.term-btn {
    width: 12px;
    height: 12px;
    border-radius: 0;
}
.term-btn.close { background-color: var(--neon-red); }
.term-btn.minimize { background-color: var(--neon-yellow); }
.term-btn.maximize { background-color: var(--neon-green); }

.terminal-title {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 0.5px;
    color: var(--text-dim);
}

.terminal-status {
    font-size: 10px;
    color: var(--neon-green);
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.terminal-body {
    padding: 20px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    color: var(--text-highlight);
    flex-grow: 1;
    overflow-y: auto;
    background: linear-gradient(135deg, rgba(5,6,8,0.3) 0%, rgba(13,18,26,0.3) 100%);
}

.term-line {
    margin-bottom: 8px;
    word-break: break-all;
    line-height: 1.4;
}

.term-prompt {
    color: var(--neon-green);
    font-weight: 700;
}

.text-dim { color: var(--text-dim); }

.typing-cursor {
    animation: blink 1s infinite;
    font-weight: bold;
    color: var(--neon-green);
}
@keyframes blink {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.text-green { color: var(--neon-green); }
.text-cyan { color: #00d2ff; }

/* Scroll down Mouse indicator */
.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    transition: var(--transition-fast);
    z-index: 10;
}

.scroll-down-indicator:hover {
    color: var(--neon-green);
}

.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid currentColor;
    border-radius: 12px;
    position: relative;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background-color: currentColor;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; top: 6px; }
    50% { opacity: 0; top: 18px; }
    100% { opacity: 1; top: 6px; }
}

.arrow-down {
    width: 8px;
    height: 8px;
    border-bottom: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    animation: arrow-bounce 1.5s infinite;
}

@keyframes arrow-bounce {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(5px) rotate(45deg); }
}

/* 7. Common Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 40px;
    line-height: 1.2;
    color: var(--text-white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

/* About HAWKS Section Layout */
.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

/* Holographic radar visualizer */
.holo-radar-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
}

.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1.5px solid rgba(0, 210, 255, 0.15);
    border-radius: 50%;
}

.radar-circle.rc1 { width: 100%; height: 100%; }
.radar-circle.rc2 { width: 66%; height: 66%; border-style: dashed; }
.radar-circle.rc3 { width: 33%; height: 33%; }

.radar-sweep {
    position: absolute;
    width: 50%;
    height: 50%;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, rgba(57, 255, 20, 0.2) 0%, transparent 80%);
    transform-origin: bottom right;
    border-radius: 100% 0 0 0;
    animation: sweep 6s linear infinite;
}

@keyframes sweep {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.radar-center-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background-color: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--neon-green);
}

.radar-node {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: node-flash 2.5s infinite alternate;
}

.radar-node.node-1 { top: 25%; left: 20%; background-color: var(--neon-green); box-shadow: 0 0 8px var(--neon-green); }
.radar-node.node-2 { top: 70%; left: 80%; background-color: var(--neon-blue); box-shadow: 0 0 8px var(--neon-blue); animation-delay: 0.6s; }
.radar-node.node-3 { top: 15%; left: 70%; background-color: #00d2ff; box-shadow: 0 0 8px #00d2ff; animation-delay: 1.2s; }

@keyframes node-flash {
    0% { opacity: 0.2; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1.2); }
}

.about-text-wrapper {
    display: flex;
    flex-direction: column;
}

.section-desc {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.4;
}

.section-body {
    margin-bottom: 36px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat-card {
    padding: 20px 16px;
    text-align: center;
    background: rgba(13, 18, 26, 0.4);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
}

.stat-plus {
    font-size: 18px;
    font-weight: 700;
    color: var(--neon-green);
}

.stat-label {
    display: block;
    font-size: 11px;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* 8. Platforms Section */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.platform-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.card-icon-wrapper {
    font-size: 40px;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 8px currentColor);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
}

.card-desc {
    margin-bottom: 24px;
    flex-grow: 1;
    font-size: 14px;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
}

.card-features span {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-highlight);
}

.card-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
}

.card-link i {
    transition: var(--transition-fast);
}

.card-link:hover i {
    transform: translateX(4px);
}

/* 9. Services Section */
.services-header-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-graphics-terminal {
    margin-top: 40px;
    border-radius: 0;
    overflow: hidden;
}

.services-graphics-terminal .term-header {
    background: rgba(12, 17, 26, 0.85);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 11px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.term-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.term-label {
    color: var(--text-white);
    font-weight: 500;
}

.term-content-simple {
    padding: 16px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    background: rgba(5, 6, 8, 0.4);
    height: 180px;
    overflow-y: auto;
}

.feed-item {
    margin-bottom: 10px;
    line-height: 1.4;
}

.feed-time {
    color: var(--text-dim);
}

.services-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    display: flex;
    gap: 24px;
    padding: 24px;
    align-items: flex-start;
    background: rgba(13, 18, 26, 0.45);
}

.service-icon {
    font-size: 24px;
    color: var(--neon-green);
    background: rgba(57, 255, 20, 0.05);
    width: 52px;
    height: 52px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(57, 255, 20, 0.15);
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(57,255,20,0.05);
}

.service-item:nth-child(even) .service-icon {
    color: var(--neon-blue);
    background: rgba(0, 210, 255, 0.05);
    border-color: rgba(0, 210, 255, 0.15);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.05);
}

.service-info {
    flex-grow: 1;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
}

.service-text {
    font-size: 14px;
    line-height: 1.5;
}

/* 10. Dashboard Section */
.dashboard-window {
    display: grid;
    grid-template-columns: 240px 1fr;
    height: 600px;
    overflow: hidden;
}

/* Sidebar styling */
.dash-sidebar {
    background: rgba(7, 10, 15, 0.85);
    border-right: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar-brand {
    padding: 24px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--text-white);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-status-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.sidebar-menu {
    flex-grow: 1;
    padding: 20px 0;
}

.sidebar-item {
    padding: 14px 24px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
}

.sidebar-item:hover {
    color: var(--text-white);
    background: rgba(255,255,255,0.02);
}

.sidebar-item.active {
    color: var(--neon-green);
    background: rgba(57, 255, 20, 0.03);
}

.sidebar-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}

.sidebar-item .badge {
    margin-left: auto;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 10px;
    color: var(--bg-darker);
    font-weight: 700;
}

.user-profile-preview {
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    gap: 12px;
}

.operator-avatar {
    width: 38px;
    height: 38px;
    border-radius: 0;
    border: 1.5px solid var(--neon-green);
    object-fit: cover;
    box-shadow: 0 0 8px rgba(57,255,20,0.2);
}

.operator-details {
    display: flex;
    flex-direction: column;
}

.operator-name {
    font-size: 12px;
    font-weight: 600;
}

.operator-rank {
    font-size: 10px;
    font-family: var(--font-heading);
}

/* Dashboard content display area */
.dash-content {
    background: rgba(5, 7, 10, 0.4);
    padding: 30px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dash-tab-pane {
    display: none;
    flex-direction: column;
    flex-grow: 1;
}

.dash-tab-pane.active {
    display: flex;
}

.dashboard-header-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.pane-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--text-white);
}

.time-stamp {
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
}

/* Widgets Styling */
.dashboard-widget-card {
    padding: 20px;
    border-radius: 8px;
    background: rgba(13, 18, 26, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 220px;
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-highlight);
    border-bottom: 1px solid rgba(255,255,255,0.03);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.widget-title {
    text-transform: uppercase;
}

.widget-footer {
    border-top: 1px solid rgba(255,255,255,0.03);
    padding-top: 10px;
    font-size: 11px;
}

/* Circular score tracker */
.security-score-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.score-circle-svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.score-circle-svg circle {
    fill: none;
    stroke-width: 8;
}

.score-circle-svg .bg-circle {
    stroke: rgba(255, 255, 255, 0.05);
}

.score-circle-svg .score-circle-fill {
    stroke: var(--neon-green);
    stroke-linecap: round;
    stroke-dasharray: 314;
    transition: stroke-dashoffset 1s ease-out;
}

.glow-green-stroke {
    filter: drop-shadow(0 0 6px var(--neon-green));
}

.score-text {
    position: absolute;
    text-align: center;
}

.score-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
}

.score-percent {
    font-size: 12px;
    color: var(--neon-green);
}

/* Progress listing */
.progress-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    flex-grow: 1;
}

.progress-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
}

.progress-bar-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    border-radius: 3px;
}

/* Live Logs list */
.live-activity-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 10px;
    font-family: 'Courier New', Courier, monospace;
    overflow-y: auto;
    flex-grow: 1;
}

.activity-row {
    display: flex;
    gap: 8px;
    line-height: 1.3;
}

.act-bullet {
    font-size: 14px;
    line-height: 10px;
}

.act-txt b {
    color: var(--text-white);
    font-weight: 600;
}

/* Graph container styling */
.dashboard-graph-wrapper {
    margin-top: 24px;
    padding: 20px;
}

.fake-graph-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.graph-svg {
    width: 100%;
    height: 120px;
    overflow: visible;
}

.graph-point {
    filter: drop-shadow(0 0 4px currentColor);
}

.graph-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    font-size: 10px;
    font-family: var(--font-heading);
}

/* Machines tab style */
.pane-subtitle {
    font-size: 13px;
    margin-bottom: 24px;
}

.machines-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.machine-row {
    display: grid;
    grid-template-columns: 140px 1fr 220px 140px;
    align-items: center;
    padding: 16px 24px;
    background: rgba(13, 18, 26, 0.4);
}

.machine-status {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.m-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.m-dot.online { background-color: var(--neon-green); box-shadow: 0 0 6px var(--neon-green); }
.m-dot.vuln { background-color: var(--neon-yellow); box-shadow: 0 0 6px var(--neon-yellow); }
.m-dot.offline { background-color: var(--text-dim); }

.machine-info-col {
    display: flex;
    flex-direction: column;
}

.m-name {
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-heading);
}

.m-ip {
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
}

.machine-tags {
    display: flex;
    gap: 8px;
}

.m-tag {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.tag-blue { background: rgba(0, 102, 255, 0.1); border: 1px solid rgba(0, 102, 255, 0.3); color: var(--neon-blue); }
.tag-green { background: rgba(57, 255, 20, 0.1); border: 1px solid rgba(57, 255, 20, 0.3); color: var(--neon-green); }
.tag-yellow { background: rgba(255, 204, 0, 0.1); border: 1px solid rgba(255, 204, 0, 0.3); color: var(--neon-yellow); }
.tag-red { background: rgba(255, 59, 48, 0.1); border: 1px solid rgba(255, 59, 48, 0.3); color: var(--neon-red); }
.tag-dim { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); color: var(--text-dim); }

.btn-action-glow {
    background: rgba(57, 255, 20, 0.08);
    border: 1px solid rgba(57, 255, 20, 0.25);
    color: var(--neon-green);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

.btn-action-glow:hover:not(:disabled) {
    background: rgba(57, 255, 20, 0.25);
    box-shadow: 0 0 12px rgba(57, 255, 20, 0.4);
    border-color: var(--neon-green);
}

.btn-action-glow:disabled {
    border-color: rgba(255,255,255,0.05);
    color: var(--text-dim);
    cursor: not-allowed;
}

/* Challenges table style */
.challenges-table-wrapper {
    background: rgba(13, 18, 26, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.challenges-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 13px;
}

.challenges-table th {
    background: rgba(7, 10, 15, 0.85);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.8px;
    color: var(--text-highlight);
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
}

.challenges-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.challenges-table tbody tr:hover {
    background: rgba(255,255,255,0.015);
}

/* Interactive terminal style inside dashboard */
.console-box {
    border-radius: 0;
    background: rgba(5, 7, 10, 0.95);
    border-color: rgba(57, 255, 20, 0.2);
    display: flex;
    flex-direction: column;
    height: 380px;
}

.console-history {
    flex-grow: 1;
    padding: 20px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    color: var(--text-highlight);
    overflow-y: auto;
    line-height: 1.5;
}

.con-line {
    margin-bottom: 8px;
    word-break: break-all;
}

.console-input-line {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 18, 26, 0.6);
    padding: 12px 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.console-prompt {
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    font-weight: 700;
}

#dashConsoleInput {
    background: none;
    border: none;
    outline: none;
    color: var(--text-white);
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    flex-grow: 1;
}

/* 11. Why HAWKS Section */
.why-grid {
    margin-top: 40px;
}

.why-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 8px;
}

.why-card:nth-child(odd) {
    border-color: rgba(57, 255, 20, 0.12);
}

.why-card:nth-child(even) {
    border-color: rgba(0, 210, 255, 0.12);
}

.why-num {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
}

.why-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
}

.why-desc {
    font-size: 13px;
    line-height: 1.5;
}

/* 12. Community Section */
.discord-invite-box {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow: hidden;
}

.discord-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.discord-logo-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.discord-icon {
    font-size: 44px;
    color: var(--neon-blue);
    filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.4));
}

.discord-title-text {
    display: flex;
    flex-direction: column;
}

.d-srv-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    color: var(--text-white);
    letter-spacing: 1px;
}

.d-status {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.d-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.btn-discord {
    background: #5865F2;
    color: var(--text-white);
    border: none;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.35);
}

.btn-discord:hover {
    background: #4752C4;
    box-shadow: 0 0 25px rgba(88, 101, 242, 0.6);
}

.discord-chat-simulation {
    background: rgba(5, 7, 10, 0.5);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.msg-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 0;
    object-fit: cover;
}

.msg-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.chat-username {
    font-size: 13px;
    font-weight: 700;
}

.chat-time {
    font-size: 11px;
    margin-left: 8px;
}

.chat-text {
    font-size: 13px;
    color: var(--text-highlight);
}

.discord-input-simulator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 7, 10, 0.8);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 6px;
    padding: 12px 20px;
    font-size: 13px;
}

/* 13. Footer Section */
.main-footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-motto {
    font-size: 14px;
    font-style: italic;
    color: var(--text-highlight);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-white);
    margin-bottom: 8px;
}

.footer-links-column a {
    font-size: 13px;
    color: var(--text-dim);
}

.footer-links-column a:hover {
    color: var(--neon-green);
    transform: translateX(2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 12px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-highlight);
}

.social-icon:hover {
    color: var(--bg-darker);
    background-color: var(--neon-blue);
    border-color: var(--neon-blue);
    transform: translateY(-2px);
}

.social-icon.glow-hover-green:hover {
    background-color: var(--neon-green);
    border-color: var(--neon-green);
}

/* 14. Responsive Layout Adjustments */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }
    .grid-4-cols {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .grid-2-cols {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .grid-3-cols {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 6, 8, 0.95);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-actions {
        display: none;
    }
    .dashboard-window {
        grid-template-columns: 1fr;
        height: auto;
    }
    .dash-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .sidebar-menu {
        flex-direction: row;
        display: flex;
        overflow-x: auto;
        padding: 10px 0;
    }
    .sidebar-item {
        padding: 10px 16px;
        white-space: nowrap;
    }
    .sidebar-item.active::before {
        height: 3px;
        width: 100%;
        bottom: 0;
        top: auto;
        left: 0;
    }
    .user-profile-preview {
        display: none;
    }
    .machine-row {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .machine-tags {
        grid-column: span 2;
    }
    .machine-action {
        grid-column: span 2;
        text-align: right;
    }
}

/* 15. New Visuals (Terminal Replaced Layouts) */
.hero-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.hero-brand-logo {
    max-width: 85%;
    height: auto;
    filter: drop-shadow(0 0 25px rgba(57, 255, 20, 0.25)) drop-shadow(0 0 50px rgba(0, 210, 255, 0.15));
    animation: float 6s ease-in-out infinite;
}

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

.services-highlights {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    color: var(--text-highlight);
    background: rgba(13, 18, 26, 0.4);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    transition: var(--transition-fast);
}

.highlight-item:hover {
    border-color: rgba(0, 210, 255, 0.25);
    background: rgba(13, 18, 26, 0.6);
}

.highlight-item i {
    font-size: 18px;
    filter: drop-shadow(0 0 5px currentColor);
}

/* 16. Contact Section Styling */
.contact-section {
    padding: 100px 0;
    position: relative;
    z-index: 5;
}

.contact-info-grid {
    margin-top: 48px;
    align-items: center;
    gap: 60px;
}

.contact-subheading {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.contact-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.contact-cards-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 24px;
    background: rgba(13, 18, 26, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.contact-info-card:hover {
    border-color: rgba(0, 210, 255, 0.2);
    background: rgba(13, 18, 26, 0.65);
    transform: translateX(5px);
}

.contact-card-icon {
    font-size: 18px;
    color: var(--neon-blue);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 210, 255, 0.05);
    border: 1px solid rgba(0, 210, 255, 0.15);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.contact-info-card:hover .contact-card-icon {
    background: rgba(57, 255, 20, 0.05);
    border-color: rgba(57, 255, 20, 0.3);
    color: var(--neon-green);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.2);
}

.contact-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-label {
    font-size: 11px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-value {
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
}

a.card-value:hover {
    color: var(--neon-blue);
}

/* Image styling */
.hacker-img-wrapper {
    padding: 12px;
    background: rgba(13, 18, 26, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.hacker-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(0, 210, 255, 0.1);
    pointer-events: none;
}

.hacker-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.05);
    transition: var(--transition-smooth);
}

.hacker-img-wrapper:hover .hacker-image {
    filter: saturate(1) contrast(1.1);
    transform: scale(1.02);
}

/* Centered contact info layout */
.contact-info-single {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

/* Contact Form wrapper and inputs */
.contact-form-wrapper {
    margin-top: 80px;
    padding: 56px;
    background: rgba(7, 10, 15, 0.8);
    position: relative;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.form-subtitle {
    font-size: 15px;
    margin-bottom: 44px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 11px;
    font-family: var(--font-heading);
    color: var(--neon-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: rgba(4, 5, 8, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-white);
    transition: var(--transition-fast);
    border-radius: 0; /* Keep it strictly square to match client preference */
}

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    width: 100%;
    cursor: pointer;
}

.contact-form select option {
    background: var(--bg-main);
    color: var(--text-white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--neon-blue);
    outline: none;
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.2);
    background: rgba(4, 5, 8, 0.95);
}

/* Neon Green/Yellow Submit button styling */
.btn-submit-glow {
    width: 100%;
    padding: 16px;
    background: #D8FF5F; /* Lime/neon yellow-green */
    color: #050608;
    border: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(216, 255, 95, 0.2);
    text-align: center;
}

.btn-submit-glow:hover {
    background: #E5FF8F;
    box-shadow: 0 0 25px rgba(216, 255, 95, 0.55);
    transform: translateY(-2px);
}

.btn-submit-glow:active {
    transform: translateY(0);
}

/* Responsive tweaks */
@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-image-side {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


/* Why Contact HAWKS box styling */
.why-contact-box {
    margin-top: 28px;
    padding: 28px;
    background: rgba(13, 18, 26, 0.45);
    border: 1px solid rgba(57, 255, 20, 0.15);
    transition: var(--transition-smooth);
}
.why-contact-box:hover {
    border-color: rgba(57, 255, 20, 0.35);
    box-shadow: 0 8px 32px rgba(5,6,8,0.5), 0 0 15px rgba(57,255,20,0.08);
}
.why-contact-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1.5px;
}
.why-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.why-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-highlight);
}
.why-contact-list li i {
    font-size: 16px;
    filter: drop-shadow(0 0 4px var(--neon-green));
}
