/* =============================================================
   Secret Circle — Stylesheet
   Palette: gold #c9962b, deep gold #a87819, ivory #fbf6ec, ink #1f1a14
   ============================================================= */

:root {
    --gold: #c9962b;
    --gold-2: #e0b558;
    --gold-deep: #8a6010;
    --ivory: #fbf6ec;
    --ivory-2: #f4ebd6;
    --ink: #1f1a14;
    --muted: #6b5e48;
    --line: #e7dcc4;
    --shadow: 0 12px 40px rgba(60, 40, 0, 0.10);
    --radius: 14px;
    --radius-sm: 8px;
    --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Cairo', system-ui, -apple-system, Segoe UI, Tahoma, sans-serif;
    color: var(--ink);
    background: var(--ivory);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* LTR languages use Inter as primary */
body.dir-ltr {
    font-family: 'Inter', 'Cairo', system-ui, -apple-system, Segoe UI, Tahoma, sans-serif;
}

img, video { max-width: 100%; display: block; }

a { color: var(--gold-deep); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }

section { scroll-margin-top: 90px; }

h1, h2, h3, h4 { font-family: 'Cairo', sans-serif; font-weight: 700; line-height: 1.3; margin: 0 0 .8rem; }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--ink); }
h3 { font-size: 1.2rem; }

