@charset "UTF-8";

:root {
    --bg: #F8F6F0;
    --bg-soft: #ffffff;
    --surface: #ffffff;
    --surface-strong: #ffffff;
    --surface-muted: #ECE7D6;
    --ink: #1C1C1C;
    --ink-soft: #3A3530;
    --muted: #7A6F60;
    --line: rgba(196, 149, 42, 0.18);
    --accent: #C4952A;
    --accent-strong: #A87C20;
    --accent-soft: #E8CF8A;
    --secondary: #1C1C1C;
    --secondary-soft: #F0EBD8;
    --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, #ECE7D6 0%, #F8F6F0 40%, #F8F6F0 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: var(--accent-strong);
    text-decoration-color: rgba(196, 149, 42, 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: #A09080 !important;
    opacity: 1;
}

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

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

.m4rxk.r5xpk {
    transform: translateY(-100%);
    transition: transform 0.28s ease;
}

.m4rxk.c2wtr,
.m4rxk.b8wkx {
    transform: translateY(0);
}

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

.t7plm img {
    max-height: 68px;
    width: auto;
}

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

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

.h5jtk 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;
}

.h5jtk a:hover {
    background: rgba(196, 149, 42, 0.08);
    color: var(--accent-strong);
}

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

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

.n6wpb {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(196, 149, 42, 0.16);
    background: rgba(196, 149, 42, 0.04);
    transition: background-color 0.18s ease;
}

.n6wpb:hover {
    background: rgba(196, 149, 42, 0.1);
}

.m4rxk .q8rmz .n6wpb svg {
    overflow: visible;
}

.m4rxk .q8rmz .n6wpb 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;
}

.n6wpb.f7xmn .b2qkr {
    transform: translateY(10px) rotate(45deg);
}

.n6wpb.f7xmn .z6tmw {
    opacity: 0;
}

.n6wpb.f7xmn .u4fxs {
    transform: translateY(-10px) rotate(-45deg);
}

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

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

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

main.g9pln.p3nwq {
    display: grid;
    gap: 32px;
}

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

.d5wkr::before,
.j3mnv::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at bottom left, rgba(232, 207, 138, 0.28) 0%, transparent 55%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
    z-index: -1;
}

.d5wkr::after,
.j3mnv::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(232, 207, 138, 0.08);
    transform: translate(60px, -80px);
    z-index: -1;
}

.d5wkr h1,
.j3mnv h1 {
    max-width: 14ch;
    color: #FAFAF6;
}

/* ── CONTENT SECTIONS ── */
.k7xph,
.e2qts {
    display: grid;
    gap: 28px;
}

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

.k7xph.p3nwq .e2qts {
    gap: 36px;
}

/* ── CARDS ── */
.w5prk,
.e7qpz {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(196, 149, 42, 0.12);
    border-top: 3px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.w5prk.s4jnx {
    padding: 22px;
}

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

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

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

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

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

.q4wrb {
    margin-bottom: 8px;
}

/* ── PROCESS STEPS — vertical timeline ── */
.t8jlv,
.b9ftk,
.x7mqp,
.v4rnp ul {
    list-style: none;
}

.b3qfv,
.c9hkz,
.r7txp {
    display: grid;
    gap: 20px;
}

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

.d6pnw {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #ffffff;
    border: 1px solid rgba(196, 149, 42, 0.12);
    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;
}

.d6pnw:hover {
    border-color: rgba(196, 149, 42, 0.3);
    box-shadow: var(--shadow-md);
}

.m1qkr {
    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;
}

.h3znb {
    flex: 1;
    min-width: 0;
}

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

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

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

.j5rtm,
.p1qfx,
.v8knh {
    color: inherit;
}

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

.p1qfx strong {
    font-weight: inherit;
}

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

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

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

.c4rls {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(196, 149, 42, 0.12);
    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;
}

.c4rls:hover,
.x7mqp .c4rls.b8wkx {
    border-right-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateX(-2px);
}

.x7mqp .k6wbt {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 149, 42, 0.08);
    border: 1px solid rgba(196, 149, 42, 0.12);
}

.c4rls .k6wbt svg {
    width: 28px;
    height: 28px;
}

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

.c4rls .j1xmv {
    margin: 0 0 4px;
    font-size: 0.96rem;
    color: var(--ink);
}

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

/* ── FAQ ── */
.b9ftk {
    display: grid;
    gap: 10px;
}

