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

:root {
    --bg-dark: #050505;
    --bg-card: rgba(255, 255, 255, 0.02);
    --border-glass: rgba(255, 255, 255, 0.05);
    
    --neon-cyan: #0DF0D6;
    --neon-purple: #8A2BE2;
    --gradient-glow: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    
    --text-pure: #ffffff;
    --text-dim: #9CA3AF;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

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

/* Background Glowing Orbs */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    pointer-events: none;
}
.orb-1 {
    width: 50vw;
    height: 50vw;
    background: rgba(13, 240, 214, 0.1);
    top: -20vh;
    left: -20vw;
}
.orb-2 {
    width: 40vw;
    height: 40vw;
    background: rgba(138, 43, 226, 0.1);
    bottom: -10vh;
    right: -10vw;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.text-cyan { color: var(--neon-cyan); }
.text-dim { color: var(--text-dim); }
.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-glow {
    background: var(--bg-dark);
    color: var(--text-pure);
    border: 1px solid var(--neon-cyan);
    box-shadow: 0 0 15px rgba(13, 240, 214, 0.3), inset 0 0 10px rgba(13, 240, 214, 0.1);
}
.btn-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}
.btn-glow:hover {
    box-shadow: 0 0 30px rgba(13, 240, 214, 0.6);
    border-color: transparent;
}
.btn-glow:hover::before {
    opacity: 1;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-pure);
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Layout */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}
.header.scrolled {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(13, 240, 214, 0.2);
    transition: var(--transition);
}
.logo:hover {
    box-shadow: 0 0 25px rgba(13, 240, 214, 0.5);
}
.logo img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
    list-style: none;
}
.nav-links a {
    color: var(--text-dim);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-glow);
    transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
    color: var(--text-pure);
}
.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
    box-shadow: 0 0 10px var(--neon-cyan);
}

.mobile-menu-btn {
    display: none;
    font-size: 2rem;
    color: var(--text-pure);
    background: none;
    border: none;
    cursor: pointer;
}

/* Glass Card Global Modifier */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* Common Section Styles */
.section {
    padding: 8rem 0;
    position: relative;
    z-index: 10;
}
.section-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}
.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto 4rem;
    font-weight: 300;
}

/* Custom Grids */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: -4rem;
    position: relative;
    z-index: 20;
}
.stat-card {
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
}
.stat-card:hover {
    transform: translateY(-10px);
    border-color: rgba(13, 240, 214, 0.3);
    box-shadow: 0 20px 40px rgba(13, 240, 214, 0.1);
}
.stat-number {
    font-size: 4rem;
    font-weight: 900;
}
.stat-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Timeline Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
}
.process-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
    z-index: -1;
}
.step-card {
    padding: 3rem;
    text-align: center;
}
.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 1px solid var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(13, 240, 214, 0.2);
}

/* Service Grid Neo */
.neo-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.neo-service-card {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}
.neo-service-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.neo-service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.4) 50%, transparent 100%);
    transition: var(--transition);
}
.neo-service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    transform: translateY(20px);
    transition: var(--transition);
}
.neo-service-card:hover .neo-service-bg {
    transform: scale(1.1);
    filter: grayscale(100%);
}
.neo-service-card:hover .neo-service-overlay {
    background: linear-gradient(to top, rgba(13, 240, 214, 0.9) 0%, rgba(5,5,5,0.8) 50%, rgba(5,5,5,0.4) 100%);
}
.neo-service-card:hover .neo-service-content {
    transform: translateY(0);
}
.neo-service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Asymmetric Why Us */
.asym-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.asym-img-wrapper {
    position: relative;
}
.asym-img {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    filter: brightness(0.8);
}
.img-glow {
    position: absolute;
    inset: -10px;
    background: var(--gradient-glow);
    filter: blur(30px);
    z-index: 1;
    opacity: 0.5;
    border-radius: 20px;
}
.feature-list {
    list-style: none;
    margin-top: 2rem;
}
.feature-list li {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--text-dim);
}
.feature-list li::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-cyan);
}

/* Subpages General */
.page-header-neo {
    padding: 12rem 0 6rem;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, rgba(13,240,214,0.05) 0%, var(--bg-dark) 100%);
    border-bottom: 1px solid var(--border-glass);
}
.page-header-neo h1 {
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}
.page-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}
.page-content-wrapper p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
}
.page-content-wrapper h2 {
    font-size: 2.5rem;
    margin: 4rem 0 2rem;
    color: var(--text-pure);
}
.page-content-wrapper ul {
    margin-bottom: 2rem;
    padding-left: 2rem;
}
.page-content-wrapper li {
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Contact Forms & Inputs */
.contact-neo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 1.2rem 1.5rem;
    color: var(--text-pure);
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 8px;
    outline: none;
    transition: var(--transition);
}
.form-control:focus {
    border-color: var(--neon-cyan);
    background: rgba(13, 240, 214, 0.05);
    box-shadow: 0 0 15px rgba(13, 240, 214, 0.1);
}
.info-row {
    margin-bottom: 2.5rem;
}
.info-row h4 {
    color: var(--neon-cyan);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.info-row p {
    font-size: 1.5rem;
    color: var(--text-pure);
    font-weight: 600;
}

/* FAQ */
.faq-box {
    margin-bottom: 1.5rem;
}
.faq-trigger {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 2rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-pure);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-glass);
}
.faq-content {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: var(--text-dim);
    font-size: 1.1rem;
}
.faq-box.open .faq-content {
    padding: 2rem;
    max-height: 500px;
}
.faq-trigger span {
    color: var(--neon-cyan);
    font-size: 2rem;
    transition: var(--transition);
}
.faq-box.open .faq-trigger span {
    transform: rotate(45deg);
    color: var(--neon-purple);
}

/* Footer Neon */
.footer-neo {
    background: #020202;
    padding: 6rem 0 2rem;
    border-top: 1px solid var(--border-glass);
    position: relative;
    overflow: hidden;
}
.footer-grid-neo {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 6rem;
}
.footer-links-neo {
    list-style: none;
}
.footer-links-neo li {
    margin-bottom: 1rem;
}
.footer-links-neo a {
    color: var(--text-dim);
    font-size: 1.1rem;
}
.footer-links-neo a:hover {
    color: var(--neon-cyan);
    padding-left: 10px;
}
.footer-bottom-neo {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.3);
    font-size: 0.9rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .stats-grid, .process-grid, .asym-grid, .contact-neo-grid, .footer-grid-neo {
        grid-template-columns: 1fr;
    }
    .stats-grid { margin-top: 0; }
    .process-grid::before { display: none; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(5,5,5,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        z-index: 1000;
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 2rem; margin-bottom: 1rem; }
    .mobile-menu-btn { display: block; z-index: 1001; position: relative; }
    .section-title { font-size: 2.5rem; }
}
