@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700;900&family=Exo+2:wght@300;400;600&display=swap');

:root {
    --color-dark: #0a0a0a;
    --color-darker: #050505;
    --color-red: #e31e24;
    --color-red-dark: #b01318;
    --color-gray: #1a1a1a;
    --color-gray-light: #2a2a2a;
    --color-text: #e5e5e5;
    --color-text-dim: #a0a0a0;
}

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

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--color-darker);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.mountains-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: 
        linear-gradient(180deg, 
            rgba(5, 5, 5, 0.95) 0%,
            rgba(10, 10, 10, 0.85) 40%,
            rgba(227, 30, 36, 0.08) 70%,
            rgba(176, 19, 24, 0.15) 100%
        ),
        radial-gradient(ellipse at 50% 60%, rgba(227, 30, 36, 0.1) 0%, transparent 60%),
        linear-gradient(to bottom, #0a0a0a 0%, #1a1a1a 100%);
    z-index: -1;
}

.mountains-bg::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: 
        linear-gradient(120deg, transparent 35%, rgba(227, 30, 36, 0.15) 45%, transparent 55%),
        linear-gradient(60deg, transparent 25%, rgba(0, 0, 0, 0.4) 50%, transparent 75%);
    clip-path: polygon(
        0 100%, 
        15% 60%, 
        25% 70%, 
        40% 45%, 
        55% 55%, 
        70% 40%, 
        85% 60%, 
        100% 50%, 
        100% 100%
    );
}

.mountains-bg::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 3px;
    height: 200px;
    background: linear-gradient(180deg, var(--color-red) 0%, transparent 100%);
    transform: rotate(45deg);
    opacity: 0.3;
    animation: cableGlow 3s ease-in-out infinite;
}

@keyframes cableGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(227, 30, 36, 0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    filter: drop-shadow(0 0 10px rgba(227, 30, 36, 0.3));
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-red);
    transition: width 0.3s;
}

nav a:hover {
    color: var(--color-red);
}

nav a:hover::after {
    width: 100%;
}

/* Hero */
.hero {
    padding: 120px 0 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-text);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 0%, var(--color-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { filter: drop-shadow(0 0 20px rgba(227, 30, 36, 0.3)); }
    to { filter: drop-shadow(0 0 40px rgba(227, 30, 36, 0.5)); }
}

.tagline {
    font-size: 1.3rem;
    color: var(--color-text-dim);
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: var(--color-red);
    color: white;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--color-red);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.cta-button::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: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: transparent;
    color: var(--color-red);
    box-shadow: 0 0 20px rgba(227, 30, 36, 0.5);
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
}

h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text);
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--color-red);
}

/* Services */
.services {
    background: var(--color-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--color-dark);
    padding: 40px 30px;
    border: 1px solid rgba(227, 30, 36, 0.2);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    border-color: var(--color-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-red);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--color-text-dim);
    line-height: 1.7;
}

/* Expertise */
.expertise-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.expertise-col h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--color-red);
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.expertise-col ul {
    list-style: none;
}

.expertise-col li {
    padding: 12px 0;
    padding-left: 25px;
    border-bottom: 1px solid var(--color-gray-light);
    position: relative;
    color: var(--color-text-dim);
    transition: all 0.3s;
}

.expertise-col li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-red);
    font-size: 1.2rem;
}

.expertise-col li:hover {
    color: var(--color-text);
    padding-left: 30px;
}

/* Contact */
.contact {
    background: var(--color-gray);
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text-dim);
    margin-bottom: 50px;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--color-dark);
    border: 1px solid var(--color-gray-light);
    color: var(--color-text);
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-red);
    box-shadow: 0 0 15px rgba(227, 30, 36, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-dim);
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: var(--color-red);
    color: white;
    border: 2px solid var(--color-red);
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background: transparent;
    color: var(--color-red);
    box-shadow: 0 0 20px rgba(227, 30, 36, 0.5);
}

.form-message {
    margin-bottom: 20px;
    padding: 15px;
    text-align: center;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid #4caf50;
    color: #4caf50;
    display: block;
}

.form-message.error {
    background: rgba(227, 30, 36, 0.1);
    border: 1px solid var(--color-red);
    color: var(--color-red);
    display: block;
}

/* Footer */
footer {
    background: var(--color-darker);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(227, 30, 36, 0.2);
}

footer p {
    color: var(--color-text-dim);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .expertise-columns {
        grid-template-columns: 1fr;
    }
}
