/* 
   ==========================================================================
   Guardex Corporate Website Styling (Cyber-Security, AI, Protection Theme)
   Colors: Deep Navy Slate, Tech Cyan, Security Green, Warning Amber
   ========================================================================== 
*/

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

/* --- Root Variables --- */
:root {
    --bg-dark: #060913;
    --bg-card: rgba(13, 21, 37, 0.65);
    --bg-card-hover: rgba(20, 32, 56, 0.8);
    --border-color: rgba(6, 182, 212, 0.15);
    --border-color-hover: rgba(0, 255, 135, 0.3);
    
    /* Neon Colors */
    --neon-cyan: #00f2fe;
    --neon-green: #00ff87;
    --neon-green-dim: rgba(0, 255, 135, 0.2);
    --neon-cyan-dim: rgba(0, 242, 254, 0.2);
    
    /* Text Colors */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Status Colors */
    --status-ok: #00ff87;
    --status-warning: #f59e0b;
    --status-danger: #ef4444;
    
    /* Font Families */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-speed: 0.3s;
}

/* --- Base Reset & Core Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* --- Matrix Grid Background Canvas --- */
#gridCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
    opacity: 0.8;
}

/* --- Ambient Glow Effects --- */
.background-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.15;
    transition: all 1s ease-in-out;
}

.bg-glow-1 {
    top: -10%;
    right: -10%;
    background: radial-gradient(circle, var(--neon-cyan) 0%, transparent 70%);
}

.bg-glow-2 {
    bottom: -10%;
    left: -10%;
    background: radial-gradient(circle, var(--neon-green) 0%, transparent 70%);
}

/* --- Scrollbar Customization --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #111e35;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-cyan-dim);
    border-color: var(--neon-cyan);
}

/* --- Typography Helpers --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* --- Layout Wrapper --- */
main {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0 4rem 0;
}

/* --- Header / Navigation Bar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(6, 9, 19, 0.75);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all var(--transition-speed) ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(6, 9, 19, 0.9);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    gap: 0.8rem;
}

.logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px var(--neon-cyan));
    transition: transform 0.5s ease;
}

.nav-logo:hover .logo-img {
    transform: rotate(360deg);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-speed);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-green));
    transition: width var(--transition-speed) ease;
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
    z-index: 1000;
}

.lang-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 5px 12px 5px 10px;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 0.82rem;
    font-weight: 700;
    font-family: var(--font-heading);
    transition: all 0.2s ease;
    white-space: nowrap;
    letter-spacing: 0.04em;
}

.lang-dropdown-trigger:hover {
    background: var(--neon-cyan-dim);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
}

.lang-flag { font-size: 1rem; line-height: 1; }
.lang-code { letter-spacing: 0.08em; }

.lang-chevron {
    width: 12px;
    height: 12px;
    stroke: var(--text-muted);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.lang-dropdown.open .lang-chevron {
    transform: rotate(180deg);
    stroke: var(--neon-cyan);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #0a1628;
    border: 1px solid rgba(0, 242, 254, 0.2);
    border-radius: 14px;
    min-width: 210px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 30px rgba(0,242,254,0.05);
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.lang-dropdown.open .lang-dropdown-menu {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.lang-menu-inner {
    padding: 8px;
    max-height: 370px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,242,254,0.3) transparent;
}

.lang-menu-group { margin-bottom: 6px; }

.lang-menu-label {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(0, 242, 254, 0.6);
    padding: 4px 10px 2px;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 100%;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-family: var(--font-heading);
    font-weight: 500;
    padding: 7px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    text-align: left;
}

.lang-option:hover {
    background: rgba(0, 242, 254, 0.1);
    color: var(--neon-cyan);
}

.lang-option.active {
    background: rgba(0, 242, 254, 0.08);
    color: var(--neon-cyan);
    border-left: 2px solid var(--neon-cyan);
}

.lang-option-code {
    margin-left: auto;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: rgba(0,242,254,0.6);
    background: rgba(0,242,254,0.08);
    padding: 1px 5px;
    border-radius: 4px;
}


.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    font-family: var(--font-heading);
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-green) 100%);
    color: #060913;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 255, 135, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 242, 254, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: var(--neon-cyan-dim);
    border-color: var(--neon-cyan);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 242, 254, 0.2);
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* --- Hero Section --- */
.hero-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 4rem;
    min-height: 85vh;
}

