/* --- 1. RESET & VARIABLES --- */
:root {
    --bg: #050505;
    --surface: #101010;
    --primary: #00f2ff; /* Cyan Neon */
    --secondary: #7000ff; /* Purple */
    --text: #ffffff;
    --text-muted: #b3b3b3;
    --font: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- 2. BACKGROUND EFFECTS --- */
.tech-grid {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    pointer-events: none;
}

.glow-spot {
    position: fixed;
    width: 400px; height: 400px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    opacity: 0.2;
}
.top-left { top: -100px; left: -100px; background: var(--secondary); }
.bottom-right { bottom: -100px; right: -100px; background: var(--primary); }

/* --- 3. NAVIGATION --- */
nav {
    position: fixed; top: 0; width: 100%;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    z-index: 1000;
    padding: 15px 0;
}
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; font-weight: 800; letter-spacing: -0.5px; }
.text-gradient {
    background: linear-gradient(90deg, var(--primary), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.menu { list-style: none; display: flex; gap: 30px; align-items: center; }
.menu a { color: var(--text-muted); text-decoration: none; font-weight: 500; transition: 0.3s; font-size: 14px; }
.menu a:hover { color: var(--primary); }
.btn-nav {
    padding: 8px 20px;
    border: 1px solid var(--primary);
    color: var(--primary) !important;
    border-radius: 4px;
}
.btn-nav:hover { background: var(--primary); color: #000 !important; }

/* --- 4. HERO SECTION --- */
.hero {
    height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding-top: 60px;
}
.tagline { color: var(--primary); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 15px; display: block; }
.hero h1 { font-size: 56px; line-height: 1.1; font-weight: 800; margin-bottom: 25px; }
.hero p { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto 40px; }

.btn-group { display: flex; gap: 15px; justify-content: center; margin-bottom: 60px; }
.btn-primary {
    background: var(--primary); color: #000;
    padding: 14px 35px; border-radius: 6px;
    text-decoration: none; font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}
.btn-primary:hover { box-shadow: 0 0 40px rgba(0, 242, 255, 0.6); transform: translateY(-2px); }

.btn-outline {
    border: 1px solid rgba(255,255,255,0.3); color: white;
    padding: 14px 35px; border-radius: 6px;
    text-decoration: none; font-weight: 600;
    transition: 0.3s;
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* --- 5. STATS --- */
.stats-container {
    display: inline-flex; align-items: center; gap: 40px;
    background: rgba(255,255,255,0.05);
    padding: 15px 40px; border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
}
.stat h3 { font-size: 24px; color: white; margin-bottom: 0; }
.stat span { font-size: 11px; color: var(--text-muted); text-transform: uppercase; }
.stat-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.1); }

/* --- 6. SERVICES --- */
.section { padding: 100px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 36px; margin-bottom: 10px; }
.title-bar { width: 60px; height: 4px; background: var(--primary); margin: 10px auto; border-radius: 2px; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background: #121212;
    padding: 35px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
    text-align: left;
}
.service-card:hover { transform: translateY(-10px); border-color: var(--primary); }

.icon-circle {
    width: 60px; height: 60px;
    background: rgba(0, 242, 255, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.service-card h3 { font-size: 20px; margin-bottom: 10px; color: white; }
.service-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }

.card-btn {
    display: block; width: 100%; text-align: center;
    padding: 12px; border-radius: 6px;
    background: transparent; color: var(--primary);
    border: 1px solid var(--primary);
    text-decoration: none; font-weight: 600; font-size: 14px;
    transition: 0.3s;
}
.card-btn:hover { background: var(--primary); color: black; }

/* --- 7. ABOUT & REVIEWS --- */
.bg-dim { background: #0a0a0a; }
.about-text { text-align: center; max-width: 800px; margin: 0 auto; }
.address-box {
    margin-top: 30px; background: #151515; padding: 20px;
    border-radius: 8px; display: inline-flex; align-items: center; gap: 15px;
    text-align: left; border: 1px solid #333;
}
.address-box i { font-size: 24px; color: var(--primary); }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card { background: #151515; padding: 30px; border-radius: 12px; border: 1px solid #222; }
.user-profile { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.user-profile img { width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--primary); }
.stars { color: #FFD700; font-size: 14px; margin-top: 15px; }

/* --- 8. FOOTER --- */
footer { padding: 40px 0; border-top: 1px solid #222; background: #000; font-size: 14px; }
.footer-flex { display: flex; justify-content: space-between; align-items: center; }
.brand h3 { color: white; }
.contact-info { text-align: right; color: var(--text-muted); }

/* --- 9. MODAL --- */
.modal {
    display: none; position: fixed; z-index: 2000; left: 0; top: 0;
    width: 100%; height: 100%; background-color: rgba(0,0,0,0.85);
    justify-content: center; align-items: center;
    backdrop-filter: blur(5px);
}
.modal-content {
    background: #1a1a1a; padding: 40px; border-radius: 12px;
    width: 90%; max-width: 400px; text-align: center;
    border: 1px solid var(--primary); position: relative;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}
.close { position: absolute; right: 20px; top: 10px; font-size: 30px; cursor: pointer; color: white; }
.modal h2 { margin-bottom: 20px; color: white; }
.divider-text { margin: 15px 0; color: #555; font-size: 12px; font-weight: bold; }

.modal-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 12px; margin-bottom: 10px;
    text-decoration: none; border-radius: 6px; font-weight: 600;
}
.primary-btn { background: var(--primary); color: black; }
.secondary-btn { border: 1px solid white; color: white; }
.whatsapp-btn { background: #25D366; color: white; }