/* --- VARIABLES --- */
:root {
    --bg-dark: #05050f;
    --primary-neon: #b026ff;
    --secondary-neon: #7a00cc;
    --text-white: #ffffff;
    --text-muted: #a0a0b5;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
}

/* --- RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
    background-image: radial-gradient(circle at 10% 0%, rgba(58, 28, 113, 0.6) 0%, transparent 40%),
                      radial-gradient(circle at 90% 100%, rgba(176, 38, 255, 0.15) 0%, transparent 40%);
    background-attachment: fixed;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3 { font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
.text-gradient {
    background: linear-gradient(90deg, #b026ff, #d480ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.highlight { color: var(--primary-neon); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-title { font-size: 2.5rem; margin-bottom: 3rem; }
.center { text-align: center; }

/* --- BUTTONS --- */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    cursor: pointer;
}
.btn-primary {
    background: var(--primary-neon);
    color: white;
    box-shadow: 0 0 15px rgba(176, 38, 255, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 25px rgba(176, 38, 255, 0.6); }
.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    margin-left: 10px;
}
.btn-white { background: white; color: var(--primary-neon); }
.btn-outline { border: 1px solid white; color: white; margin-left: 10px; }

/* --- NAVBAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0; width: 100%;
    background: rgba(5, 5, 15, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}
.logo { font-size: 1.5rem; font-weight: 800; }
.nav-links a { margin: 0 1.5rem; color: var(--text-muted); transition: 0.3s; }
.nav-links a:hover { color: var(--primary-neon); }
.mobile-menu-icon { display: none; font-size: 1.5rem; cursor: pointer; }

/* --- HERO --- */
.hero-section {
    padding: 10rem 2rem 5rem;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-content h1 { font-size: 3.5rem; margin-bottom: 1.5rem; }
.hero-sub { max-width: 600px; margin: 0 auto 2.5rem; color: var(--text-muted); font-size: 1.1rem; }

/* --- SERVICES CARDS (Glass) --- */
.services-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 4rem;
    width: 100%;
    max-width: 1200px;
}
.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    flex: 1;
    min-width: 280px;
    text-align: left;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}
.service-card:hover { transform: translateY(-5px); border-color: var(--primary-neon); }
.icon-wrapper {
    width: 60px; height: 60px;
    background: rgba(176, 38, 255, 0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-neon);
}
.icon-wrapper svg { width: 30px; height: 30px; }

/* --- ABOUT SECTION --- */
.about-section { padding: 8rem 0; background: #080816; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.pill-badge {
    display: inline-block; padding: 0.4rem 1rem;
    background: rgba(176, 38, 255, 0.1);
    color: var(--primary-neon);
    border-radius: 20px; font-size: 0.8rem; font-weight: 700;
    margin-bottom: 1rem;
}
.subtitle { color: var(--text-muted); margin-bottom: 2rem; }
.feature-list li { margin-bottom: 0.8rem; display: flex; align-items: center; gap: 10px; }
.check-icon { color: var(--primary-neon); font-weight: bold; }
.founder-badge { border-left: 3px solid var(--primary-neon); padding-left: 1rem; margin-top: 2rem; }
.founder-badge .name { font-weight: 700; font-size: 1.1rem; }
.founder-badge .role { color: var(--text-muted); font-size: 0.9rem; }
.neon-frame {
    border: 2px solid var(--primary-neon);
    padding: 10px; border-radius: 10px;
    transform: rotate(-3deg);
    box-shadow: 0 0 30px rgba(176, 38, 255, 0.2);
    transition: 0.4s;
}
.neon-frame:hover { transform: rotate(0deg); }
.neon-frame img { width: 100%; border-radius: 5px; display: block; }