.badge-container {
    margin-bottom: 1.5rem;
}

.cyber-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--neon-cyan);
    letter-spacing: 1px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--neon-green);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--neon-green);
    animation: pulse 1.8s infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-desc {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

/* --- Floating Tech Globe Animation --- */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.tech-globe-container {
    width: 320px;
    height: 320px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.globe-shield {
    font-size: 6rem;
    color: var(--neon-cyan);
    position: absolute;
    filter: drop-shadow(0 0 25px rgba(0, 242, 254, 0.4));
    animation: float 4s ease-in-out infinite;
}

.orbit-line {
    position: absolute;
    border: 1.5px dashed var(--border-color);
    border-radius: 50%;
}

.line-1 {
    width: 300px;
    height: 300px;
    animation: rotateOrbit 12s linear infinite;
    border-color: var(--neon-cyan-dim);
}

.line-2 {
    width: 240px;
    height: 240px;
    animation: rotateOrbit 8s linear infinite reverse;
    border-color: var(--neon-green-dim);
}

.line-3 {
    width: 180px;
    height: 180px;
    animation: rotateOrbit 16s linear infinite;
    border-color: var(--border-color);
}

/* --- Stats Grid --- */
.stats-section {
    padding: 3rem 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    background: linear-gradient(135deg, rgba(13, 21, 37, 0.4) 0%, rgba(6, 9, 19, 0.6) 100%);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.stat-card {
    text-align: center;
    position: relative;
}

.stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 15%;
    height: 70%;
    width: 1px;
    background: var(--border-color);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
    text-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* --- Common Section Headers --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255,255,255,0.05);
}

.section-subtitle {
    color: var(--neon-cyan);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* --- About Section & Grid --- */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all var(--transition-speed) ease;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--neon-cyan), transparent);
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 30px rgba(0, 242, 254, 0.1);
}

.about-card:hover::before {
    opacity: 1;
}

.about-icon {
    font-size: 2.2rem;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.3));
}

.about-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-card-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- Products Ecosystem --- */
.products-section {
    position: relative;
}

.products-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-showcase-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(12px);
    transition: all var(--transition-speed) ease;
    position: relative;
}

.product-showcase-card:hover {
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Flagship Product Styling */
.product-showcase-card.flagship {
    border: 1.5px solid rgba(0, 255, 135, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 135, 0.05);
    background: linear-gradient(135deg, rgba(13, 21, 37, 0.75) 0%, rgba(6, 9, 19, 0.8) 100%);
}

.product-showcase-card.flagship:hover {
    border-color: var(--neon-green);
    box-shadow: 0 15px 40px rgba(0, 255, 135, 0.15);
}

.product-tag {
    position: absolute;
    top: -12px;
    left: 3rem;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan));
    color: #060913;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(0, 255, 135, 0.4);
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.product-logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-logo-area i {
    font-size: 2.2rem;
    color: var(--neon-green);
    filter: drop-shadow(0 0 10px rgba(0, 255, 135, 0.4));
}

.product-logo-area.small i {
    font-size: 1.8rem;
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.3));
}

.product-logo-area h3 {
    font-size: 1.6rem;
    font-weight: 700;
}

.product-logo-area.small h3 {
    font-size: 1.35rem;
}

.product-status-active {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(0, 255, 135, 0.1);
    color: var(--neon-green);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 255, 135, 0.2);
}

