/* ==========================================================================
   CIVILMINDS PTY LTD Design System & Global Styles
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-base: #060b0f;
    --bg-surface: rgba(13, 22, 30, 0.65);
    --bg-surface-solid: #0d161e;
    --border-color: rgba(0, 243, 255, 0.15);
    --border-color-hover: rgba(0, 243, 255, 0.35);
    
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Neon Accents */
    --accent-cyan: #00f3ff;
    --accent-cyan-rgb: 0, 243, 255;
    --accent-green: #00ff87;
    --accent-green-rgb: 0, 255, 135;
    --accent-yellow: #ffaa00;
    --accent-yellow-rgb: 255, 170, 0;
    --accent-rose: #ff0055;
    --accent-rose-rgb: 255, 0, 85;
    
    /* Fonts */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: 'Orbitron', 'Courier New', monospace;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layouts */
    --container-width: 1200px;
    --header-height: 80px;
}

/* Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-sans);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Grids & Orbs */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(rgba(0, 243, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
    pointer-events: none;
    z-index: -2;
}

.grid-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 20%, var(--bg-base) 80%);
}

.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
}

.orb-1 {
    top: -10%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-cyan), transparent);
}

.orb-2 {
    bottom: 10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-rose), transparent);
}

.orb-3 {
    top: 40%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-green), transparent);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-mono);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

p.lead {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.7;
}

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

a:hover {
    color: var(--text-primary);
}

.text-center { text-align: center; }
.text-success { color: var(--accent-green) !important; }
.text-warning { color: var(--accent-yellow) !important; }
.text-danger { color: var(--accent-rose) !important; }
.text-primary { color: var(--accent-cyan) !important; }

/* Reusable Components */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.grid {
    display: grid;
    gap: 2rem;
}

.badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    border: 1px solid rgba(0, 243, 255, 0.3);
    background: rgba(0, 243, 255, 0.05);
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.1);
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--bg-surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-normal);
}

.glass-card:hover {
    border-color: var(--border-color-hover);
    box-shadow: 0 8px 32px rgba(0, 243, 255, 0.08);
    transform: translateY(-4px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-normal);
    gap: 0.5rem;
}

.btn-primary {
    background: var(--accent-cyan);
    color: #000;
    border: 1px solid var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-cyan);
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.5);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan);
}

.btn-outline:hover {
    background: rgba(0, 243, 255, 0.08);
    box-shadow: 0 0 12px rgba(0, 243, 255, 0.2);
}

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

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(6, 11, 15, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 100;
}

.navbar {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--text-primary);
}

.logo-accent {
    color: var(--accent-cyan);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-link:hover {
    color: var(--accent-cyan);
    text-shadow: 0 0 8px rgba(0, 243, 255, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 110;
}

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

/* Mobile Nav Drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-surface-solid);
    border-left: 1px solid var(--border-color);
    padding: 100px 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    z-index: 95;
    transition: right var(--transition-normal);
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-link {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    color: var(--text-primary);
    text-transform: uppercase;
}

/* Hero Section */
.hero-section {
    padding: calc(var(--header-height) + 4rem) 0 6rem;
    position: relative;
}

.hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.15;
}

.hero-text p.lead {
    margin-bottom: 2.5rem;
}

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

/* Hero Graphical Mockup */
.hero-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sensor-node-mockup {
    position: relative;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle at 30% 30%, #152737, #0b1218);
    border: 2px solid rgba(0, 243, 255, 0.4);
    border-radius: 40px;
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.5),
        0 0 30px rgba(0, 243, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

.device-core {
    position: relative;
    width: 140px;
    height: 140px;
    background: #080c10;
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cpu-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.3) 0%, transparent 70%);
    animation: pulseGlow 3s ease-in-out infinite;
}

.status-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0 0 8px currentColor;
}

.status-indicator.online {
    background-color: var(--accent-green);
    color: var(--accent-green);
}

.port-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    z-index: 2;
}

