@charset "UTF-8";

:root {
    --bg: #edf6fb;
    --bg-soft: #f7fbfe;
    --surface: rgba(255, 255, 255, 0.86);
    --surface-strong: #ffffff;
    --surface-muted: #dbeef8;
    --ink: #102432;
    --ink-soft: #365061;
    --muted: #617b8d;
    --line: rgba(28, 132, 192, 0.14);
    --accent: #1c84c0;
    --accent-strong: #166c9d;
    --accent-soft: #8ec6e5;
    --secondary: #0f4f74;
    --secondary-soft: #d8ebf6;
    --success: #2e6a4f;
    --danger: #b13f2f;
    --shadow-lg: 0 24px 60px rgba(17, 76, 109, 0.14);
    --shadow-md: 0 14px 30px rgba(17, 76, 109, 0.1);
    --shadow-sm: 0 8px 18px rgba(17, 76, 109, 0.08);
    --radius-lg: 30px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --container: min(1120px, calc(100% - 32px));
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

[v-cloak] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    direction: rtl;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Geeza Pro", "Cairo", "Tahoma", sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--ink);
    background:
        radial-gradient(circle at top right, rgba(28, 132, 192, 0.16), transparent 30%),
        radial-gradient(circle at left 20%, rgba(15, 79, 116, 0.12), transparent 24%),
        linear-gradient(180deg, #f8fcff 0%, #edf6fb 52%, #e1f0f8 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    pointer-events: none;
    z-index: -1;
    border-radius: 50%;
    filter: blur(8px);
}

body::before {
    width: 300px;
    height: 300px;
    top: -120px;
    left: -60px;
    background: rgba(28, 132, 192, 0.09);
}

body::after {
    width: 360px;
    height: 360px;
    right: -120px;
    bottom: 8%;
    background: rgba(15, 79, 116, 0.08);
}

a {
    color: var(--accent-strong);
    text-decoration-color: rgba(28, 132, 192, 0.3);
    text-underline-offset: 0.24em;
}

a:hover {
    text-decoration-color: currentColor;
}

p {
    margin: 0 0 1.15rem;
    color: var(--ink-soft);
}

h1,
h2,
h3,
h4 {
    margin: 0;
    color: var(--ink);
    line-height: 1.4;
}

h1 {
    font-size: clamp(1.5rem, 2.5vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(1.3rem, 2.3vw, 2.15rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

h4 {
    font-size: 1.1rem;
    font-weight: 700;
}

ul,
ol,
dl {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    display: block;
}

svg {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

input[type="tel"] {
    direction: ltr;
    text-align: right;
}

select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}

input::placeholder,
textarea::placeholder {
    color: #6d8ea2 !important;
    opacity: 1;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.header {
    width: var(--container);
    margin: 18px auto 0;
    padding: 16px 20px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    position: sticky;
    top: 14px;
    z-index: 60;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(28, 132, 192, 0.08);
    border-radius: 999px;
    box-shadow: var(--shadow-md);
    transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.header.scrolldown {
    transform: translateY(-140%);
}

.header.scrollup,
.header.active {
    transform: translateY(0);
}

.logo {
    display: inline-flex;
    align-items: center;
    width: 92px;
    min-height: 54px;
    padding-right: 8px;
}

.logo img {
    max-height: 40px;
    width: auto;
}

.nav {
    justify-self: center;
}

.nav ul {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
}

.nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    color: var(--ink);
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 600;
    transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.nav a:hover {
    background: rgba(28, 132, 192, 0.08);
    color: var(--accent-strong);
    transform: translateY(-1px);
}

.icons {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ns {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.search,
.burger {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(28, 132, 192, 0.1);
    background: rgba(255, 255, 255, 0.68);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.search:hover,
.burger:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(28, 132, 192, 0.25);
}

.header .icons .search svg {
    fill: var(--accent-strong);
}

.header .icons .burger svg {
    overflow: visible;
}

.header .icons .burger svg path {
    stroke: #1c84c0;
    stroke-linecap: round;
    transform-box: fill-box;
    transform-origin: center;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.burger.show .top-line {
    transform: translateY(10px) rotate(45deg);
}

.burger.show .middle-line {
    opacity: 0;
}

.burger.show .bottom-line {
    transform: translateY(-10px) rotate(-45deg);
}

.nav-enter-active,
.nav-leave-active {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-enter-from,
.nav-leave-to {
    opacity: 0;
    transform: translateY(-8px);
}

main.container {
    padding: 38px 0 80px;
}

main.container.home {
    display: grid;
    gap: 28px;
}

.hero-head,
.page-head {
    position: relative;
    overflow: hidden;
    padding: clamp(32px, 5vw, 60px);
    border-radius: calc(var(--radius-lg) + 6px);
    background:
        linear-gradient(135deg, rgba(11, 48, 70, 0.96), rgba(20, 93, 136, 0.88)),
        linear-gradient(135deg, rgba(28, 132, 192, 0.22), rgba(15, 79, 116, 0.18));
    box-shadow: var(--shadow-lg);
    isolation: isolate;
}

.hero-head::before,
.page-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.08) 49%, transparent 100%),
        radial-gradient(circle at top left, rgba(142, 198, 229, 0.36), transparent 26%);
    opacity: 0.85;
    z-index: -1;
}

.hero-head::after,
.page-head::after {
    content: "صياغة دقيقة . لغة مهنية . عرض واضح";
    position: absolute;
    inset: auto 32px 26px auto;
    color: rgba(232, 245, 252, 0.78);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-head h1,
.page-head h1 {
    max-width: 12ch;
    color: #fffaf4;
}

.step-wrap,
.content {
    display: grid;
    gap: 28px;
}

.content > * {
    min-width: 0;
}

.step-wrap.home .content {
    gap: 39px;
}

.panel-box,
.fields-wrap {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 254, 0.94));
    border: 1px solid rgba(28, 132, 192, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.panel-box::before,
.fields-wrap::before {}

.panel-box.p-24 {
    padding: 26px;
}

.m-desc {
    font-size: 1.05rem;
}

.main-text {
    font-size: clamp(1rem, 1.6vw, 1.16rem);
    line-height: 1.75;
    color: var(--ink);
}

.section-heading {
    position: relative;
    padding-inline-start: 18px;
}

.section-heading::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0.1em;
    width: 6px;
    height: 1.4em;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent), var(--secondary));
}

.section-heading-spaced {}

.process-steps-list,
.faq-list,
.services,
.footer ul {
    list-style: none;
}

.process-steps,
.service-price,
.faq {
    display: grid;
    gap: 20px;
}

.process-steps-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    counter-reset: process;
}

.process-step-item {
    min-height: 220px;
    display: grid;
    align-content: start;
    gap: 8px;
    padding-top: 74px !important;
}

.process-step-item::after {
    counter-increment: process;
    content: counter(process, decimal-leading-zero);
    position: absolute;
    top: 24px;
    right: 24px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #fff7ef;
    font-size: 0.86rem;
    font-weight: 800;
    box-shadow: 0 14px 24px rgba(28, 132, 192, 0.24);
}

.process-step-title {
    color: var(--ink);
    margin-top: 0.5rem;
}

.process-step-text {
    margin: 0;
    color: var(--muted);
}

.service-price-card {
    display: grid;
    justify-items: start;
    gap: 10px;
    background:
        radial-gradient(circle at top left, rgba(142, 198, 229, 0.25), transparent 34%),
        linear-gradient(135deg, rgba(15, 79, 116, 0.95), rgba(10, 60, 89, 0.96));
    color: #fefaf5;
}

.service-price-card::before {
    border-color: rgba(255, 255, 255, 0.08);
}

.service-price-label,
.service-price-amount,
.service-price-text {
    color: inherit;
}

.service-price-amount {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 800;
    margin-bottom: 0;
}

.service-price-amount strong {
    font-weight: inherit;
}

.categories {
    display: grid;
    gap: 18px;
}

.services {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.services > li {
    min-width: 0;
}

.service {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    display: grid;
    gap: 11px;
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(28, 132, 192, 0.1);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 249, 253, 0.94));
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    cursor: pointer;
}

.service::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(28, 132, 192, 0.08), transparent 40%);
    opacity: 0;
    transition: opacity 0.24s ease;
}

.service:hover,
.services .service.active {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px rgba(17, 76, 109, 0.14);
    border-color: rgba(28, 132, 192, 0.26);
}

.service:hover::after,
.services .service.active::after {
    opacity: 1;
}

.services .icon {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(142, 198, 229, 0.42), rgba(15, 79, 116, 0.08));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.service .icon svg {
    width: 34px;
    height: 34px;
}

.service .icon svg path {
    stroke: var(--accent-strong);
    stroke-width: 1.8;
    fill: none;
}

.service .title {
    margin: 0.7rem 0 0;
}

.service .desc {
    margin: 0;
    color: var(--muted);
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    display: grid;
    gap: 10px;
}

.faq-question,
.faq-answer {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.faq-question {
    font-weight: 700;
    color: var(--ink);
}

.faq-answer {
    color: var(--ink-soft);
    margin-right: 0;
}

.faq-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(28, 132, 192, 0.1);
    color: var(--accent-strong);
    font-size: 0.82rem;
    font-weight: 800;
}

.contact {
    text-align: center;
    font-weight: 600;
    color: var(--ink);
    margin-top: 2rem;
}

.inner .content {
    max-width: 860px;
    margin: 0 auto;
}

.inner .panel-box {
    font-size: 1.02rem;
}

.inner .panel-box p:last-child {
    margin-bottom: 0;
}

.form-wrap {
    max-width: 820px;
    margin: 0 auto;
}

.field-wrap {
    margin-bottom: 1.3rem;
    position: relative;
}

.field-wrap:last-child {
    margin-bottom: 0;
}

.field {
    position: relative;
    box-sizing: border-box;
}

.field-wrap label {
    margin-bottom: 0.62rem;
    display: block;
    padding: 0 3px;
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 700;
}

.field-wrap label span {
    color: var(--accent);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid rgba(28, 132, 192, 0.14);
    border-radius: 18px;
    padding: 14px 18px;
    color: var(--ink);
    background-color: rgba(255, 255, 255, 0.85);
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.field input,
.field select {
    height: 56px;
}

.field textarea {
    min-height: 160px;
    resize: vertical;
}

.field.active input,
.field.active select,
.field.active textarea,
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: rgba(28, 132, 192, 0.46);
    box-shadow: 0 0 0 4px rgba(28, 132, 192, 0.12);
    background-color: #fff;
}

form .done input,
form .done select,
form .done textarea {
    background-color: rgba(46, 106, 79, 0.05);
    border-color: rgba(46, 106, 79, 0.5);
}

form .required input,
form .required select,
form .required textarea {
    background-color: rgba(177, 63, 47, 0.04);
    border-color: rgba(177, 63, 47, 0.48);
}

.field.phone input {
    padding-left: 112px;
}

.ph-wrap {
    position: relative;
}

.area-code {
    position: absolute;
    left: 7px;
    top: 7px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
    height: 42px;
    padding: 0 12px;
    direction: ltr;
    border-radius: 14px;
    background: rgba(219, 238, 248, 0.85);
    border: 1px solid rgba(28, 132, 192, 0.08);
    pointer-events: none;
}

.area-code .flag {
    width: 20px;
}

.area-code span {
    font-size: 0.88rem;
    color: var(--ink);
}

.field svg.arrow {
    width: 11px;
    position: absolute;
    right: 15px;
    top: 23px;
    pointer-events: none;
    fill: #7fa9c0;
}

.btn-wrap {
    display: grid;
    justify-content: center;
}

.btn {
    min-width: min(100%, 340px);
    min-height: 56px;
    padding: 0 28px;
    margin: 28px auto 0;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    color: #fff9f2;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    box-shadow: 0 16px 30px rgba(28, 132, 192, 0.26);
    cursor: pointer;
    font-size: 0.98rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(28, 132, 192, 0.3);
}

.btn:disabled {
    cursor: not-allowed;
    opacity: 0.72;
    box-shadow: none;
    background: linear-gradient(135deg, #7eb8da, #5f9fc6);
}

.co-info,
.sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.86rem;
}

.min-text,
.char-counter,
.area-code .text {
    color: var(--muted);
}

.sec {
    justify-content: center;
    margin: 20px 0 0;
    text-align: center;
}

.sec .icon,
.step .circle {
    flex: 0 0 auto;
}

.sec .icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(28, 132, 192, 0.09);
}

