:root {
    --color-bg: #050505;
    --color-bg-secondary: #0a0a0a;
    --color-orange: #FF5E00;
    --color-orange-glow: rgba(255, 94, 0, 0.3);
    --color-text-primary: #FFFFFF;
    --color-text-secondary: #A0A0A0;
    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-main: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Typography Utilities */
.text-orange { color: var(--color-orange); }
.text-gradient {
    background: linear-gradient(135deg, #FF5E00 0%, #FF9900 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Custom Cursor Glow */
.cursor-glow {
    position: fixed;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--color-orange-glow) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
    transition: width 0.3s, height 0.3s;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    transition: var(--transition-smooth);
}
.navbar.scrolled {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--color-text-primary);
    letter-spacing: 1px;
}
.nav-links {
    display: flex;
    gap: 40px;
}
.nav-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
}
.nav-links a:hover {
    color: var(--color-text-primary);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-orange);
    transition: var(--transition-smooth);
}
.nav-links a:hover::after {
    width: 100%;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}
.cta-button.primary {
    background: var(--color-orange);
    color: #fff;
    box-shadow: 0 4px 20px var(--color-orange-glow);
}
.cta-button.primary:hover {
    background: #FF7B00;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 94, 0, 0.5);
}
.cta-button.secondary {
    background: transparent;
    color: #fff;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
}
.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}
.nav-cta {
    padding: 10px 20px;
    font-size: 0.9rem;
    background: rgba(255, 94, 0, 0.1);
    color: var(--color-orange);
    border: 1px solid rgba(255, 94, 0, 0.2);
}
.nav-cta:hover {
    background: var(--color-orange);
    color: #fff;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 40px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: slowPan 20s infinite alternate linear;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0.7) 40%, rgba(5,5,5,0.2) 100%);
}
@keyframes slowPan {
    0% { transform: scale(1.05) translate(0, 0); }
    100% { transform: scale(1.1) translate(-2%, 1%); }
}
.hero-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}
.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 94, 0, 0.15);
    border: 1px solid rgba(255, 94, 0, 0.3);
    color: var(--color-orange);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.hero h1 {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.hero p {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    max-width: 500px;
    margin-bottom: 40px;
}
.hero-actions {
    display: flex;
    gap: 20px;
}

/* Services Section */
.services {
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}
.section-header {
    text-align: center;
    margin-bottom: 80px;
}
.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}
.section-header p {
    color: var(--color-text-secondary);
    font-size: 1.2rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card {
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
    group: hover;
}
.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 94, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px var(--color-orange-glow);
}
.service-image {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.service-card:hover .service-image img {
    transform: scale(1.1);
}
.premium-placeholder {
    width: 100%;
    height: 100%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.glow-orb {
    width: 100px;
    height: 100px;
    background: var(--color-orange);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
}
.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(20,20,20,1), transparent);
}
.service-info {
    padding: 30px;
    position: relative;
}
.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 94, 0, 0.1);
    border: 1px solid rgba(255, 94, 0, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange);
    margin-bottom: 20px;
    margin-top: -55px; /* Pull up over the image overlay */
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}
.service-card:hover .icon-box {
    background: var(--color-orange);
    color: #fff;
    transform: scale(1.1);
}
.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 600;
}
.service-info p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

/* Why Us Section */
.why-us {
    padding: 60px 40px 120px;
    max-width: 1400px;
    margin: 0 auto;
}
.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}
.stat-item {
    text-align: center;
    padding: 40px;
}
.stat-item h3 {
    font-size: 4rem;
    color: var(--color-orange);
    font-weight: 800;
    display: inline-block;
    line-height: 1;
}
.stat-item span {
    font-size: 2rem;
    color: var(--color-orange);
    font-weight: 800;
}
.stat-item p {
    color: var(--color-text-secondary);
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px;
    background: linear-gradient(135deg, rgba(20,20,20,0.8) 0%, rgba(40,15,0,0.8) 100%);
    border-color: rgba(255, 94, 0, 0.2);
}
.banner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.banner-content p {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
}
.pulse-anim {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 94, 0, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 94, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 94, 0, 0); }
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 40px;
    background: rgba(5,5,5,0.9);
}
.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-brand p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-top: 5px;
}
.footer-legal {
    color: rgba(255,255,255,0.3);
    font-size: 0.85rem;
}

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 { font-size: 4rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-container { grid-template-columns: repeat(1, 1fr); }
    .cta-banner { flex-direction: column; text-align: center; gap: 30px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 3rem; }
    .hero-bg img { transform: scale(1.1); animation: none; }
    .services-grid { grid-template-columns: 1fr; }
    .cta-banner { padding: 40px 20px; }
}