.product-status-upcoming {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-description {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.product-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.product-features li i {
    color: var(--neon-green);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.products-grid .product-features {
    grid-template-columns: 1fr;
    margin-bottom: 0;
}

.products-grid .product-features li i {
    color: var(--neon-cyan);
}

.product-action-row {
    margin-top: 2rem;
}

/* --- SOC Live Monitor Terminal Section --- */
.soc-section {
    position: relative;
}

.terminal-container {
    background: #02040a;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.terminal-header {
    background: #090e18;
    padding: 1rem 1.5rem;
    display: grid;
    grid-template-columns: 100px 1fr 150px;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.terminal-buttons {
    display: flex;
    gap: 0.5rem;
}

.t-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.t-btn.close { background-color: var(--status-danger); }
.t-btn.minimize { background-color: var(--status-warning); }
.t-btn.maximize { background-color: var(--status-ok); }

.terminal-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.terminal-status {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--neon-green);
}

.terminal-status .status-indicator {
    width: 6px;
    height: 6px;
    background-color: var(--neon-green);
    border-radius: 50%;
    animation: flash 1s infinite;
}

.terminal-body {
    padding: 1.5rem;
    height: 350px;
    overflow-y: auto;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    color: #a6b5c9;
}

.terminal-line {
    margin-bottom: 0.6rem;
    line-height: 1.4;
    white-space: pre-wrap;
    animation: fadeInLog 0.2s ease-out forwards;
}

.terminal-line .timestamp {
    color: var(--text-muted);
    margin-right: 0.8rem;
}

.terminal-line .tag-system {
    color: var(--neon-cyan);
    font-weight: 700;
    margin-right: 0.5rem;
}

.terminal-line .tag-alert {
    color: var(--status-warning);
    font-weight: 700;
    margin-right: 0.5rem;
}

.terminal-line .tag-critical {
    color: var(--status-danger);
    font-weight: 700;
    margin-right: 0.5rem;
}

.terminal-line .tag-safevision {
    color: var(--neon-green);
    font-weight: 700;
    margin-right: 0.5rem;
}

.terminal-footer {
    padding: 1rem 1.5rem;
    background: #060913;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
}

/* Interactive Scan Diagnostics Overlay */
.scan-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(2, 4, 10, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.scan-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.scan-modal {
    background: #090e18;
    border: 2px solid var(--neon-cyan);
    border-radius: 12px;
    padding: 3rem;
    width: 90%;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 0 50px rgba(0, 242, 254, 0.25);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.scan-overlay.active .scan-modal {
    transform: scale(1);
}

.scan-modal h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.scan-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-green));
    border-radius: 3px;
    transition: width 0.1s linear;
}

.scan-status-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--neon-cyan);
    margin-bottom: 2rem;
}

.scan-details {
    text-align: left;
    background: #02040a;
    border: 1px solid var(--border-color);
    padding: 1.2rem;
    border-radius: 8px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8rem;
    height: 150px;
    overflow-y: auto;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.scan-details p {
    margin-bottom: 0.4rem;
}

.btn-hidden {
    display: none !important;
}

/* --- Contact Section --- */
.contact-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    backdrop-filter: blur(12px);
}

.info-card i {
    font-size: 2rem;
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.3));
}

.info-card h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(12px);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background: rgba(2, 4, 10, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition-speed) ease;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
}

.form-group select option {
    background: #090e18;
    color: var(--text-primary);
}

/* --- Footer Section --- */
.footer {
    background: #03050a;
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 2rem 0;
    margin-top: 5rem;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--text-primary);
}

.footer-logo img {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 5px var(--neon-cyan));
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 350px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.footer-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color var(--transition-speed);
}

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

.footer-bottom {
    max-width: 1300px;
    margin: 4rem auto 0 auto;
    padding: 2rem 2rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-status-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--neon-green);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
}

.footer-status-check .status-indicator {
    width: 6px;
    height: 6px;
    background-color: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--neon-green);
}

/* --- Animations & Keyframes --- */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 255, 135, 0.5);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 255, 135, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 255, 135, 0);
    }
}

@keyframes flash {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1; }
}

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

@keyframes rotateOrbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes fadeInLog {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive Layout Adjustments --- */
@media (max-width: 992px) {
    main {
        padding: 0 1.5rem;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding-top: 10rem;
    }
    
    .hero-desc {
        margin: 0 auto 2.5rem auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-card:not(:last-child)::after {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.4rem;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #060913;
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        z-index: 99;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
