      :root {
        --gold: #987B43;
        --gold2: #c4a96e;
        --gold3: #6b5530;
        --black: #000000;
        --dark: #111;
        --dark2: #181818;
        --dark3: #1e1e1e;
        --text: #e8e4dd;
        --muted: #888;
        --font: 'Cairo', Sans-serif;
      }

      *,
      *::before,
      *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
        overflow-x: hidden;
      }

      body {
        font-family: var(--font);
        background: var(--black);
        color: var(--text);
        overflow-x: hidden;
        max-width: 100vw;
        direction: rtl;
      }

      ::placeholder {
        color: white !important;
      }


      a {
        text-decoration: none;
        color: inherit;
      }

      img {
        max-width: 100%;
        display: block;
      }

      ul {
        list-style: none;
      }

      ::-webkit-scrollbar {
        width: 4px;
      }

      ::-webkit-scrollbar-track {
        background: var(--dark);
      }

      ::-webkit-scrollbar-thumb {
        background: var(--gold);
        border-radius: 2px;
      }

      /* PRELOADER */
      #preloader {
        position: fixed;
        inset: 0;
        background: var(--black);
        z-index: 99999;
        font-size: medium;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 20px;
        transition:
          opacity 0.7s ease,
          visibility 0.7s ease;
      }

      #preloader.hide {
        opacity: 0;
        visibility: hidden;
      }

      .pre-logo {
        font-size: 1rem;
        color: var(--gold);
        letter-spacing: 6px;

      }

      .pre-bar {
        width: 180px;
        height: 2px;
        background: #222;
        overflow: hidden;
        border-radius: 2px;
      }

      .pre-bar span {
        display: block;
        height: 100%;
        background: linear-gradient(90deg, var(--gold3), var(--gold2));
        animation: pload 1.8s ease forwards;
      }

      @keyframes pload {
        from {
          width: 0;
        }

        to {
          width: 100%;
        }
      }

      /* CURSOR */
      .cur {
        position: fixed;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--gold);
        pointer-events: none;
        z-index: 99998;
        transform: translate(-50%, -50%);
        mix-blend-mode: difference;
      }

      .cur-ring {
        position: fixed;
        width: 38px;
        height: 38px;
        border: 1px solid rgba(152, 123, 67, 0.5);
        border-radius: 50%;
        pointer-events: none;
        z-index: 99997;
        transform: translate(-50%, -50%);
      }

      @media (hover: none) {

        .cur,
        .cur-ring {
          display: none;
        }
      }

      /* HEADER */
      header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 3%;
        height: 70px;
        will-change: background;
        transition:
          background 0.4s,
          box-shadow 0.4s;
      }

      header.scrolled {
        background: rgba(13, 13, 13, 0.97);
        backdrop-filter: blur(12px);
        box-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
      }

      .hdr-logo {
        display: flex;
        align-items: center;
        border: 2px solid var(--gold);
        padding: 5px 10px;
        gap: 4px;
      }

      .hdr-logo-text {
        height: 100%;
        width: 100%;
      }

      .hdr-logo-text img {
        height: 50px;
      }

      /* LOGO NAME TEXT */
      .hdr-logo-name {
        display: flex;
        flex-direction: column;
        line-height: 1.25;
        padding: 0 6px;
        border-right: 1px solid rgba(152, 123, 67, 0.35);
      }

      .hdr-logo-name .hdr-n1 {
        font-size: 0.62rem;
        font-weight: 400;
        color: var(--muted);
        letter-spacing: 0.5px;
      }

      .hdr-logo-name .hdr-n2 {
        font-size: 0.82rem;
        font-weight: 700;
        color: var(--gold);
        letter-spacing: 0.5px;
        white-space: nowrap;
      }

      /* LANGUAGE TOGGLE BUTTON */
      .lang-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border: 1px solid rgba(152, 123, 67, 0.55);
        border-radius: 20px;
        padding: 5px 16px;
        font-size: 0.78rem;
        font-weight: 700;
        color: var(--gold);
        background: transparent;
        cursor: pointer;
        text-decoration: none;
        transition: background 0.25s, color 0.25s, border-color 0.25s;
        letter-spacing: 0.8px;
        white-space: nowrap;
        flex-shrink: 0;
      }

      .lang-btn:hover {
        background: var(--gold);
        color: #000;
        border-color: var(--gold);
      }

      .lang-btn .lang-flag {
        font-size: 0.9rem;
      }

      nav {
        display: flex;
        align-items: center;
        gap: 1.4rem;
        width: 100%;
        justify-content: center;
      }

      nav a {
        font-size: 16px;
        font-weight: 600;
        color: #987B43;
        transition: color 0.3s;
      }

      nav a:hover,
      nav a.active {
        color: white;
      }

      nav a.active {
        border-bottom: 1px solid var(--gold);
        padding-bottom: 2px;
      }

      .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 8px;
      }

      .hamburger span {
        display: block;
        height: 2px;
        background: var(--gold);
        border-radius: 2px;
        transition:
          transform 0.3s,
          width 0.3s;
      }

      .hamburger span:nth-child(1) {
        width: 16px;
      }

      .hamburger span:nth-child(2) {
        width: 28px;
      }

      .hamburger.open span:nth-child(1) {
        width: 28px;
        transform: translateY(7px) rotate(45deg);
      }

      .hamburger.open span:nth-child(2) {
        transform: translateY(-7px) rotate(-45deg);
      }

      .mobile-nav {
        position: fixed;
        top: 70px;
        right: 0;
        left: 0;
        bottom: 0;
        background: rgba(8, 8, 8, 0.99);
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
      }

      .mobile-nav.open {
        opacity: 1;
        visibility: visible;
      }

      .mobile-nav a {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--muted);
        padding: 14px 0;
        width: 80%;
        text-align: center;
        border-bottom: 1px solid rgba(152, 123, 67, 0.1);
        transition: color 0.25s, border-color 0.25s;
      }

      .mobile-nav a:last-child {
        border-bottom: none;
      }

      .mobile-nav a:hover,
      .mobile-nav a.active {
        color: var(--gold);
        border-color: rgba(152, 123, 67, 0.35);
      }

      /* SIDE BUTTONS */
      .side-btns {
        position: fixed;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 900;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
      }

      /* Expandable buttons (Contact + WA + Phone) */
      .side-expand {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 48px;
        height: 52px;
        overflow: hidden;
        background: #000;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-left: none;
        border-top: none;
        text-decoration: none;
        transition: width 0.32s ease;
      }

      .side-expand:hover {
        width: 155px;
      }

      .side-icon {
        min-width: 48px;
        width: 48px;
        height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.15rem;
        flex-shrink: 0;
      }

      .side-label {
        background: var(--gold);
        color: #000;
        font-size: 0.82rem;
        font-weight: 700;
        padding: 0 14px;
        height: 52px;
        display: flex;
        align-items: center;
        white-space: nowrap;
        opacity: 0;
        transition: opacity 0.2s 0.1s;
        flex: 1;
      }

      .side-expand:hover .side-label {
        opacity: 1;
      }

      .side-gold {
        background: var(--gold) !important;
      }

      .side-gold .side-icon {
        color: #fff !important;
      }

      /* Contact side button — rotated label always visible */
      .side-contact-btn {
        flex-direction: column;
        width: 48px !important;
        height: auto;
        padding: 6px 0 10px;
        overflow: visible;
      }

      .side-contact-btn:hover {
        width: 48px !important;
      }

      .side-contact-label {
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        color: #fff;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        white-space: nowrap;
        padding: 6px 0 2px;
        line-height: 1;
      }

      /* WHATSAPP FAB */
      .wa-fab {
        position: fixed;
        bottom: 28px;
        right: 28px;
        width: 58px;
        height: 58px;
        border-radius: 50%;
        background: #25D366;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.75rem;
        z-index: 950;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        text-decoration: none;
      }

      .wa-fab:hover {
        transform: scale(1.12);
        box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
      }

      /* HERO */
      .hero {
        position: relative;
        min-height: 100vh;
        background: var(--black);
        overflow: hidden;
        display: flex;
        align-items: center;
        padding-top: 70px;
      }

      .hero-watermark {
        position: absolute;
        bottom: 0%;
        left: 50%;
        transform: translateX(-50%);
        font-size: clamp(5rem, 16vw, 14rem);
        font-weight: 900;
        font-style: italic;
        color: transparent;
        -webkit-text-stroke: 1px rgba(152, 123, 67, 0.12);
        white-space: nowrap;
        pointer-events: none;
        letter-spacing: -4px;
        z-index: 1;
        animation: fadeIn 0.9s 1.5s both;
      }

      .hero-content {
        position: relative;
        z-index: 3;
        width: 100%;
        max-width: 1425px;
        margin: 0 auto;
        padding: 60px 3%;
        display: grid;
        grid-template-columns: 1fr 3fr 1fr;
        align-items: center;
        gap: 0;
        min-height: calc(100vh - 70px);
      }

      .hero-right {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: right;
        padding-left: 20px;
        justify-content: flex-start;
        height: 100%;
        position: relative;
        z-index: 5;
      }

      .hero-right h1,
      .hero-right .dr-small,
      .hero-right .hero-title,
      .hero-bracket p {
        font-family: 'Alexandria', sans-serif;
      }

      /* ── HERO ANIMATION (3-step sequence, fires after preloader) ── */
      /* Step 1: image */
      .hero-img-wrap {
        height: 100%;
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        opacity: 0;
        z-index: 2;
      }

      body.loaded .hero-img-wrap {
        animation: fadeIn 1s 0.3s forwards;
      }

      /* Step 2: doctor name */
      .hero-right h1 {
        opacity: 0;
        text-wrap: nowrap;
        font-family: 'Alexandria', sans-serif;
        font-size: 50px;
        font-weight: 400;
        transform: translateY(24px);
        border-style: solid;
        border-width: 0px 4px 0px 0px;
        border-color: rgb(152, 123, 67);
        padding-right: 1rem;
        margin-bottom: 10px;
        ;
      }

      body.loaded .hero-right h1 {
        animation: slideUp 0.8s 1.5s forwards !important;
      }

      .hero-right h1 .dr-small {
        margin-bottom: 4px;
        display: block;
      }

      .hero-img-wrap .hero-icon {
        border-radius: 4px;

        width: clamp(260px, 28vw, 441px);
        aspect-ratio: 441 / 543;
        flex-shrink: 0;
        overflow: hidden;
        filter: brightness(0.95) contrast(1.05);
        background: url("assets/asma2.png") 50% 0% / cover no-repeat transparent;
      }

      .hero-left {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        height: 100%;
        opacity: 0;
        transform: translateY(24px);
        align-items: flex-end;
        position: relative;
        z-index: 5;
      }

      body.loaded .hero-left {
        animation: slideUp 0.8s 2.3s forwards !important;
      }

      .hero-bracket {
        /* border:3px solid #987b43;
        border-top: none;
        border-right: none;
        padding: 18px 22px;
        max-width: 320px; */
        background-color: #000;
        position: relative;

      }

      .hero-bracket::before {
        content: "";
        position: absolute;
        width: 40px;
        height: 40px;
        border: 3px solid #987b43;
        left: -3px;
        z-index: -1;
        top: -3px;
      }

      .hero-bracket::after {
        content: "";
        position: absolute;
        width: 40px;
        height: 40px;
        border: 3px solid #987b43;
        right: -3px;
        z-index: -1;
        bottom: -3px;
      }

      .hero-bracket p {
        /* font-size: 0.88rem;
        line-height: 1.95;
        color: var(--muted); */
        /* font-family: Cairo !important;  */
        font-size: 16px;
        font-weight: 400;
        color: rgb(255, 255, 255);
        text-transform: none;
        text-decoration: none;
        letter-spacing: 0px;
        line-height: 34px;
        text-align: center;
        white-space: normal;
        overflow: visible;
      }

      /* hero diagonal line */
      .hero-line {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 55%;
        height: 55%;
        z-index: 1;
        pointer-events: none;
        overflow: hidden;
      }

      .hero-line svg {
        width: 100%;
        height: 100%;
      }

      .h-line {
        stroke: var(--gold);
        stroke-width: 1.5;
        fill: none;
        stroke-dasharray: 1500;
        stroke-dashoffset: 1500;
        transition: stroke-dashoffset 3s 1.3s ease;
      }

      .hero-line.go .h-line {
        stroke-dashoffset: 0;
      }

      @keyframes fadeIn {
        to {
          opacity: 1;
        }
      }

      @keyframes slideUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }

        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* WAVE */
      .wave-sec {
        position: relative;
        background: var(--black);
        height: 130px;
        overflow: visible;
        pointer-events: none;
      }

      .wave-sec svg {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform: scaleX(-1);
      }

      .wp {
        fill: none;
        stroke: url(#wg);
        stroke-width: 6;
        stroke-linecap: round;
        stroke-dasharray: 3000;
        stroke-dashoffset: 3000;
        transition: stroke-dashoffset 3.5s cubic-bezier(0.22, 0.9, 0.31, 1);
      }

      .wave-sec.animate .wp {
        stroke-dashoffset: 0;
      }

      /* SERVICES */
      .svc-section {
        background: var(--black);
        padding: 20px 3% 80px;
      }

      .sec-head {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 14px;
        margin-bottom: 30px;
        flex-direction: row-reverse;
      }

      .sec-head h2 {
        font-size: 50px;
        font-weight: 400;
        color: #FFFFFF;
      }

      .gold-bar4 {
        width: 4px;
        height: 5rem;
        background: var(--gold);
      }

      /* ABOUT */
      .about-sec {
        background: var(--black);
        padding: 80px 3%;
      }

      .about-in {
        max-width: 1300px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
      }

      .about-img {
        position: relative;
        background: var(--dark2);
        min-height: 480px;
      }

      .about-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .about-badge {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top,
            rgba(13, 13, 13, 0.95),
            transparent);
        padding: 40px 28px 28px;
      }

      .about-badge-box {
        border: 1px solid var(--gold);
        display: inline-block;
        padding: 10px 14px;
      }

      .about-badge-box .b1 {
        font-size: 0.52rem;
        letter-spacing: 3px;
        color: var(--muted);
        text-transform: uppercase;
      }

      .about-badge-box .b2 {
        font-size: 1rem;
        color: var(--text);
      }

      .about-badge-box .b3 {
        font-size: 0.5rem;
        letter-spacing: 2px;
        color: var(--muted);
        text-transform: uppercase;
      }

      .dr-badge {
        margin-top: 10px;
        display: flex;
        align-items: center;
        gap: 8px;
        direction: ltr;
      }

      .dr-badge .bar {
        width: 2px;
        height: 28px;
        background: var(--gold);
      }

      .dr-badge .dr {
        font-size: 1rem;
        font-weight: 900;
        color: var(--gold);
      }

      .dr-badge .nm {
        font-size: 1.1rem;
        color: var(--text);
      }

      .about-r {
        display: flex;
        flex-direction: column;
        gap: 22px;
      }

      .beauty-icon {
        width: 90px;
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .about-head {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 19px;
      }

      .about-head .bar {
        width: 4px;
        height: 1.8rem;
        background: var(--gold);
        flex-shrink: 0;
      }

      .about-txt {
        font-size: 0.7rem;
        line-height: 1.95;
        color: #fff;
      }

      /* ARTICLES */
      .articles-sec {
        background: var(--dark);
        padding: 70px 3%;
      }

      .articles-in {
        max-width: 1100px;
        margin: 0 auto;
      }

      .articles-grid {
        display: flex;
        flex-direction: column;
        margin-top: 44px;
        border-top: 1px solid rgba(152, 123, 67, 0.15);
      }

      .art-c {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 28px;
        padding: 26px 8px;
        border-bottom: 1px solid rgba(152, 123, 67, 0.12);
        cursor: pointer;
        position: relative;
        transition: background 0.3s, padding-right 0.3s;
        overflow: hidden;
      }

      .art-c::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--gold);
        transform: scaleY(0);
        transform-origin: bottom;
        transition: transform 0.35s ease;
      }

      .art-c:hover::after {
        transform: scaleY(1);
      }

      .art-c:hover {
        background: rgba(152, 123, 67, 0.04);
        padding-right: 18px;
      }

      .art-body {
        display: flex;
        flex-direction: column;
        gap: 6px;
      }

      .art-tag {
        font-size: 0.6rem;
        letter-spacing: 2px;
        color: var(--gold);
        opacity: 0.65;
        transition: opacity 0.3s;
      }

      .art-c:hover .art-tag {
        opacity: 1;
      }

      .art-title {
        font-size: 1.02rem;
        line-height: 1.65;
        color: var(--text);
        transition: color 0.3s;
      }

      .art-c:hover .art-title {
        color: #fff;
      }

      .art-arr {
        width: 38px;
        height: 38px;
        border: 1px solid rgba(152, 123, 67, 0.22);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        font-size: 13px;
        flex-shrink: 0;
        transition: background 0.3s, border-color 0.3s, transform 0.3s;
      }

      .art-c:hover .art-arr {
        background: var(--gold);
        color: #000;
        border-color: var(--gold);
        transform: rotate(-45deg);
      }

      /* TESTIMONIALS */
      .testi-sec {
        background: var(--black);
        padding: 70px 3%;
      }

      .testi-sec .sec-head h2 {
        font-size: 64px;
      }

      .testi-wrap {
        max-width: 1300px;
        margin: 0 auto;
      }

      .testi-slider {
        margin-top: 36px;
        padding-bottom: 44px;
      }

      .testi-c {
        background: var(--dark2);
        border: 2px solid var(--gold);
        outline: 1px solid rgba(152, 123, 67, 0.3);
        outline-offset: 5px;
        padding: 34px 28px 26px;
        position: relative;
        display: flex;
        flex-direction: column;
        height: 100%;
        min-height: 200px;
        transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
        overflow: visible;
      }

      .testi-c:hover {
        border-color: var(--gold);
        outline-color: rgba(152, 123, 67, 0.3);
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
      }

      .testi-quote {
        position: absolute;
        top: 10px;
        left: 20px;
        font-size: 5rem;
        font-weight: 900;
        color: rgba(152, 123, 67, 0.08);
        line-height: 1;
        font-family: Georgia, serif;
        transition: color 0.3s;
        pointer-events: none;
      }

      .testi-c:hover .testi-quote {
        color: rgba(152, 123, 67, 0.15);
      }

      .stars {
        color: var(--gold2);
        font-size: 0.82rem;
        letter-spacing: 3px;
        margin-bottom: 14px;
      }

      .testi-txt {
        font-size: 0.88rem;
        line-height: 1.9;
        color: #d4cfc8;
        flex: 1;
        margin-bottom: 20px;
      }

      .testi-foot {
        display: flex;
        align-items: center;
        gap: 10px;
        padding-top: 14px;
        border-top: 1px solid rgba(152, 123, 67, 0.12);
      }

      .testi-label {
        font-size: 0.68rem;
        font-weight: 400;
        letter-spacing: 2px;
        color: rgba(152, 123, 67, 0.6);
        text-transform: uppercase;
      }

      .testi-dots {
        display: flex;
        gap: 7px;
        margin-top: 22px;
        justify-content: center;
      }

      .dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: rgba(152, 123, 67, 0.22);
        cursor: pointer;
        transition: background 0.3s, width 0.3s;
      }

      .dot.on {
        background: var(--gold);
        width: 22px;
        border-radius: 3px;
      }

      /* CONTACT */
      .contact-sec {
        background: var(--black);
        padding: 70px 3%;
      }

      .contact-in {
        max-width: 1300px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: start;
      }

      .contact-r h2 {
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
        font-weight: 900;
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        gap: 14px;
      }

      .contact-r h2 .bar {
        width: 4px;
        height: 2.2rem;
        background: var(--gold);
        flex-shrink: 0;
      }

      .contact-r p {
        font-size: 0.86rem;
        line-height: 1.92;
        color: var(--muted);
        margin-bottom: 28px;
      }

      .contact-info {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 28px;
      }

      .contact-info-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.85rem;
        color: var(--muted);
      }

      .contact-info-item .ci-icon {
        color: var(--gold);
        font-size: 0.9rem;
      }

      .soc-circles {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
      }

      .soc {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1px solid rgba(152, 123, 67, 0.28);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--muted);
        font-size: 0.88rem;
        transition:
          border-color 0.3s,
          color 0.3s,
          background 0.3s;
      }

      .soc:hover {
        border-color: var(--gold);
        color: var(--gold);
        background: rgba(152, 123, 67, 0.07);
      }

      /* Form title */
      .cf-title {
        font-size: clamp(1.5rem, 3vw, 2rem);
        font-weight: 800;
        color: var(--white);
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        gap: 14px;
      }

      .cf-title .bar {
        display: inline-block;
        width: 4px;
        height: 1.6em;
        background: var(--gold);
        border-radius: 2px;
        flex-shrink: 0;
      }

      /* Form */
      .cf {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }

      .cf-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }

      .cf-f {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(152, 123, 67, 0.2);
        border-radius: 6px;
        padding: 0 14px;
        display: flex;
        align-items: center;
        height: 50px;
        transition: border-color 0.3s;
      }

      .cf-f:focus-within {
        border-color: var(--gold);
        background: rgba(152, 123, 67, 0.06);
      }

      .cf-f input,
      .cf-f textarea,
      .cf-f select {
        background: transparent;
        border: none;
        outline: none;
        color: var(--text);
        font-family: var(--font);
        font-size: 0.88rem;
        width: 100%;
        text-align: right;
        padding: 0;
      }

      .cf-f select option {
        background: var(--dark2);
        color: var(--text);
      }

      .cf-f input::placeholder,
      .cf-f textarea::placeholder {
        color: rgba(136, 136, 136, 0.45);
      }

      .cf-f.full {
        grid-column: 1/-1;
        height: auto;
        padding: 12px 14px;
        align-items: flex-start;
      }

      .cf-f textarea {
        min-height: 90px;
        resize: none;
        padding-top: 2px;
        padding-right: 1rem;
        align-self: stretch;
        line-height: 1.7;
      }

      .cf-submit {
        display: flex;
        justify-content: flex-start;
        margin-top: 6px;
      }

      .cf-btn {
        background: var(--gold);
        border: none;
        color: #000;
        padding: 13px 38px;
        font-family: var(--font);
        font-size: 0.9rem;
        cursor: pointer;
        border-radius: 4px;
        letter-spacing: 1px;
        transition: opacity 0.3s, transform 0.2s;
        width: 100%;
      }

      .cf-btn:hover {
        opacity: 0.88;
        transform: translateY(-1px);
      }

      /* FOOTER */
      footer {
        background: var(--dark);
        border-top: 1px solid rgba(152, 123, 67, 0.1);
        padding: 60px 3% 28px;
      }

      .f-grid {
        max-width: 1300px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        gap: 46px;
        margin-bottom: 46px;
      }

      .f-logo-box {
        border: 2px solid var(--gold);
        padding: 7px 12px;
        display: inline-flex;
        flex-direction: column;
        line-height: 1.2;
        margin-bottom: 14px;
      }

      .f-brand-txt {
        font-size: 0.8rem;
        line-height: 1.82;
        color: var(--muted);
      }

      .f-col h4 {
        font-size: 0.68rem;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 16px;
      }

      .f-col ul {
        display: flex;
        flex-direction: column;
        gap: 9px;
      }

      .f-col ul li {
        display: flex;
        align-items: center;
        gap: 7px;
        font-size: 0.8rem;
        color: var(--muted);
      }

      .f-col ul li .fi {
        color: var(--gold);
      }

      .f-col ul a {
        font-size: 0.8rem;
        color: var(--muted);
        transition: color 0.3s;
      }

      .f-col ul a:hover {
        color: var(--gold);
      }

      .f-bottom {
        max-width: 1300px;
        margin: 0 auto;
        padding-top: 22px;
        border-top: 1px solid rgba(152, 123, 67, 0.08);
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.74rem;
        color: rgba(136, 136, 136, 0.55);
      }

      /* SCROLL ANIMATIONS */
      .rev {
        opacity: 0;
        transform: translateY(34px);
        transition:
          opacity 0.8s ease,
          transform 0.8s ease;
      }

      .rev.in {
        opacity: 1;
        transform: none;
      }

      .rev-l {
        opacity: 0;
        transform: translateX(-34px);
        transition:
          opacity 0.8s ease,
          transform 0.8s ease;
      }

      .rev-l.in {
        opacity: 1;
        transform: none;
      }

      .rev-r {
        opacity: 0;
        transform: translateX(34px);
        transition:
          opacity 0.8s ease,
          transform 0.8s ease;
      }

      .rev-r.in {
        opacity: 1;
        transform: none;
      }

      [data-d="1"] {
        transition-delay: 0.1s;
      }

      [data-d="2"] {
        transition-delay: 0.2s;
      }

      [data-d="3"] {
        transition-delay: 0.3s;
      }

      [data-d="4"] {
        transition-delay: 0.4s;
      }

      /* POPUP — slide-in panel from left */
      .pop-ov {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(4px);
        z-index: 8000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s, visibility 0.35s;
      }

      .pop-ov.open {
        opacity: 1;
        visibility: visible;
      }

      .pop-box {
        position: absolute;
        top: 0;
        left: 0;
        width: 360px;
        max-width: 90vw;
        height: 100%;
        background: var(--dark);
        border-right: 2px solid rgba(152, 123, 67, 0.3);
        padding: 36px 28px 28px;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
      }

      .pop-ov.open .pop-box {
        transform: translateX(0);
      }

      .pop-x {
        position: absolute;
        top: 14px;
        left: 14px;
        background: none;
        border: none;
        color: var(--muted);
        font-size: 1.2rem;
        cursor: pointer;
        transition: color 0.3s;
        line-height: 1;
      }

      .pop-x:hover {
        color: var(--gold);
      }

      .pop-box h3 {
        font-size: 1.15rem;
        font-weight: 700;
        margin-bottom: 22px;
        margin-top: 10px;
        padding-right: 12px;
        border-right: 3px solid var(--gold);
        text-align: right;
      }

      .pop-form {
        display: flex;
        flex-direction: column;
        gap: 11px;
      }

      .pop-form input,
      .pop-form textarea,
      .pop-form select {
        background: var(--dark2);
        border: 1px solid rgba(152, 123, 67, 0.15);
        color: var(--text);
        padding: 10px 14px;
        font-family: var(--font);
        font-size: 0.88rem;
        outline: none;
        transition: border-color 0.3s;
        text-align: right;
      }

      .pop-form select option {
        background: var(--dark2);
      }

      .pop-form input::placeholder,
      .pop-form textarea::placeholder {
        color: var(--muted);
      }

      .pop-form input:focus,
      .pop-form textarea:focus,
      .pop-form select:focus {
        border-color: var(--gold);
      }

      .pop-form textarea {
        min-height: 80px;
        resize: none;
      }

      .pop-form button {
        background: var(--gold);
        color: #000;
        border: none;
        padding: 11px;
        font-family: var(--font);
        font-size: 0.9rem;
        font-weight: 700;
        cursor: pointer;
        letter-spacing: 1px;
        transition: opacity 0.3s;
      }

      .pop-form button:hover {
        opacity: 0.85;
      }


      /* RESPONSIVE */
      @media (max-width: 900px) {
        header {
          border-bottom: 2px solid var(--gold3);
        }

        nav {
          display: none;
        }

        .hamburger {
          display: flex;
        }

        .hdr-logo {
          padding: 4px 8px;
        }

        .hdr-logo-text img {
          height: 38px;
        }

        header {
          padding: 0 4%;
        }

        /* Hero mobile — image left, texts stacked right */
        .hero {
          min-height: unset;
          padding-top: 16vh;
          max-height: 44vh;
        }

        .hero-content {
          grid-template-columns: 1fr 1fr;
          grid-template-rows: auto auto;
          text-align: right;
          padding: 14px 4% 18px;
          column-gap: 10px;
          row-gap: 6px;
          align-items: start;
          align-content: center;
          min-height: calc(70svh - 70px);
        }

        /* Image → visual left (col 2 in RTL), spans both text rows */
        .hero-img-wrap {
          grid-column: 2;
          grid-row: 1 / 3;
          width: 100%;
          height: 100%;
          align-self: stretch;
          display: flex;
          align-items: center;
          order: unset;
        }

        .hero-img-wrap .hero-icon {
          width: 100%;
          min-height: 52vw;
          aspect-ratio: auto;
        }

        /* Name → visual right (col 1 in RTL), top row */
        .hero-right {
          grid-column: 1;
          grid-row: 1;
          order: unset;
          align-items: flex-start;
          align-self: end;
          justify-content: flex-end;
          padding-bottom: 2px;
          height: auto;
        }

        .hero-right h1 {
          font-size: clamp(1.4rem, 5.5vw, 2rem);
          padding-right: 0.5rem;
          border-width: 0 3px 0 0;
          line-height: 1.25;
        }

        /* Description → visual right (col 1 in RTL), bottom row */
        .hero-left {
          grid-column: 1;
          grid-row: 2;
          order: unset;
          align-items: flex-start;
          align-self: start;
          justify-content: flex-start;
          height: auto;
        }

        .hero-bracket {
          max-width: 100%;
        }

        .hero-bracket p {
          font-size: clamp(0.62rem, 2.4vw, 0.82rem);
          line-height: 1.65;
          text-align: right;
        }

        .hero-svc-label {
          position: static;
          margin-top: 20px;
          align-self: center;
        }

        .about-in {
          grid-template-columns: 1fr;
        }

        .contact-in {
          grid-template-columns: 1fr;
        }

        .f-grid {
          grid-template-columns: 1fr 1fr;
        }

      }

      @media (max-width: 580px) {

        .f-grid {
          grid-template-columns: 1fr 1fr;
          gap: 24px;
        }

        .cf-row {
          grid-template-columns: 1fr;
        }

        /* Sidebar — icon only, no expand on mobile */
        .side-btns {
          left: 0;
        }

        .side-expand {
          width: 38px !important;
          height: auto;
        }

        .side-expand:hover {
          width: 38px;
        }

        .side-expand:hover .side-label {
          opacity: 0;
        }

        .side-icon {
          min-width: 38px;
          width: 38px;
          height: 44px;
          font-size: 0.95rem;
        }

        /* Cards — 2 per row on mobile */
        .cards {
          grid-template-columns: repeat(2, 1fr);
          gap: 10px;
        }

        .card {
          height: 13rem !important;
          width: 100% !important;
        }

        .card-front h1 {
          font-size: 36px !important;
          font-family: Arial, Helvetica, sans-serif;
        }

        .card-front h3 {
          font-size: 24px !important;
          padding: 0 !important;
          width: 100% !important;
        }

        .card-desc {
          font-size: 14px !important;
          -webkit-line-clamp: 2 !important;
        }

        .card-front {
          /* padding: 10px 22px !important; */
        }

        .card-front h3:nth-child(11) {
          font-size: .1rem !important;
        }

        #card-11 h3 {
          font-size: 1rem !important;
        }
      }

      .cards {
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        gap: 10px;
      }

      .card {
        position: relative;
        height: 21rem;
        width: 17rem;
      }

      .card-front {
        width: 100%;
        height: 100%;
        background-color: transparent;
        --background-overlay: '';
        border: 1px solid #987B43;
        padding: 10% 22px;
        /* filter: grayscale(40%); */

        border-radius: 8px;
        position: relative;
        /* عشان يبقى فوق card-back */
        z-index: 20;
        transition: border-color 0.3s, transform 0.3s, rotate 0.3s;

      }

      /* الحل: trigger من .card مش من .card-front */
      .card:hover .card-front {
        border-color: rgba(152, 123, 67, 0.22);
        rotate: 10deg;
        transform: translateX(40px);
        z-index: 2;
      }

      .card-back {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        opacity: 0.3;
        z-index: 10;
        border-radius: 8px;
        transition: opacity 0.5s;
      }

      /* الحل: trigger من .card برضو */
      .card:hover .card-back {
        opacity: 1;
        z-index: 30;
        filter: blur(0px);


      }

      .card-back img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.5;
      }

      .card-front h1 {

        text-align: center;
        font-size: 90px;
        -webkit-text-stroke-width: 2px;
        stroke-width: 2px;
        -webkit-text-stroke-color: #987B43;
        stroke: #987B43;
        color: #987B4300;
      }

      .card-front h3 {
        color: #FFFFFF;
        padding-top: 1rem;
        font-size: 24px;
        width: 100%;
        text-align: center;
        font-family: "Alexandria", Sans-serif;

      }

      .card-desc {
        /* font-family: "Cairo", Sans-serif; */
        font-size: 16px;
        color: white;
        text-align: center;
        margin-top: 0.6rem;
        text-wrap: wrap;
        font-family: "Alexandria", Sans-serif;

      }

      .swiper {
        padding-bottom: 2rem !important;
      }

      @media (max-width: 676px) {

        .card-front {
          padding: 8% 10px !important;
        }

        .sec-head h2 {
          font-size: 30px;

        }

        .gold-bar4 {
          width: 3px;
          height: 2rem;
          background: var(--gold);
        }
      }

      .cf-f {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(152, 123, 67, 0.2);
        border-bottom: 1px solid rgba(202, 202, 202, 0.5);
        border-radius: 6px;
        padding: 0 14px;
      }