:root {
    --primary: #FF4D4D;
    --primary-dark: #cc0000;
    --secondary: #6C5DD3;
    --accent: #FFB800;
    --bg-dark: #050505;
    --bg-card: rgba(20, 20, 23, 0.6);
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --gradient-main: linear-gradient(135deg, #FF4D4D 0%, #F9CB28 100%);
    --gradient-hero: linear-gradient(135deg, #FF4D4D 0%, #6C5DD3 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(255, 77, 77, 0.4) 0%, rgba(108, 93, 211, 0.1) 60%, transparent 100%);
    --shadow-card: 0 10px 40px -10px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 20px rgba(255, 77, 77, 0.3);
    --border-light: rgba(255, 255, 255, 0.1);
    --glass: blur(20px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-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.02em;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 4px;
}

/* Navbar */
.navbar {
    background: rgba(5, 5, 5, 0.8) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-light);
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    margin: 0 1rem;
    font-size: 1rem;
    position: relative;
    padding-bottom: 5px;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-main) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--primary);
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.btn-primary {
    background: var(--primary);
    background: var(--gradient-main);
    border: none;
    color: #000;
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, #F9CB28 0%, #FF4D4D 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 77, 77, 0.5);
    color: #000;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-main);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-main);
    color: var(--text-main);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--gradient-glow);
    filter: blur(100px);
    top: -200px;
    right: -100px;
    z-index: -1;
    opacity: 0.6;
    animation: pulse 10s infinite alternate;
}

.hero-bg-glow-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(108, 93, 211, 0.2) 0%, transparent 70%);
    filter: blur(80px);
    bottom: -100px;
    left: -100px;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.7; }
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.2rem;
}
.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections */
.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    margin-bottom: 5rem;
}

.sub-title {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* Cards */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    height: 100%;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

/* Service Card */
.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--text-main);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    color: var(--primary);
}

/* Contact Page Specifics */
.contact-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 30px;
    overflow: hidden;
    padding: 0;
}

.contact-info-panel {
    background: var(--gradient-hero);
    padding: 4rem;
    color: white;
    height: 100%;
}

.contact-form-panel {
    padding: 4rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    color: var(--text-main);
    padding: 1rem 1.5rem;
    border-radius: 12px;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    color: var(--text-main);
    box-shadow: none;
}

.form-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: #020202;
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border-light);
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--text-main);
}

.footer-link {
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .contact-info-panel, .contact-form-panel { padding: 2rem; }
}