/* --- PROCESS (Timeline) --- */
.process-section { padding: 8rem 0; position: relative; }
.timeline { position: relative; max-width: 1000px; margin: 0 auto; }
.timeline::after {
    content: ''; position: absolute; width: 2px;
    background: rgba(176, 38, 255, 0.3);
    top: 0; bottom: 0; left: 50%; margin-left: -1px;
}
.timeline-item { padding: 10px 40px; position: relative; width: 50%; box-sizing: border-box; }
.timeline-item.left { left: 0; text-align: right; }
.timeline-item.right { left: 50%; }
.timeline-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem; border-radius: 12px;
    position: relative; transition: 0.3s;
}
.timeline-content:hover { border-color: var(--primary-neon); }
.step-number {
    font-size: 3rem; font-weight: 800;
    color: rgba(255,255,255,0.05);
    position: absolute; top: 10px;
}
.left .step-number { left: 20px; }
.right .step-number { right: 20px; }
/* Timeline Dots */
.timeline-item::after {
    content: ''; position: absolute;
    width: 20px; height: 20px;
    background: var(--bg-dark);
    border: 3px solid var(--primary-neon);
    border-radius: 50%; z-index: 1;
    top: 30px;
}
.left::after { right: -10px; }
.right::after { left: -10px; }

/* --- FOOTER & TESTIMONIALS --- */
.testimonials-section { padding: 5rem 0; text-align: center; }
.testimonial-card {
    background: var(--glass-bg);
    max-width: 700px; margin: 0 auto;
    padding: 3rem; border-radius: 20px;
    border: 1px solid var(--glass-border);
}
.quote-icon { font-size: 4rem; color: var(--primary-neon); line-height: 1; margin-bottom: 1rem; }

footer { background: #020205; padding: 4rem 2rem 2rem; border-top: 1px solid var(--glass-border); }
.footer-cta {
    background: linear-gradient(135deg, var(--primary-neon), #4a0080);
    padding: 3rem; border-radius: 20px;
    text-align: center; margin-bottom: 4rem;
}
.footer-links {
    display: flex; justify-content: space-between;
    max-width: 1000px; margin: 0 auto 3rem;
    flex-wrap: wrap; gap: 2rem;
}
.footer-links h4 { color: white; margin-bottom: 1rem; }
.footer-links a, .footer-links p {
    display: block; color: var(--text-muted);
    margin-bottom: 0.5rem; font-size: 0.9rem;
}
.copyright { text-align: center; color: var(--text-muted); font-size: 0.8rem; border-top: 1px solid #222; padding-top: 2rem; }

/* --- ANIMATIONS & MOBILE --- */
.fade-in, .fade-in-up, .fade-in-left, .fade-in-right { opacity: 0; transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in-up { transform: translateY(30px); }
.fade-in-left { transform: translateX(-30px); }
.fade-in-right { transform: translateX(30px); }
.visible { opacity: 1; transform: none; }

/* Mobile Menu */
.mobile-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-dark); display: none;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 2rem; z-index: 2000;
}
.mobile-menu.active { display: flex; }
.close-icon { position: absolute; top: 20px; right: 30px; font-size: 2rem; cursor: pointer; }

@media (max-width: 768px) {
    .nav-links, .btn-primary { display: none; } /* Hide desktop nav */
    .mobile-menu-icon { display: block; } /* Show mobile icon */
    .navbar .btn-primary { display: none; } 
    
    .hero-content h1 { font-size: 2.2rem; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image { order: -1; }
    
    /* Timeline Mobile Fix */
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item.left, .timeline-item.right { left: 0; text-align: left; }
    .left::after, .right::after { left: 21px; }
}

/* --- CONTACT FORM STYLES --- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 0;
    text-align: left;
}

.contact-form input, 
.contact-form textarea {
    /* ⚠️ STRIP MOBILE BROWSER DEFAULTS ⚠️ */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    
    /* YOUR CUSTOM STYLES */
    width: 100%;
    padding: 1rem 1.2rem;
    background-color: rgba(255, 255, 255, 0.05) !important; /* Forced background */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input::placeholder, 
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form input:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-neon);
    background: rgba(176, 38, 255, 0.05);
    box-shadow: 0 0 10px rgba(176, 38, 255, 0.2);
}

.form-submit-btn {
    margin-top: 1rem;
    width: 100%;
}