.section { padding: 5rem 0; }
.section-alt { background: linear-gradient(180deg, var(--ivory-2) 0%, var(--ivory) 100%); }
.section-dark { background: linear-gradient(135deg, #2a2118 0%, #1f1a14 100%); color: #f4ebd6; }
.section-dark h2,
.section-dark p { color: #f4ebd6; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head p { color: var(--muted); }
.section-eyebrow {
    display: inline-block;
    font-size: .82rem;
    letter-spacing: .15em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: .6rem;
    font-weight: 700;
}
.section-eyebrow.light { color: var(--gold-2); }

/* =========== Topbar =========== */
.topbar {
    background: var(--ink);
    color: #f4ebd6;
    font-size: .85rem;
    padding: .55rem 0;
}
.topbar a { color: #f4ebd6; }
.topbar a:hover { color: var(--gold-2); }
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:right { display: flex; align-items: center; gap: .8rem; }
.topbar-wa {
    background: var(--gold);
    color: #fff;
    padding: .35rem .9rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-weight: 600;
}
.topbar-wa:hover { background: var(--gold-deep); color: #fff; }

/* ===== Language switcher ===== */
.lang-switch { position: relative; }
.lang-current {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255,255,255,.06);
    color: #f4ebd6;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    padding: .3rem .8rem;
    font: inherit;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, border-color .2s;
}
.lang-current:hover { background: rgba(255,255,255,.12); border-color: var(--gold-2); }
.lang-flag { font-size: 1rem; line-height: 1; }
.lang-menu {
    position: absolute;
    top: calc(100% + .5rem);
    inset-inline-end: 0;
    background: #fff;
    color: var(--ink);
    list-style: none;
    margin: 0;
    padding: .4rem;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,.25);
    min-width: 180px;
    z-index: 70;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity .18s, transform .18s;
    border: 1px solid var(--line);
}
.lang-switch.open .lang-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.lang-menu li { margin: 0; }
.lang-menu a {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .55rem .8rem;
    color: var(--ink);
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 600;
}
.lang-menu a:hover { background: var(--ivory-2); color: var(--gold-deep); }
.lang-menu a.active { background: var(--gold); color: #fff; }
.lang-menu a.activeinline-flex;
    align-items: center;
    gap: .4rem;
    font-weight: 600;
}
.topbar-cta a:hover { background: var(--gold-deep); color: #fff; }

/* =========== Header =========== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 246, 236, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .75rem 1.25rem;
    gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .7rem; }
.brand-logo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; box-shadow: 0 4px 12px rgba(201, 150, 43, 0.25); }
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-weight: 800; color: var(--gold-deep); letter-spacing: .12em; font-size: 1rem; font-family: 'Cormorant Garamond', serif; }
.brand-tag { font-size: .72rem; color: var(--muted); letter-spacing: .08em; }

.main-nav { display: flex; gap: 1.5rem; align-items: center; }
.main-nav a { color: var(--ink); font-weight: 600; font-size: .95rem; }
.main-nav a:hover { color: var(--gold); }
.main-nav .nav-cta {
    background: var(--gold);
    color: #fff;
    padding: .55rem 1.2rem;
    border-radius: 999px;
}
.main-nav .nav-cta:hover { background: var(--gold-deep); color: #fff; }

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    width: 42px;
    height: 42px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .25s;
}

/* =========== Hero =========== */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 78vh;
    display: flex;
    align-items: center;
    color: #fff;
    isolation: isolate;
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: saturate(0.9);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(31, 26, 20, 0.85) 0%, rgba(31, 26, 20, 0.55) 60%, rgba(201, 150, 43, 0.35) 100%);
    z-index: -1;
}
.hero-content {
    padding: 6rem 1.25rem;
    max-width: 800px;
}
.hero-eyebrow {
    display: inline-block;
    color: var(--gold-2);
    letter-spacing: .15em;
    font-size: .9rem;
    margin-bottom: 1rem;
    border: 1px solid var(--gold-2);
    padding: .35rem 1rem;
    border-radius: 999px;
}
.hero h1 {
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.hero-sub {
    font-size: 1.1rem;
    color: #f4ebd6;
    max-width: 640px;
    margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* =========== Buttons =========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .9rem 1.8rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .2s, background .2s, color .2s, box-shadow .2s;
    font-family: inherit;
    text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(201, 150, 43, 0.35);
}
.btn-gold:hover { color: #fff; box-shadow: 0 12px 32px rgba(201, 150, 43, 0.5); }
.btn-gold-soft {
    background: var(--ivory-2);
    color: var(--gold-deep);
    border-color: var(--gold);
}
.btn-gold-soft:hover { background: var(--gold); color: #fff; }
.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.6);
}
.btn-outline:hover { background: #fff; color: var(--ink); border-color: #fff; }
.section-alt .btn-outline,
.section .btn-outline { color: var(--ink); border-color: var(--ink); }
.section-alt .btn-outline:hover,
.section .btn-outline:hover { background: var(--ink); color: #fff; }
.btn-block { width: 100%; }

/* =========== About =========== */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 3rem;
    align-items: center;
}
.about-points {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}
.about-points li {
    padding: .5rem 0 .5rem 0;
    padding-inline-start: 1.8rem;
    position: relative;
    color: var(--ink);
}
.about-points li::before {
    content: '✦';
    position: absolute;
    inset-inline-start: 0;
    color: var(--gold);
    font-weight: 700;
}
.about-media img {
    border-radius: 50%;
    aspect-ratio: 1;
    object-fit: contain;
    background: #fff;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 4px solid var(--gold-2);
    max-width: 380px;
    margin: 0 auto;
}

/* =========== Services =========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.service-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--gold-2);
}
.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-icon svg { width: 32px; height: 32px; }
.service-card p { color: var(--muted); margin: 0; }

/* Service card as link */
a.service-card-link, a.service-card-link:hover {
    color: var(--ink);
    text-decoration: none;
    display: block;
}
.service-more {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--gold-deep);
    font-size: .9rem;
    transition: gap .2s, transform .2s;
}
.service-card-link:hover .service-more { color: var(--gold); transform: translateX(4px); }
body.dir-rtl .service-card-link:hover .service-more { transform: translateX(-4px); }

/* =========== Galleries =========== */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}
.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-sm);
    aspect-ratio: 4 / 3;
    position: relative;
    background: var(--ivory-2);
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery.products .gallery-item { aspect-ratio: 3 / 2; background: #fff; }
.gallery.products .gallery-item img { object-fit: contain; padding: .5rem; }

.video-wrap {
    max-width: 880px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.video-wrap video { width: 100%; display: block; background: #000; }

.disclaimer {
    text-align: center;
    color: var(--muted);
    font-size: .9rem;
    margin-top: 1.5rem;
}

/* =========== Doctor =========== */
.doctor-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 3rem;
    align-items: center;
}
.doctor-photo img {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    margin: 0 auto;
}
.doctor-subname {
    color: var(--gold);
    font-style: italic;
    margin-top: -.3rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}
.doctor-contact {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 1.5rem;
}

/* =========== Booking =========== */
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}
.booking-info p { color: #d8c89f; }
.booking-points {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}
.booking-points li {
    padding: .6rem 0;
    border-bottom: 1px dashed rgba(255,255,255,.12);
    color: #f4ebd6;
}
.booking-points strong { color: var(--gold-2); margin-inline-end: .5rem; }
.booking-points a { color: var(--gold-2); }
.booking-points a:hover { color: #fff; }

.booking-form {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 2rem;
    backdrop-filter: blur(8px);
}
.form-row { margin-bottom: 1.1rem; }
.form-row.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-row label {
    display: block;
    font-size: .9rem;
    margin-bottom: .4rem;
    color: var(--gold-2);
    font-weight: 600;
}
.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: .8rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.06);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color .2s, background .2s;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: rgba(255,255,255,.4); }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,.1);
}
.form-row select option { color: var(--ink); }
.form-row textarea { resize: vertical; }
.form-note {
    text-align: center;
    color: rgba(255,255,255,.5);
    font-size: .82rem;
    margin: 1rem 0 0;
}
.alert {
    padding: 1rem 1.2rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.2rem;
    font-weight: 600;
}
.alert-success { background: rgba(40, 140, 70, .15); color: #b9f2c8; border: 1px solid rgba(40, 140, 70, .4); }
.alert-error { background: rgba(180, 50, 50, .15); color: #ffc9c9; border: 1px solid rgba(180, 50, 50, .4); }

/* =========== Footer =========== */
.site-footer {
    background: #1a140e;
    color: #d8c89f;
    padding: 3.5rem 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
}
.footer-brand { display: flex; gap: 1rem; align-items: flex-start; }
.footer-brand img { width: 64px; height: 64px; border-radius: 50%; }
.footer-brand p { margin: 0; line-height: 1.8; }
.footer-col h4 { color: var(--gold-2); margin-bottom: 1rem; font-size: 1rem; }
.footer-col a { display: block; padding: .25rem 0; color: #d8c89f; }
.footer-col a:hover { color: var(--gold-2); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 1.2rem 0;
    text-align: center;
    font-size: .85rem;
    color: #8e7d5b;
}

/* =========== Floating WhatsApp =========== */
.float-wa {
    position: fixed;
    bottom: 22px;
    inset-inline-start: 22px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    z-index: 60;
    transition: transform .2s;
}
.float-wa:hover { color: #fff; transform: scale(1.08); }

/* =========== Responsive =========== */
@media (max-width: 920px) {
    .about-grid,
    .doctor-grid,
    .booking-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .doctor-photo img { max-width: 320px; }
}

@media (max-width: 720px) {
    .nav-toggle { display: flex; }
    .main-nav {
        position: absolute;
        top: 100%;
        inset-inline-end: 1rem;
        background: #fff;
        flex-direction: column;
        padding: 1rem 1.2rem;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        border: 1px solid var(--line);
        min-width: 200px;
        gap: .25rem;
        display: none;
    }
    .main-nav.open { display: flex; }
    .main-nav a { padding: .6rem 0; width: 100%; }
    .main-nav .nav-cta { text-align: center; margin-top: .4rem; }

    .topbar-inner { justify-content: center; text-align: center; }
    .topbar-contact { justify-content: center; }

    .hero-content { padding: 4rem 1.25rem; }
    .hero { min-height: 70vh; }

    .form-row.two-cols { grid-template-columns: 1fr; }

    .section { padding: 3.5rem 0; }

    .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-brand { grid-column: auto; }
}

@media (max-width: 480px) {
    .gallery { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
    .brand-text { display: none; }
    .topbar { font-size: .78rem; }
    .topbar-contact { gap: .8rem; }
}

/* ===========================================================
   Service detail page (service.php)
   =========================================================== */
.section-head-sm { margin-bottom: 2rem; }
.section-head-sm h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

/* Buttons (used on service page CTAs) */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 1.6rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: .95rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
    color: #fff;
    box-shadow: 0 8px 22px rgba(201,150,43,.35);
}
.btn-primary:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 12px 28px rgba(201,150,43,.45); }
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: rgba(31,26,20,.18);
}
.btn-ghost:hover { background: var(--ivory-2); color: var(--gold-deep); border-color: var(--gold-2); }

/* ----- Service hero ----- */
.svc-hero {
    background:
        radial-gradient(1200px 500px at 80% 0%, rgba(201,150,43,.18), transparent 60%),
        linear-gradient(180deg, #fff 0%, var(--ivory) 100%);
    padding: 7rem 0 4rem;
    border-bottom: 1px solid var(--line);
}
.svc-hero-inner { position: relative; }
.svc-back {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--gold-deep);
    font-weight: 600;
    font-size: .9rem;
}
.svc-back:hover { color: var(--gold); }
.svc-hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: center;
}
.svc-hero-text h1 {
    font-family: 'Cormorant Garamond', 'Cairo', serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.15;
    margin: .8rem 0 1rem;
    color: var(--ink);
}
.svc-lead { color: var(--muted); font-size: 1.05rem; max-width: 560px; }
.svc-hero-cta { margin-top: 1.5rem; display: flex; gap: .8rem; flex-wrap: wrap; }

.svc-hero-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 30px 60px -30px rgba(31,26,20,.25);
    position: relative;
    overflow: hidden;
}
.svc-hero-card::before {
    content: "";
    position: absolute;
    inset: -40% -40% auto auto;
    width: 220px; height: 220px;
    background: radial-gradient(closest-side, rgba(201,150,43,.25), transparent);
    pointer-events: none;
}
.svc-hero-icon {
    width: 80px; height: 80px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 12px 30px rgba(201,150,43,.45);
}
.svc-hero-icon svg { width: 40px; height: 40px; }
.svc-hero-meta { display: grid; gap: .9rem; }
.svc-hero-meta > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .7rem 1rem;
    background: var(--ivory);
    border-radius: 12px;
    border: 1px solid var(--line);
}
.svc-hero-meta span { color: var(--muted); font-size: .85rem; font-weight: 600; }
.svc-hero-meta strong { color: var(--ink); font-size: .95rem; }

