@charset "UTF-8";

:root {
    --bg: #f3f6f5;
    --bg-soft: #ffffff;
    --surface: #ffffff;
    --surface-strong: #ffffff;
    --surface-muted: #d2ebe7;
    --ink: #0c2621;
    --ink-soft: #1e4a40;
    --muted: #52817a;
    --line: rgba(13, 148, 136, 0.16);
    --accent: #0d9488;
    --accent-strong: #0f766e;
    --accent-soft: #5eead4;
    --secondary: #065f52;
    --secondary-soft: #ccfbf1;
    --success: #2e6a4f;
    --danger: #b13f2f;
    --shadow-sm: 0 1px 6px rgba(0, 0, 0, 0.06), 0 2px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 2px 16px rgba(0, 0, 0, 0.08), 0 4px 32px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 4px 32px rgba(0, 0, 0, 0.1), 0 8px 64px rgba(0, 0, 0, 0.06);
    --radius-lg: 14px;
    --radius-md: 9px;
    --radius-sm: 6px;
    --container: min(1120px, calc(100% - 40px));
}

*,
*::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-color: var(--bg);
    background-image:
        linear-gradient(180deg, #e8f5f3 0%, #f3f6f5 40%, #f3f6f5 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: var(--accent-strong);
    text-decoration-color: rgba(13, 148, 136, 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.6rem, 2.6vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(1.25rem, 2vw, 1.9rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

h4 {
    font-size: 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: #6b9b94 !important;
    opacity: 1;
}

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

/* ── HEADER — flat full-width sticky bar ── */
.topbar {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 clamp(16px, 3vw, 40px);
    height: 62px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: sticky;
    top: 0;
    z-index: 60;
    background: #ffffff;
    border-bottom: 2px solid rgba(13, 148, 136, 0.12);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s ease;
}

.topbar.hdr-dn {
    transform: translateY(-100%);
    transition: transform 0.28s ease;
}

.topbar.hdr-up,
.topbar.is-active {
    transform: translateY(0);
}

.site-logo {
    display: inline-flex;
    align-items: center;
    width: 88px;
    flex: 0 0 auto;
}

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

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.main-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: var(--radius-sm);
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.main-nav a:hover {
    background: rgba(13, 148, 136, 0.08);
    color: var(--accent-strong);
}

.hdr-icons {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-plain {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.toggle-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(13, 148, 136, 0.15);
    background: rgba(13, 148, 136, 0.04);
    transition: background-color 0.18s ease;
}

.toggle-btn:hover {
    background: rgba(13, 148, 136, 0.1);
}

.topbar .hdr-icons .toggle-btn svg {
    overflow: visible;
}

.topbar .hdr-icons .toggle-btn svg path {
    stroke: var(--accent-strong);
    stroke-linecap: round;
    transform-box: fill-box;
    transform-origin: center;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.toggle-btn.is-open .ln-top {
    transform: translateY(10px) rotate(45deg);
}

.toggle-btn.is-open .ln-mid {
    opacity: 0;
}

.toggle-btn.is-open .ln-bot {
    transform: translateY(-10px) rotate(-45deg);
}

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

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

/* ── MAIN LAYOUT ── */
main.container {
    padding: 32px 0 80px;
}

main.container.pg-home {
    display: grid;
    gap: 32px;
}

/* ── HERO / PAGE BLOCK ── */
.hero-block,
.page-block {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 5vw, 56px);
    border-radius: var(--radius-lg);
    background: var(--secondary);
    isolation: isolate;
}

.hero-block::before,
.page-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at bottom left, rgba(94, 234, 212, 0.28) 0%, transparent 55%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
    z-index: -1;
}

.hero-block::after,
.page-block::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(94, 234, 212, 0.08);
    transform: translate(60px, -80px);
    z-index: -1;
}

.hero-block h1,
.page-block h1 {
    max-width: 14ch;
    color: #f0fdfa;
}

/* ── CONTENT SECTIONS ── */
.flow-block,
.sec-body {
    display: grid;
    gap: 28px;
}

.sec-body > * {
    min-width: 0;
}

.flow-block.pg-home .sec-body {
    gap: 36px;
}

/* ── CARDS ── */
.data-card,
.form-area {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(13, 148, 136, 0.1);
    border-top: 3px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.data-card.card-sm {
    padding: 22px;
}

.intro-box {
    font-size: 1.04rem;
    border-top-color: var(--accent-soft);
}

.intro-text {
    font-size: clamp(0.98rem, 1.5vw, 1.12rem);
    line-height: 1.8;
    color: var(--ink);
}

/* ── SECTION HEADINGS ── */
.blk-title {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 4px;
}

.blk-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: var(--line);
}

.blk-title::before {
    content: "";
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 48px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    z-index: 1;
}

.blk-title-gap {
    margin-bottom: 8px;
}

/* ── PROCESS STEPS — vertical timeline ── */
.steps-list,
.qa-list,
.svc-grid,
.site-foot ul {
    list-style: none;
}

.work-steps,
.svc-cost,
.qa-block {
    display: grid;
    gap: 20px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    counter-reset: process;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #ffffff;
    border: 1px solid rgba(13, 148, 136, 0.1);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    min-height: auto;
    padding-top: 20px !important;
}

.step-item:hover {
    border-color: rgba(13, 148, 136, 0.3);
    box-shadow: var(--shadow-md);
}

.step-num {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    font-weight: 800;
}

.step-cnt {
    flex: 1;
    min-width: 0;
}

.step-title {
    color: var(--ink);
    margin-bottom: 4px;
}

.step-body {
    margin: 0;
    color: var(--muted);
    font-size: 0.93rem;
}

/* ── PRICE CARD ── */
.cost-card {
    display: grid;
    justify-items: start;
    gap: 8px;
    background: var(--secondary);
    color: #f0fdfa;
    border-top: 3px solid var(--accent-soft);
}

.cost-label,
.cost-amount,
.cost-note {
    color: inherit;
}

.cost-amount {
    font-size: clamp(1.5rem, 3vw, 1.2rem);
    font-weight: 800;
    margin-bottom: 0;
    line-height: 2.5rem;
}

.cost-amount strong {
    font-weight: inherit;
}

/* ── SERVICE CATEGORIES GRID ── */
.svc-cats {
    display: grid;
    gap: 16px;
}

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

.svc-grid > li {
    min-width: 0;
}

.svc-link {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(13, 148, 136, 0.1);
    border-right: 4px solid var(--accent-soft);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.svc-link:hover,
.svc-grid .svc-link.is-active {
    border-right-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateX(-2px);
}

.svc-grid .sec-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 148, 136, 0.08);
    border: 1px solid rgba(13, 148, 136, 0.12);
}

.svc-link .sec-icon svg {
    width: 28px;
    height: 28px;
}

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

.svc-link .title {
    margin: 0 0 4px;
    font-size: 0.96rem;
    color: var(--ink);
}

.svc-link .desc {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.6;
}

/* ── FAQ ── */
.qa-list {
    display: grid;
    gap: 10px;
}

.qa-item {
    background: #ffffff;
    border: 1px solid rgba(13, 148, 136, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.qa-q {
    font-weight: 700;
    color: var(--ink);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(13, 148, 136, 0.08);
    background: rgba(13, 148, 136, 0.03);
}

.qa-a {
    color: var(--ink-soft);
    padding: 14px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.qa-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 26px;
    height: 26px;
    border-radius: var(--radius-sm);
    background: var(--accent);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 800;
}

.qa-q .qa-tag {
    background: rgba(13, 148, 136, 0.12);
    color: var(--accent-strong);
}

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

/* ── INNER PAGES ── */
.pg-inner .sec-body {
    max-width: 860px;
    margin: 0 auto;
}

.pg-inner .data-card {
    font-size: 1.02rem;
}

.pg-inner .data-card p:last-child {
    margin-bottom: 0;
}

/* ── FORMS ── */
.form-holder {
    max-width: 820px;
    margin: 0 auto;
}

.fld-wrap {
    margin-bottom: 1.2rem;
    position: relative;
}

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

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

.fld-wrap label {
    margin-bottom: 0.56rem;
    display: block;
    padding: 0 2px;
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 700;
}

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

.fld input,
.fld select,
.fld textarea {
    width: 100%;
    border: 1.5px solid rgba(13, 148, 136, 0.16);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    color: var(--ink);
    background-color: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fld input,
.fld select {
    height: 52px;
}

.fld textarea {
    min-height: 150px;
    resize: vertical;
}

.fld.is-active input,
.fld.is-active select,
.fld.is-active textarea,
.fld input:focus,
.fld select:focus,
.fld textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.14);
}

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

form .fld-req input,
form .fld-req select,
form .fld-req textarea {
    background-color: rgba(177, 63, 47, 0.03);
    border-color: rgba(177, 63, 47, 0.4);
}

.fld.phone input {
    padding-left: 110px;
}

.tel-box {
    position: relative;
}

.cntry-code {
    position: absolute;
    left: 6px;
    top: 6px;
    display: flex;
    align-items: center;
    gap: 7px;
    z-index: 2;
    height: 40px;
    padding: 0 10px;
    direction: ltr;
    border-radius: var(--radius-sm);
    background: rgba(13, 148, 136, 0.06);
    border: 1px solid rgba(13, 148, 136, 0.1);
    pointer-events: none;
}

.cntry-code .ctry-flag {
    width: 18px;
}

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

.fld svg.arrow {
    width: 11px;
    position: absolute;
    right: 14px;
    top: 22px;
    pointer-events: none;
    fill: var(--muted);
}

/* ── BUTTONS ── */
.act-wrap {
    display: grid;
    justify-content: center;
}

.act-btn {
    min-width: min(100%, 320px);
    min-height: 52px;
    padding: 0 32px;
    margin: 24px auto 0;
    border: 0;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    color: #ffffff;
    background: var(--accent);
    box-shadow: 0 2px 12px rgba(13, 148, 136, 0.25);
    cursor: pointer;
    font-size: 0.96rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.act-btn:hover {
    background: var(--accent-strong);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.3);
}

.act-btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
    transform: none;
    background: #a0d4cf;
}

/* ── FORM HELPERS ── */
.fld-info,
.priv-hint {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.84rem;
}

.fld-min,
.fld-chars,
.cntry-code .text {
    color: var(--muted);
}

.priv-hint {
    justify-content: center;
    margin: 16px 0 0;
    text-align: center;
}

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

.priv-hint .sec-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-sm);
    background: rgba(13, 148, 136, 0.08);
}

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

