:root {
    --primary: #c9302c; /* Cinematic Red */
    --primary-hover: #a02622;
    --bg-dark: #121212;
    --bg-darker: #080808;
    --bg-panel: #1a1a1a;
    --text-main: #f0f0f0;
    --text-muted: #aaaaaa;
    --font-head: 'Bebas Neue', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --border-color: #333333;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-head);
    letter-spacing: 2px;
    font-weight: 400;
}

/* Navbar */
nav {
    position: fixed;
    top: 0; width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}
nav.scrolled {
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 5%;
}

.logo {
    font-size: 2.2rem;
    font-family: var(--font-head);
    letter-spacing: 3px;
}
.accent {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}
.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    position: relative;
    transition: 0.3s;
}
.nav-links a:hover {
    color: var(--primary);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}
.nav-links a:hover::after {
    width: 100%;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('../assets/images/hero_realistic.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(8,8,8,0.5) 0%, rgba(8,8,8,0.9) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}
.hero h1 {
    font-size: 6rem;
    letter-spacing: 8px;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.8);
}
.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    letter-spacing: 6px;
    margin-bottom: 3rem;
    font-weight: 400;
    text-transform: uppercase;
}

/* Primary Button */
.primary-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-head);
    font-size: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 3px;
}
.primary-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* Sections */
section {
    padding: 6rem 2rem;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    font-size: 4rem;
    color: var(--text-main);
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: 5px;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 1rem auto 0;
}
.section-subtitle {
    font-size: 3rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 3px;
}

/* Info Box */
.info-box {
    background: var(--bg-panel);
    padding: 2.5rem;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: 0.3s;
}

/* About */
.about { background: var(--bg-darker); }
.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
}
.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}
.partner-badge {
    margin-top: 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main) !important;
    letter-spacing: 1px;
}
.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.stat {
    text-align: center;
}
.stat h3 {
    font-size: 4rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat p {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* Arsenal Grid */
.arsenal-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.arsenal-item {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    padding: 1rem 2rem;
    font-family: var(--font-head);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    border-radius: 3px;
    transition: 0.3s;
}
.arsenal-item:hover {
    color: var(--text-main);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.team-card {
    text-align: center;
}
.team-card h4 {
    font-size: 2rem;
    margin-bottom: 0.2rem;
}
.team-card p {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Works */
.works { background: var(--bg-dark); }
.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
.work-card {
    height: 450px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}
.work-image {
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.work-card:hover .work-image {
    transform: scale(1.08);
}
.work-info {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 2.5rem 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.95));
    transition: 0.4s;
}
.work-info h3 {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 0.2rem;
}
.work-info p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 2px;
}

/* Contact */
.contact { background: var(--bg-darker); }
.contact-form {
    max-width: 700px;
    margin: 0 auto;
}
.form-group {
    margin-bottom: 1.5rem;
}
input, textarea {
    width: 100%;
    padding: 1.2rem;
    background: #222;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 3px;
    transition: 0.3s;
}
input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #2a2a2a;
}
.w-100 { width: 100%; }

/* Footer */
footer {
    text-align: center;
    padding: 3rem;
    background: var(--bg-darker);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 2px;
    border-top: 1px solid var(--border-color);
}

/* Basic Animations */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1.5s forwards ease-in-out;
}
@keyframes fadeIn {
    to { opacity: 1; }
}

.animate-slide-in {
    opacity: 0;
    transform: translateY(20px);
    animation: slideIn 1s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.delay { animation-delay: 0.5s; }

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

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 4rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { width: 30px; height: 3px; background: #fff; }
}