/* ----- KPI dashboard ----- */
.svc-dashboard { padding-top: 4rem; padding-bottom: 4rem; }
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-bottom: 3rem;
}
.kpi-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.6rem 1.2rem;
    text-align: center;
    transition: transform .25s, box-shadow .25s;
}
.kpi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.kpi-ring {
    --p: 75;
    width: 110px; height: 110px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background:
        conic-gradient(var(--gold) calc(var(--p) * 1%), var(--ivory-2) 0);
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.kpi-ring::after {
    content: "";
    position: absolute; inset: 8px;
    background: #fff;
    border-radius: 50%;
}
.kpi-ring-inner {
    position: relative;
    z-index: 2;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: var(--gold-deep);
    font-size: 1.5rem;
}
.kpi-label { font-weight: 700; color: var(--ink); font-size: 1rem; }
.kpi-hint { color: var(--muted); font-size: .82rem; margin-top: .3rem; }

/* Bars chart */
.svc-bars {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: 0 12px 40px -20px rgba(31,26,20,.18);
}
.svc-bars h3 {
    margin: 0 0 1.5rem;
    font-size: 1.1rem;
    color: var(--ink);
}
.bars {
    display: flex;
    align-items: flex-end;
    gap: .6rem;
    height: 180px;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--line);
    position: relative;
}
.bar {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}
.bar-fill {
    width: 100%;
    max-width: 40px;
    background: linear-gradient(180deg, var(--gold-2), var(--gold-deep));
    border-radius: 8px 8px 2px 2px;
    transition: height 1.2s cubic-bezier(.2,.7,.2,1);
}
.bar span {
    position: absolute;
    bottom: -1.4rem;
    color: var(--muted);
    font-size: .75rem;
    font-weight: 600;
}
.bars-legend {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1.8rem;
    color: var(--muted);
    font-size: .85rem;
}
.bars-legend .dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--gold-2), var(--gold-deep));
    display: inline-block;
}