/* ── ERROR / SUCCESS ── */
.fld-err {
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--danger);
    font-size: 0.82rem;
    line-height: 1.5;
}

.fld-err svg {
    width: 13px;
    fill: var(--danger);
    flex: 0 0 auto;
}

.req-err {
    justify-content: center;
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    background: rgba(177, 63, 47, 0.06);
    border: 1px solid rgba(177, 63, 47, 0.15);
}

.req-ok.data-card,
.flow-block.req-ok .data-card {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

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

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

/* ── GRID UTILITIES ── */
.g-row {
    display: grid;
    gap: 18px;
}

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

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

.g-col {
    min-width: 0;
}

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

/* ── FOOTER ── */
.site-foot {
    width: var(--container);
    margin: 0 auto 32px;
    padding: 32px 36px;
    border-radius: var(--radius-lg);
    background: var(--secondary);
    color: #e2faf6;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--accent);
}

.site-foot a,
.site-foot p {
    color: inherit;
}

.site-foot ul {
    display: grid;
    gap: 10px;
}

.site-foot a {
    text-decoration: none;
    font-size: 0.93rem;
    opacity: 0.9;
    transition: opacity 0.15s ease;
}

.site-foot a:hover {
    opacity: 1;
    color: var(--accent-soft);
}

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

.foot-copy {
    opacity: 0.65;
    font-size: 0.88rem;
    margin-top: 12px;
}

/* ── WHATSAPP FLOAT — icon only circle ── */
.float-wa {
    position: fixed;
    right: 18px;
    bottom: 20px;
    z-index: 50;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1aab6d;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(26, 171, 109, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-wa:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 28px rgba(26, 171, 109, 0.5);
}

.float-wa svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.float-wa span {
    display: none;
}

/* ── LOADING OVERLAY ── */
.busy-layer {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 1000;
}

.busy-layer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(243, 246, 245, 0.85);
    backdrop-filter: blur(4px);
}

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

.spin-ring {
    width: 46px;
    height: 46px;
    border: 3px solid rgba(13, 148, 136, 0.15);
    border-top-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: spinning 0.75s linear infinite;
}

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

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

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
    .steps-list {
        grid-template-columns: 1fr;
    }

    .svc-grid,
    .g-row.g-2col,
    .g-row.g-3col {
        grid-template-columns: 1fr;
    }

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

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

    .topbar {
        padding: 0 16px;
        height: 58px;
    }

    .main-nav {
        position: absolute;
        top: 58px;
        right: 0;
        left: 0;
        background: #ffffff;
        border-bottom: 1px solid rgba(13, 148, 136, 0.1);
        box-shadow: var(--shadow-md);
        flex: none;
        justify-content: flex-start;
    }

    .main-nav ul {
        padding: 10px 16px;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .main-nav a {
        justify-content: flex-start;
        padding: 0 12px;
    }

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

    .hero-block,
    .page-block,
    .data-card,
    .form-area,
    .site-foot {
        padding: 22px;
        border-radius: var(--radius-lg);
    }

    .data-card.card-sm {
        padding: 18px;
    }

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

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

    .svc-link {
        flex-direction: column;
    }
}

.cost-note {
    margin-bottom: 0.6rem;
}

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

    .site-logo {
        width: 110px;
    }
}

.notice-box {
    background: rgba(13, 148, 136, 0.06);
    border: 1px solid rgba(13, 148, 136, 0.14);
    border-right: 4px solid var(--accent);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    font-size: 0.93rem;
    color: var(--ink-soft);
}