.sec .icon svg {
    width: 18px;
    fill: none;
    stroke: var(--secondary);
    stroke-width: 1.6;
}

.cf-turnstile {
    margin-top: 10px;
}

.error {
    margin-top: 0.55rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--danger);
    font-size: 0.84rem;
    line-height: 1.6;
}

.error svg {
    width: 14px;
    fill: var(--danger);
    flex: 0 0 auto;
}

.shakwa-error {
    justify-content: center;
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(177, 63, 47, 0.07);
}

.success.panel-box,
.step-wrap.success .panel-box {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.success h2,
.shakwa-number {
    color: var(--accent-strong);
}

.shakwa-number {
    font-weight: 800;
}

.row {
    display: grid;
    gap: 20px;
}

.row.col-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.row.col-3 {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
}

.col {
    min-width: 0;
}

.space {
    display: block;
    height: 4px;
}

.footer {
    width: var(--container);
    margin: 0 auto 28px;
    padding: 28px 30px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top left, rgba(142, 198, 229, 0.16), transparent 26%),
        linear-gradient(135deg, rgba(11, 48, 70, 0.98), rgba(16, 77, 113, 0.96));
    color: #fff6ed;
    box-shadow: var(--shadow-lg);
}

.footer a,
.footer p {
    color: inherit;
}

