:root {
    --primary: #ff3131; /* Vibrant Red */
    --primary-glow: rgba(255, 49, 49, 0.4);
    --secondary: #ffde59; /* Bright Yellow */
    --dark: #0a0a0a; /* Pure Black */
    --dark-accent: #151515; /* Shaded Black */
    --light: #ffffff;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --gradient-primary: linear-gradient(135deg, #ff3131 0%, #ff5757 100%);
    --gradient-accent: linear-gradient(135deg, #ffde59 0%, #ffbd59 100%);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 49, 49, 0.1);
    --border-primary: rgba(255, 49, 49, 0.3);
    --border-light: rgba(255, 255, 255, 0.1);
    --glass: blur(20px);
}

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

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

body {
    font-family: 'Space+Grotesk', sans-serif;
    background-color: var(--dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--light);
}

::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* Navbar */
.navbar {
    background: rgba(10, 10, 10, 0.8) !important;
    backdrop-filter: var(--glass);
    border-bottom: 1px solid var(--border-light);
    padding: 1.2rem 0;
    transition: all 0.4s ease;
}

.navbar-brand {
    font-size: 2rem;
    font-weight: 800;
    color: var(--light) !important;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-transform: uppercase;
}

.navbar-brand span {
    color: var(--primary);
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 600;
    margin: 0 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary) !important;
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    border: none;
    color: #fff;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(255, 49, 49, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    background: var(--primary);
    box-shadow: 0 15px 30px rgba(255, 49, 49, 0.4);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    padding: 0.9rem 2.5rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
}

/* Sections */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    position: relative;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(255, 49, 49, 0.15) 0%, transparent 60%);
}

.hero h1 {
    font-size: 6.5rem;
    line-height: 0.9;
    margin-bottom: 2rem;
    font-weight: 800;
    text-transform: uppercase;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accent-text {
    color: var(--secondary);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 650px;
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Cards */
.glass-card {
    background: var(--dark-accent);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 3rem;
    transition: all 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 49, 49, 0.15);
}

.glass-card-premium {
    background: linear-gradient(145deg, #151515, #0a0a0a);
    border: 1px solid var(--border-light);
    border-radius: 0;
    padding: 4rem 3rem;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
}

.glass-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: all 0.4s ease;
}

.glass-card-premium:hover::before {
    height: 100%;
}

.glass-card-premium:hover {
    transform: translateY(-15px);
    background: #1a1a1a;
    border-color: var(--primary);
}

/* Typography & Utils */
.sub-title {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: block;
}

.section-title {
    font-size: 4rem;
    margin-bottom: 3rem;
    font-weight: 800;
    text-transform: uppercase;
}

.section {
    padding: 120px 0;
}

.counter-item h2 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
}

/* Form Styling */
.form-floating > .form-control {
    background: #1a1a1a;
    border: 1px solid var(--border-light);
    color: var(--light);
    border-radius: 0;
    padding: 1.2rem;
}

.form-floating > .form-control:focus {
    border-color: var(--primary);
    background: #222;
    box-shadow: 0 0 15px var(--primary-glow);
}

.form-floating > label {
    color: var(--text-muted);
}

/* Footer */
footer {
    padding: 100px 0 50px;
    background: #050505;
    border-top: 1px solid var(--border-light);
}

@media (max-width: 1200px) {
    .hero h1 { font-size: 5rem; }
}

@media (max-width: 991px) {
    .hero h1 { font-size: 4rem; }
    .section-title { font-size: 3rem; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .section-title { font-size: 2.5rem; }
    .btn-primary, .btn-outline { width: 100%; text-align: center; }
}