.port-grid span {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    background: #202b36;
    border: 1px solid rgba(255,255,255,0.1);
}

.laser-scanner {
    position: absolute;
    top: -15px;
    width: 80px;
    height: 30px;
    background: #101a24;
    border: 2px solid var(--accent-cyan);
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

.laser-scanner::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 6px;
    background: var(--accent-rose);
    box-shadow: 0 0 10px var(--accent-rose);
}

.radar-waves {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.radar-waves .wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 243, 255, 0.15);
    border-radius: 50%;
    animation: ripple 4s linear infinite;
    opacity: 0;
}

.radar-waves .wave:nth-child(2) { animation-delay: 1.3s; }
.radar-waves .wave:nth-child(3) { animation-delay: 2.6s; }

/* Dashboard Simulator Section */
.dashboard-section {
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: radial-gradient(circle at 50% 10%, rgba(0, 243, 255, 0.02), transparent 60%);
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.dashboard-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
    background: rgba(8, 14, 20, 0.85);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* Sidebar Controls */
.dashboard-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-right: 1px solid rgba(0, 243, 255, 0.1);
    padding-right: 1.5rem;
}

.control-group {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.25rem;
}

.control-group h3 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    border-left: 2px solid var(--accent-cyan);
    padding-left: 8px;
}

.sensor-selector-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sensor-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    text-align: left;
    transition: all var(--transition-fast);
}

.sensor-btn:hover {
    background: rgba(0, 243, 255, 0.05);
    border-color: rgba(0, 243, 255, 0.3);
    color: var(--text-primary);
}

.sensor-btn.active {
    background: rgba(0, 243, 255, 0.1);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.15);
}

.sensor-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sensor-btn.active .btn-icon {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

/* Sliders */
.slider-group {
    margin-bottom: 1.25rem;
}

.slider-group label {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.slider-group label span {
    font-family: var(--font-mono);
    color: var(--accent-cyan);
}

.slider-group input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: #1a2936;
    border-radius: 2px;
    outline: none;
}

.slider-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-cyan);
    cursor: pointer;
    box-shadow: 0 0 8px var(--accent-cyan);
    transition: transform var(--transition-fast);
}

.slider-group input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* Switch styling */
.toggle-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.switch-container {
    position: relative;
    display: inline-block;
    width: 38px;
    height: 20px;
}

.switch-container input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1a2936;
    border-radius: 34px;
    transition: 0.4s;
}

.switch-slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: var(--text-secondary);
    border-radius: 50%;
    transition: 0.4s;
}

.switch-container input:checked + .switch-slider {
    background-color: rgba(0, 243, 255, 0.3);
}

.switch-container input:checked + .switch-slider:before {
    transform: translateX(18px);
    background-color: var(--accent-cyan);
}

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

/* Telemetry stats */
.telemetry-panel h3 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    border-left: 2px solid var(--accent-green);
    padding-left: 8px;
}

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

.telemetry-item {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 6px;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
}

.telemetry-item .label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.telemetry-item .value {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-top: 2px;
}

/* Viewport Area */
.dashboard-viewport {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    background: #04080c;
    position: relative;
}

.viewport-header {
    background: #090e14;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 0.75rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.terminal-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1e293b;
}

.terminal-dots span:nth-child(1) { background: var(--accent-rose); }
.terminal-dots span:nth-child(2) { background: var(--accent-yellow); }
.terminal-dots span:nth-child(3) { background: var(--accent-green); }

.viewport-title {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.viewport-badge {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 243, 255, 0.3);
    background: rgba(0, 243, 255, 0.05);
    padding: 2px 6px;
    border-radius: 3px;
}

.viewport-content {
    flex-grow: 1;
    position: relative;
    min-height: 380px;
    background: radial-gradient(circle, #081119 0%, #03060a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#sensor-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: crosshair;
}

.viewport-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    pointer-events: none;
    z-index: 10;
}