.footer ul {
    display: grid;
    gap: 10px;
}

.footer a {
    text-decoration: none;
}

.footer a:hover {
    color: #c5e7f8;
}

.footer-wa,
.footer-copy {
    margin: 0;
}

.footer-copy {
    opacity: 0.78;
    font-size: 0.92rem;
    margin-top: 14px;
}

.whatsapp-float {
    position: fixed;
    right: 13px;
    bottom: 18px;
    z-index: 50;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #188c68, #13694f);
    color: #f4fbff;
    text-decoration: none;
    box-shadow: 0 18px 30px rgba(28, 132, 192, 0.28);
}

.whatsapp-float svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.whatsapp-float span {
    font-size: 0.92rem;
    font-weight: 700;
}

.loading-wrap {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 1000;
}

.loading-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(237, 246, 251, 0.82);
    backdrop-filter: blur(6px);
}

.center {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
    justify-items: center;
}

.loader {
    width: 54px;
    height: 54px;
    border: 4px solid rgba(28, 132, 192, 0.14);
    border-top-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 0.8s linear infinite;
    z-index: 1;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 980px) {

    .process-steps-list,
    .services,
    .row.col-2,
    .row.col-3 {
        grid-template-columns: 1fr;
    }

    .process-step-item {
        min-height: auto;
    }

    .hero-head h1,
    .page-head h1 {
        max-width: none;
    }
}