/* ----- Long description ----- */
.svc-long-text {
    max-width: 820px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--ink);
    line-height: 1.9;
}

/* ----- Features ----- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
}
.feature-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.6rem;
    position: relative;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--gold-2);
}
.feature-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: .6rem;
    opacity: .8;
}
.feature-card h3 { margin: 0 0 .5rem; font-size: 1.1rem; color: var(--ink); }
.feature-card p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ----- Timeline ----- */
.timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 760px;
    margin-inline: auto;
    position: relative;
}
.timeline::before {
    content: "";
    position: absolute;
    inset-inline-start: 22px;
    top: 12px; bottom: 12px;
    width: 2px;
    background: linear-gradient(180deg, var(--gold) 0%, var(--ivory-2) 100%);
}
.timeline-item {
    position: relative;
    padding-inline-start: 60px;
    margin-bottom: 1.6rem;
}
.timeline-dot {
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    box-shadow: 0 8px 18px rgba(201,150,43,.4);
}
.timeline-body {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem 1.2rem;
}
.timeline-body h4 { margin: 0 0 .3rem; color: var(--ink); font-size: 1.05rem; }
.timeline-body p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ----- FAQ ----- */
.svc-faq-wrap { max-width: 820px; }
.faq-list { display: grid; gap: .8rem; }
.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem 1.4rem;
    transition: border-color .25s, box-shadow .25s;
}
.faq-item[open] { border-color: var(--gold-2); box-shadow: var(--shadow); }
.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--ink);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    font-size: 1.4rem;
    color: var(--gold);
    transition: transform .25s;
    line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: .8rem 0 0; color: var(--muted); }

/* ----- Service CTA ----- */
.svc-cta {
    background: linear-gradient(135deg, #1f1a14 0%, #2a2118 100%);
    color: #fff;
}
.svc-cta-inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.svc-cta h2 {
    color: #fff;
    font-family: 'Cormorant Garamond', 'Cairo', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}
.svc-cta p { color: rgba(255,255,255,.78); margin-bottom: 1.5rem; }
.svc-cta .svc-hero-cta { justify-content: center; }
.svc-cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,.25); }
.svc-cta .btn-ghost:hover { background: rgba(255,255,255,.08); color: var(--gold-2); border-color: var(--gold-2); }

/* Responsive */
@media (max-width: 820px) {
    .svc-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
    .svc-hero { padding-top: 5rem; }
    .timeline::before { inset-inline-start: 16px; }
    .timeline-item { padding-inline-start: 50px; }
    .timeline-dot { width: 36px; height: 36px; font-size: 1.05rem; }
}
@media (max-width: 480px) {
    .bars { gap: .3rem; height: 140px; }
    .bar-fill { max-width: 28px; }
    .bar span { font-size: .65rem; }
    .kpi-ring { width: 92px; height: 92px; }
    .kpi-ring-inner { font-size: 1.2rem; }
}