.anomaly-alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 0, 85, 0.15);
    border: 1px solid var(--accent-rose);
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--text-primary);
    box-shadow: 0 0 20px rgba(255,0,85,0.25);
    transform: translateY(-20px);
    opacity: 0;
    transition: all var(--transition-normal);
}

.anomaly-alert.show {
    transform: translateY(0);
    opacity: 1;
}

.anomaly-alert .alert-icon {
    font-size: 1.2rem;
    animation: blinker 1s linear infinite;
}

.anomaly-alert .alert-title {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-rose);
}

.anomaly-alert .alert-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.viewport-footer {
    background: #090e14;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 0.5rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.sys-msg {
    font-family: var(--font-mono);
}

.cursor-blink {
    color: var(--accent-cyan);
    animation: blinker 1.2s infinite;
}

.coordinates {
    font-family: var(--font-mono);
}

/* Solutions Section */
.solutions-section {
    padding: 6rem 0;
}

.solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3rem;
}

.solution-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(0, 243, 255, 0.06);
    border: 1px solid rgba(0, 243, 255, 0.2);
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
}

.solution-card h3 {
    margin-bottom: 1rem;
}

.solution-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit-list li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check-icon {
    color: var(--accent-cyan);
    font-weight: bold;
}

/* Product Section */
.products-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent, rgba(0, 243, 255, 0.01), transparent);
}

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

.product-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-image-container {
    height: 180px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-svg {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.15));
}

.tag-status {
    position: absolute;
    top: 15px;
    left: 15px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--text-primary);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2px 8px;
    border-radius: 20px;
}

.product-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.25rem;
}

.model-num {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent-cyan);
    margin-top: -0.25rem;
    margin-bottom: 1rem;
}

.product-info .desc {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.spec-list {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

.spec-item span:first-child {
    color: var(--text-muted);
}

.spec-item span:last-child {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Contact & Quote Section */
.contact-section {
    padding: 6rem 0 8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
}

.contact-text h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.contact-text p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.detail-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.1);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
}

.detail-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.detail-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.detail-item strong {
    color: var(--text-primary);
}

/* Form Styles */
.contact-card {
    padding: 2.5rem;
}

.contact-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

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

label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background: rgba(0, 243, 255, 0.02);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.1);
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='none' stroke='white' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
}

select option {
    background: var(--bg-surface-solid);
    color: var(--text-primary);
}

textarea {
    resize: vertical;
}

/* Success Message Overlay */
.submit-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 0;
}

.submit-success.show {
    display: flex;
}

#quote-form.hidden {
    display: none;
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 255, 135, 0.1);
    border: 2px solid var(--accent-green);
    color: var(--accent-green);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 255, 135, 0.2);
}

.submit-success h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.submit-success p {
    font-size: 0.95rem;
    max-width: 320px;
    margin-bottom: 2rem;
}

/* Footer Section */
footer {
    background: #030609;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-left {
    max-width: 400px;
}

.footer-left .logo {
    margin-bottom: 1rem;
}

.footer-left p {
    font-size: 0.9rem;
}

.company-numbers {
    font-family: var(--font-mono);
    font-size: 0.75rem !important;
    color: var(--text-muted) !important;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.link-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.link-group h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.link-group a {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.link-group a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Keyframe Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.15); opacity: 0.5; }
}

@keyframes ripple {
    0% { width: 0px; height: 0px; opacity: 0.8; }
    100% { width: 400px; height: 400px; opacity: 0; }
}

@keyframes blinker {
    50% { opacity: 0; }
}

/* Scroll Animations */
.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.animate-fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    animation: fadeInRight 0.8s forwards 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    h1 { font-size: 2.75rem; }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .dashboard-container {
        grid-template-columns: 1fr;
    }
    .dashboard-controls {
        border-right: none;
        border-bottom: 1px solid rgba(0, 243, 255, 0.1);
        padding-right: 0;
        padding-bottom: 1.5rem;
    }
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.85rem; }
    .mobile-menu-toggle {
        display: flex;
    }
    .nav-links {
        display: none;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}
