﻿:root {
    --bg: #0b1220;
    --text: #eaf0ff;
    --muted: #b9c3de;
    --primary: #7c5cff;
    --accent: #22c55e;
    --gold: #fbbf24;
    --border: rgba(255,255,255,.10);
    --shadow: 0 20px 50px rgba(0,0,0,.35);
    --radius: 22px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Tajawal", sans-serif;
    background: radial-gradient(1200px 600px at 10% 10%, rgba(124,92,255,.25), transparent 55%), radial-gradient(900px 500px at 90% 20%, rgba(34,197,94,.18), transparent 55%), linear-gradient(180deg, #070b14, var(--bg));
    color: var(--text);
    padding-top: 84px;
    overflow-x: hidden;
}

/* NAV */
.nav-glass {
    background: rgba(10, 15, 28, .72);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    color: var(--text) !important;
}

    .brand .logo {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        background: linear-gradient(135deg, var(--primary), #3b82f6);
        box-shadow: 0 14px 30px rgba(124,92,255,.25);
    }

        .brand .logo i {
            color: white;
        }

.nav-link {
    color: var(--muted) !important;
    font-weight: 700;
    margin: 0 4px;
    border-radius: 14px;
    padding: 10px 14px !important;
    transition: .25s ease;
}

    .nav-link:hover {
        color: var(--text) !important;
        background: rgba(255,255,255,.06);
        transform: translateY(-1px);
    }

    .nav-link i {
        color: var(--gold);
        margin-left: 8px;
    }

/* HERO */
.hero {
    position: relative;
    padding: 70px 0 40px;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: -200px -200px auto -200px;
        height: 520px;
        background: radial-gradient(circle at 40% 30%, rgba(124,92,255,.28), transparent 60%), radial-gradient(circle at 70% 60%, rgba(34,197,94,.18), transparent 60%);
        filter: blur(10px);
        z-index: -1;
    }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255,255,255,.04);
    color: var(--muted);
    font-weight: 700;
}

    .hero-badge i {
        color: var(--accent);
    }

.hero-title {
    font-weight: 900;
    font-size: 56px;
    line-height: 1.12;
    margin: 18px 0 14px;
}

    .hero-title span {
        background: linear-gradient(90deg, var(--gold), var(--primary));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.hero-sub {
    color: var(--muted);
    font-size: 20px;
    line-height: 1.9;
    max-width: 820px;
    margin: 0 auto;
}

.hero-actions {
    margin-top: 26px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-main {
    border: 0;
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 800;
    transition: .25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primaryx {
    background: linear-gradient(135deg, var(--primary), #3b82f6);
    color: white;
    box-shadow: 0 18px 40px rgba(124,92,255,.25);
}

    .btn-primaryx:hover {
        transform: translateY(-2px);
        filter: brightness(1.03);
    }

.btn-ghost {
    background: rgba(255,255,255,.05);
    color: var(--text);
    border: 1px solid var(--border);
}

    .btn-ghost:hover {
        transform: translateY(-2px);
        background: rgba(255,255,255,.08);
    }

/* SECTION */
.section {
    padding: 70px 0;
}

.section-title {
    font-weight: 900;
    font-size: 34px;
    text-align: center;
    margin-bottom: 12px;
}

.section-sub {
    text-align: center;
    color: var(--muted);
    font-size: 18px;
    margin-bottom: 34px;
}

/* CARDS */
.cardx {
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 26px;
    height: 100%;
    transition: .25s ease;
    position: relative;
    overflow: hidden;
}

    .cardx::after {
        content: "";
        position: absolute;
        inset: auto -40px -60px auto;
        width: 180px;
        height: 180px;
        background: radial-gradient(circle, rgba(251,191,36,.18), transparent 60%);
        transform: rotate(20deg);
        pointer-events: none;
    }

    .cardx:hover {
        transform: translateY(-8px);
        border-color: rgba(124,92,255,.35);
    }

.ic {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    background: rgba(124,92,255,.14);
    border: 1px solid rgba(124,92,255,.25);
}

    .ic i {
        color: #d7d0ff;
        font-size: 22px;
    }

.cardx h5 {
    font-weight: 900;
    margin-bottom: 8px;
}

.cardx p {
    color: var(--muted);
    line-height: 1.9;
    margin: 0;
}

.meta-lines {
    color: var(--muted);
    line-height: 2;
    font-weight: 800;
}

    .meta-lines i {
        color: var(--gold);
        margin-left: 10px;
    }

/* STATS */
.stats {
    padding: 18px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(255,255,255,.03);
}

.stat {
    text-align: center;
    padding: 18px 10px;
    border-radius: 18px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
}

    .stat .num {
        font-size: 34px;
        font-weight: 900;
        background: linear-gradient(90deg, var(--accent), var(--gold));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .stat .lbl {
        color: var(--muted);
        font-weight: 700;
    }

.note {
    color: var(--muted);
    font-size: 14px;
}

/* MAP */
.map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    background: rgba(255,255,255,.03);
    height: 100%;
}

iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
}

/* FORM */
.form-control, textarea {
    background: rgba(255,255,255,.04) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    color: var(--text) !important;
    border-radius: 16px !important;
    padding: 14px 14px !important;
    font-weight: 600;
}

    .form-control::placeholder, textarea::placeholder {
        color: rgba(234,240,255,.55);
    }

    .form-control:focus, textarea:focus {
        box-shadow: 0 0 0 4px rgba(124,92,255,.18) !important;
        border-color: rgba(124,92,255,.45) !important;
    }

.btn-whatsapp {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #06130a;
    font-weight: 900;
    border: 0;
    border-radius: 16px;
    padding: 14px 16px;
    transition: .25s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 18px 40px rgba(34,197,94,.18);
}

    .btn-whatsapp:hover {
        transform: translateY(-2px);
        filter: brightness(1.02);
    }

.small-muted {
    color: var(--muted);
}

.contact-lines .line {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--muted);
    font-weight: 800;
    line-height: 2;
}

    .contact-lines .line i {
        color: var(--gold);
    }

.contact-lines a {
    color: var(--text);
    text-decoration: none;
    font-weight: 900;
}

/* FOOTER */
footer {
    border-top: 1px solid var(--border);
    background: rgba(8, 12, 22, .7);
    padding: 34px 0;
}

.foot-row {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
}

    .foot-row span {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,.10);
        background: rgba(255,255,255,.03);
    }

    .foot-row i {
        color: var(--gold);
    }

.social {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

    .social a {
        width: 44px;
        height: 44px;
        border-radius: 16px;
        display: grid;
        place-items: center;
        border: 1px solid rgba(255,255,255,.10);
        background: rgba(255,255,255,.03);
        color: var(--text);
        transition: .25s ease;
        text-decoration: none;
    }

        .social a:hover {
            transform: translateY(-3px);
            border-color: rgba(251,191,36,.35);
            color: var(--gold);
        }

.copy {
    text-align: center;
    color: var(--muted);
    margin-top: 14px;
    font-weight: 700;
}

/* Scroll Top */
#topBtn {
    position: fixed;
    left: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(10px);
    color: var(--text);
    display: none;
    box-shadow: 0 18px 40px rgba(0,0,0,.25);
    transition: .25s ease;
    z-index: 9999;
}

    #topBtn:hover {
        transform: translateY(-3px);
        border-color: rgba(124,92,255,.35);
    }

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 76px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-sub {
        font-size: 17px;
    }

    .section-title {
        font-size: 28px;
    }
}
.dev{
  text-align: center;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 800;
  color: rgba(234,240,255,.75);
}

.dev span{
  color: var(--gold);
  font-weight: 900;
}