.l4wrx {
    background: #ffffff;
    border: 1px solid rgba(196, 149, 42, 0.12);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.r6mkn {
    font-weight: 700;
    color: var(--ink);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(196, 149, 42, 0.08);
    background: rgba(196, 149, 42, 0.03);
}

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

.n5qkr {
    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;
}

.r6mkn .n5qkr {
    background: rgba(196, 149, 42, 0.12);
    color: var(--accent-strong);
}

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

/* ── INNER PAGES ── */
.g2pnk .e2qts {
    max-width: 860px;
    margin: 0 auto;
}

.g2pnk .w5prk {
    font-size: 1.02rem;
}

.g2pnk .w5prk p:last-child {
    margin-bottom: 0;
}

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

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

.s7fwp:last-child {
    margin-bottom: 0;
}

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

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

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

.d1nmx input,
.d1nmx select,
.d1nmx textarea {
    width: 100%;
    border: 1.5px solid rgba(196, 149, 42, 0.18);
    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;
}

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

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

.d1nmx.b8wkx input,
.d1nmx.b8wkx select,
.d1nmx.b8wkx textarea,
.d1nmx input:focus,
.d1nmx select:focus,
.d1nmx textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(196, 149, 42, 0.14);
}

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

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

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

.v6xqb {
    position: relative;
}

.p8nkr {
    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(196, 149, 42, 0.06);
    border: 1px solid rgba(196, 149, 42, 0.1);
    pointer-events: none;
}

.p8nkr .m2bwt {
    width: 18px;
}

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

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

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

.f9mrk {
    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(196, 149, 42, 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;
}

.f9mrk:hover {
    background: var(--accent-strong);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(196, 149, 42, 0.3);
}

.f9mrk:disabled {
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
    transform: none;
    background: #D4A84C;
}

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

.e5tmx,
.h8qfv,
.p8nkr .y4qnf {
    color: var(--muted);
}

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

.x4tqn .k6wbt,
.step .circle {
    flex: 0 0 auto;
}

.x4tqn .k6wbt {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-sm);
    background: rgba(196, 149, 42, 0.08);
}

.x4tqn .k6wbt svg {
    width: 16px;
    fill: none;
    stroke: var(--secondary);
    stroke-width: 1.6;
}

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

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

.r3wfp {
    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);
}

.l2mkx.w5prk,
.k7xph.l2mkx .w5prk {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.l2mkx h2,
.q6bnr {
    color: var(--accent-strong);
}

.q6bnr {
    font-weight: 800;
}

/* ── GRID UTILITIES ── */
.n8txk {
    display: grid;
    gap: 18px;
}

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

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

.c5xqt {
    min-width: 0;
}

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

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

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

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

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

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

.h1qkw,
.t6xmn {
    margin: 0;
}

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

/* ── WHATSAPP FLOAT — icon only circle ── */
.k2bfr {
    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: #C4952A;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(196, 149, 42, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.k2bfr:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 28px rgba(196, 149, 42, 0.5);
}

.k2bfr svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.k2bfr span {
    display: none;
}

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

.e8pnk::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(248, 246, 240, 0.85);
    backdrop-filter: blur(4px);
}

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

.m9rtk {
    width: 46px;
    height: 46px;
    border: 3px solid rgba(196, 149, 42, 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) {
    .t8jlv {
        grid-template-columns: 1fr;
    }

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

    .d5wkr h1,
    .j3mnv h1 {
        max-width: none;
    }
}

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

    .m4rxk {
        padding: 0 16px;
        height: 88px;
    }

    .h5jtk {
        position: absolute;
        top: 58px;
        right: 0;
        left: 0;
        background: #ffffff;
        border-bottom: 1px solid rgba(196, 149, 42, 0.1);
        box-shadow: var(--shadow-md);
        flex: none;
        justify-content: flex-start;
    }

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

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

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

    .d5wkr,
    .j3mnv,
    .w5prk,
    .e7qpz,
    .v4rnp {
        padding: 22px;
        border-radius: var(--radius-lg);
    }

    .w5prk.s4jnx {
        padding: 18px;
    }

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

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

    .c4rls {
        flex-direction: column;
    }
}

.v8knh {
    margin-bottom: 0.6rem;
}

@media (min-width: 990px) {}

.n3qfk {
    background: rgba(196, 149, 42, 0.06);
    border: 1px solid rgba(196, 149, 42, 0.14);
    border-right: 4px solid var(--accent);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    font-size: 0.93rem;
    color: var(--ink-soft);
}
