@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Orbitron:wght@400;700;900&display=swap');

:root {
    --primary: #ff4d00; /* High-vis orange */
    --bg-dark: #000000;
    --bg-card: #0a0a0a;
    --border: #333333;
    --text-main: #e0e0e0;
    --text-muted: #888888;
    --cyber-edge: 1px solid var(--border);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo, .status-badge {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Cyber Header */
header {
    padding: 2rem 0;
    background: transparent;
    position: relative;
    z-index: 100;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 5px;
    border: 1px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.status-badge {
    display: inline-block;
    background: rgba(255, 77, 0, 0.1);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    font-size: 0.7rem;
    border: 1px solid var(--primary);
    margin-bottom: 1.5rem;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, var(--primary), transparent);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #fff, #666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

/* Cyber Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    border: 1px solid var(--primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn:hover {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 77, 0, 0.4);
}

.btn-primary {
    background: var(--primary);
    color: #000;
}

.btn-primary:hover {
    background: #fff;
    border-color: #fff;
    color: #000;
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Cyber Cards */
.card {
    background: var(--bg-card);
    padding: 3rem;
    border: 1px solid #222;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border-top: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.card:hover::after {
    opacity: 1;
}

.section-title {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    border-left: none;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-title::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary);
}

/* Services List */
.services-list li {
    margin-bottom: 1rem;
    padding-left: 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #222;
    padding-bottom: 0.5rem;
    color: var(--text-muted);
}

.services-list li::before {
    content: none;
}

.services-list li span {
    color: #fff;
}

/* Emergency Section */
.emergency-banner {
    background: repeating-linear-gradient(
        45deg,
        #111,
        #111 10px,
        #1a1a1a 10px,
        #1a1a1a 20px
    );
    border: 1px solid var(--primary);
    padding: 3rem;
    text-align: center;
    margin: 4rem 0;
    position: relative;
}

.emergency-banner h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    border-top: 1px solid #222;
    padding: 3rem 0;
    text-align: center;
    color: #444;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .grid { grid-template-columns: 1fr; }
}