@media (max-width: 760px) {
    :root {
        --container: min(100% - 24px, 100%);
    }

    .header {
        grid-template-columns: auto auto;
        justify-content: space-between;
        border-radius: 28px;
        padding: 14px 16px;
    }

    .nav {
        grid-column: 1 / -1;
        justify-self: stretch;
    }

    .nav ul {
        margin-top: 8px;
        padding-top: 8px;
        flex-direction: column;
        align-items: stretch;
        border-top: 1px solid rgba(28, 132, 192, 0.1);
    }

    .nav a {
        justify-content: flex-start;
        padding: 0 14px;
        border-radius: 16px;
    }

    main.container {
        padding-top: 24px;
    }

    .hero-head,
    .page-head,
    .panel-box,
    .fields-wrap,
    .footer {
        padding: 24px;
        border-radius: 24px;
    }

    .panel-box.p-24 {
        padding: 20px;
    }

    .hero-head::after,
    .page-head::after {
        position: static;
        display: block;
        margin-top: 14px;
    }

    .co-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        width: 100%;
        min-width: 0;
    }

    .whatsapp-float {
        bottom: 10px;
        justify-content: center;
    }
}

.service-price-text {
    margin-bottom: 0.8rem;
}

@media (min-width: 990px) {
    .logo img {
        max-height: 45px;
    }

    .logo {
        width: 122px;
        padding-right: 15px;
    }
}