    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --navy: #0B1F3A;
      --navy-mid: #112848;
      --navy-light: #163356;
      --gold: #F5A623;
      --gold-light: #FFD07B;
      --gold-dark: #C07D0A;
      --white: #FFFFFF;
      --text-muted: #A0B4CC;
      --card-bg: #112848;
      --border: rgba(245, 166, 35, 0.2);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Cairo', sans-serif;
      background: var(--navy);
      color: var(--white);
      overflow-x: hidden;
      direction: rtl;
    }

    nav {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 100;
      background: rgba(11, 31, 58, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      padding: 10px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .logo-frame {
      position: relative;
      width: 72px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    /* Outer slow-spin gold ring */
    .logo-frame::before {
      content: '';
      position: absolute;
      inset: -2px;
      border-radius: 50%;
      background: conic-gradient(from 0deg, transparent 60%, var(--gold) 100%);
      animation: spin-ring 3s linear infinite;
      -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px));
      mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px));
    }

    /* Inner counter-spin dashed ring */
    .logo-frame::after {
      content: '';
      position: absolute;
      inset: 8px;
      border-radius: 50%;
      border: 1.5px dashed rgba(245, 166, 35, 0.4);
      animation: spin-ring 8s linear infinite reverse;
    }

    @keyframes spin-ring {
      to {
        transform: rotate(360deg);
      }
    }

    /* Glow disc behind the logo */
    .logo-glow {
      position: absolute;
      inset: 4px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(245, 166, 35, 0.18) 0%, transparent 70%);
      animation: glow-pulse 3s ease-in-out infinite;
      z-index: 0;
    }

    @keyframes glow-pulse {

      0%,
      100% {
        opacity: 0.6;
        transform: scale(0.95);
      }

      50% {
        opacity: 1;
        transform: scale(1.1);
      }
    }

    .logo-frame img {
      width: 52px;
      height: 52px;
      object-fit: contain;
      position: relative;
      z-index: 1;
      mix-blend-mode: screen;
      /* removes white background on dark nav */
      animation: logo-float 4s ease-in-out infinite;
      filter: brightness(1.15) contrast(1.1) drop-shadow(0 0 8px rgba(245, 166, 35, 0.6));
    }

    @keyframes logo-float {

      0%,
      100% {
        transform: scale(1) translateY(0);
        filter: brightness(1.15) contrast(1.1) drop-shadow(0 0 7px rgba(245, 166, 35, 0.5));
      }

      50% {
        transform: scale(1.08) translateY(-2px);
        filter: brightness(1.25) contrast(1.1) drop-shadow(0 0 16px rgba(245, 166, 35, 0.85));
      }
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.15;
    }

    .logo-text .lt-main {
      font-size: 19px;
      font-weight: 900;
      color: var(--gold);
      letter-spacing: 1px;
    }

    .logo-text .lt-sub {
      font-size: 10px;
      font-weight: 600;
      color: var(--text-muted);
      letter-spacing: 2.5px;
      text-transform: uppercase;
    }

    .nav-cta {
      background: var(--gold);
      color: var(--navy);
      padding: 10px 28px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
      border: none;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
      font-family: 'Cairo', sans-serif;
    }

    .nav-cta:hover {
      background: var(--gold-light);
      transform: scale(1.04);
    }

    section {
      padding: 100px 40px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .hero-wrap {
      min-height: 100vh;
      background:
        linear-gradient(to bottom, rgba(11, 31, 58, 0.65) 0%, rgba(11, 31, 58, 0.96) 100%),
        url('https://lh3.googleusercontent.com/d/1EvIJ82IDnl_U9a4BVLA1T7SMOhChcODf') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 40px 80px;
    }

    .hero-inner {
      max-width: 860px;
    }

    .badge {
      display: inline-block;
      background: rgba(245, 166, 35, 0.15);
      border: 1px solid rgba(245, 166, 35, 0.5);
      color: var(--gold);
      padding: 6px 20px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 28px;
    }

    h1 {
      font-size: clamp(32px, 5vw, 60px);
      font-weight: 900;
      line-height: 1.25;
      color: var(--white);
      margin-bottom: 16px;
    }

    h1 span {
      color: var(--gold);
    }

    .hero-pain {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px 32px;
      margin-bottom: 40px;
      text-align: right;
    }

    .hero-pain p {
      font-size: 15px;
      color: var(--text-muted);
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .hero-pain p::before {
      content: '←';
      color: var(--gold);
      font-size: 16px;
      flex-shrink: 0;
    }

    .hero-pain .pain-title {
      font-size: 17px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .hero-highlight {
      background: linear-gradient(135deg, rgba(245, 166, 35, 0.15), rgba(245, 166, 35, 0.05));
      border: 1px solid var(--gold);
      border-radius: 12px;
      padding: 20px 28px;
      margin-bottom: 40px;
      font-size: 20px;
      font-weight: 700;
    }

    .hero-highlight span {
      color: var(--gold);
    }

    .btn-primary {
      display: inline-block;
      background: var(--gold);
      color: var(--navy);
      padding: 18px 48px;
      border-radius: 50px;
      font-size: 18px;
      font-weight: 900;
      text-decoration: none;
      transition: all 0.2s;
      border: none;
      cursor: pointer;
      font-family: 'Cairo', sans-serif;
    }

    .btn-primary:hover {
      background: var(--gold-light);
      transform: scale(1.04);
      box-shadow: 0 8px 32px rgba(245, 166, 35, 0.35);
    }

    .btn-outline {
      display: inline-block;
      background: transparent;
      color: var(--gold);
      padding: 18px 40px;
      border-radius: 50px;
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
      border: 2px solid var(--gold);
      margin-right: 16px;
      transition: all 0.2s;
    }

    .btn-outline:hover {
      background: rgba(245, 166, 35, 0.1);
    }

    .hero-meta {
      margin-top: 56px;
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .hero-meta-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text-muted);
      font-size: 15px;
    }

    /* STATS */
    .stats-wrap {
      background: var(--navy-mid);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 60px 40px;
    }

    .stats-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 32px;
      text-align: center;
    }

    .stat-item .num {
      font-size: 52px;
      font-weight: 900;
      color: var(--gold);
      line-height: 1;
      display: block;
    }

    .stat-item .lbl {
      font-size: 15px;
      color: var(--text-muted);
      margin-top: 8px;
    }

    /* SECTION TITLES */
    .sec-title {
      font-size: clamp(26px, 3.5vw, 42px);
      font-weight: 900;
      margin-bottom: 14px;
    }

    .sec-title span {
      color: var(--gold);
    }

    .sec-sub {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 56px;
    }

    /* ── GALLERY SLIDER ── */
    .gallery-section {
      background: var(--navy);
      padding: 100px 0;
      overflow: hidden;
    }

    .gallery-header {
      text-align: center;
      padding: 0 40px 56px;
    }

    .slider-track-wrap {
      position: relative;
      overflow: hidden;
      mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    }

    .slider-track {
      display: flex;
      gap: 16px;
      animation: slide-rtl 60s linear infinite;
      width: max-content;
    }

    .slider-track:hover {
      animation-play-state: paused;
    }

    .slider-track-2 {
      animation: slide-ltr 55s linear infinite;
      margin-top: 16px;
    }

    .slider-track-2:hover {
      animation-play-state: paused;
    }

    @keyframes slide-rtl {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    @keyframes slide-ltr {
      0% {
        transform: translateX(-50%);
      }

      100% {
        transform: translateX(0);
      }
    }

    .slide-img {
      flex-shrink: 0;
      width: 320px;
      height: 220px;
      border-radius: 16px;
      overflow: hidden;
      border: 2px solid rgba(245, 166, 35, 0.15);
      transition: border-color 0.3s, transform 0.3s;
      cursor: pointer;
      position: relative;
    }

    .slide-img:hover {
      border-color: var(--gold);
      transform: scale(1.03);
      z-index: 2;
    }

    .slide-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s;
    }

    .slide-img:hover img {
      transform: scale(1.06);
    }

    .slide-img .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(11, 31, 58, 0.6) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .slide-img:hover .overlay {
      opacity: 1;
    }

    /* LIGHTBOX */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: rgba(0, 0, 0, 0.92);
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 20px;
    }

    .lightbox.open {
      display: flex;
    }

    .lightbox img {
      max-width: 90vw;
      max-height: 80vh;
      border-radius: 12px;
      object-fit: contain;
    }

    .lightbox-close {
      position: fixed;
      top: 24px;
      left: 24px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: white;
      border-radius: 50%;
      width: 48px;
      height: 48px;
      font-size: 22px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lb-nav {
      display: flex;
      gap: 16px;
    }

    .lb-btn {
      background: rgba(245, 166, 35, 0.15);
      border: 1px solid var(--gold);
      color: var(--gold);
      border-radius: 10px;
      padding: 10px 24px;
      font-size: 18px;
      cursor: pointer;
      font-family: 'Cairo', sans-serif;
      transition: background 0.2s;
    }

    .lb-btn:hover {
      background: var(--gold);
      color: var(--navy);
    }

    /* PROBLEM / SOLUTION */
    .split-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    @media (max-width: 700px) {
      .split-grid {
        grid-template-columns: 1fr;
      }
    }

    .problem-card {
      background: rgba(255, 50, 50, 0.06);
      border: 1px solid rgba(255, 100, 100, 0.2);
      border-radius: 20px;
      padding: 32px;
    }

    .solution-card {
      background: rgba(245, 166, 35, 0.07);
      border: 1px solid rgba(245, 166, 35, 0.35);
      border-radius: 20px;
      padding: 32px;
    }

    .card-head {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .card-head .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .dot-red {
      background: #FF5555;
    }

    .dot-gold {
      background: var(--gold);
    }

    .item-row {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 16px;
      font-size: 15px;
      line-height: 1.6;
    }

    .item-row .ic {
      font-size: 16px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .item-row .txt {
      color: #CBD5E1;
    }

    /* VALUE CARDS */
    .value-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
    }

    .value-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 28px;
      transition: transform 0.2s, border-color 0.2s;
    }

    .value-card:hover {
      transform: translateY(-4px);
      border-color: var(--gold);
    }

    .value-card .v-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: rgba(245, 166, 35, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 20px;
    }

    .value-card h3 {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .value-card p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* URGENCY */
    .urgency-wrap {
      background: linear-gradient(135deg, #1a0a00, #2a1500);
      border: 1px solid rgba(245, 166, 35, 0.4);
      border-radius: 24px;
      padding: 56px 48px;
      text-align: center;
    }

    .urgency-wrap h2 {
      font-size: 36px;
      font-weight: 900;
      margin-bottom: 32px;
    }

    .urgency-items {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 24px;
      margin-bottom: 40px;
    }

    .urgency-item {
      background: rgba(245, 166, 35, 0.1);
      border: 1px solid rgba(245, 166, 35, 0.3);
      border-radius: 14px;
      padding: 20px 28px;
      font-size: 16px;
      font-weight: 600;
    }

    /* PACKAGES */
    .pkg-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 20px;
    }

    .pkg-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 28px;
      position: relative;
      transition: all 0.25s;
      display: flex;
      flex-direction: column;
    }

    .pkg-card:hover {
      transform: translateY(-5px);
      border-color: var(--gold);
    }

    .pkg-card.featured {
      border: 2px solid var(--gold);
      background: linear-gradient(160deg, #1a2e50, #0f2040);
    }

    .pkg-card.featured::before {
      content: '★ الأقوى';
      position: absolute;
      top: -14px;
      right: 50%;
      transform: translateX(50%);
      background: var(--gold);
      color: var(--navy);
      padding: 4px 18px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 900;
    }

    .pkg-name {
      font-size: 13px;
      color: var(--text-muted);
      font-weight: 600;
      margin-bottom: 8px;
      letter-spacing: 1px;
    }

    .pkg-price {
      font-size: 36px;
      font-weight: 900;
      color: var(--gold);
      margin-bottom: 4px;
    }

    .pkg-price span {
      font-size: 16px;
      font-weight: 400;
      color: var(--text-muted);
    }

    .pkg-div {
      height: 1px;
      background: var(--border);
      margin: 20px 0;
    }

    .pkg-feat {
      font-size: 14px;
      color: #CBD5E1;
      margin-bottom: 12px;
      display: flex;
      align-items: flex-start;
      gap: 10px;
      line-height: 1.5;
    }

    .pkg-feat::before {
      content: '✓';
      color: var(--gold);
      font-weight: 700;
      flex-shrink: 0;
    }

    .pkg-btn {
      margin-top: auto;
      padding-top: 24px;
    }

    .pkg-btn a {
      display: block;
      text-align: center;
      padding: 14px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 14px;
      text-decoration: none;
      background: rgba(245, 166, 35, 0.12);
      color: var(--gold);
      border: 1px solid var(--gold);
      transition: all 0.2s;
      font-family: 'Cairo', sans-serif;
    }

    .pkg-btn a:hover {
      background: var(--gold);
      color: var(--navy);
    }

    .pkg-card.featured .pkg-btn a {
      background: var(--gold);
      color: var(--navy);
    }

    /* CTA / FOOTER */
    .cta-final {
      text-align: center;
      padding: 120px 40px;
      background: radial-gradient(ellipse at center, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
    }

    .cta-final h2 {
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 900;
      margin-bottom: 16px;
    }

    .cta-final p {
      font-size: 18px;
      color: var(--text-muted);
      margin-bottom: 48px;
    }

    .contact-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 48px;
    }

    .contact-chip {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 14px 24px;
      font-size: 15px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .contact-chip .icon {
      color: var(--gold);
      font-size: 18px;
    }

    footer {
      background: var(--navy-mid);
      border-top: 1px solid var(--border);
      text-align: center;
      padding: 32px 40px;
      color: var(--text-muted);
      font-size: 14px;
    }

    footer strong {
      color: var(--gold);
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .anim {
      animation: fadeUp 0.7s ease both;
    }

    .anim-d1 {
      animation-delay: 0.1s;
    }

    .anim-d2 {
      animation-delay: 0.25s;
    }

    .anim-d3 {
      animation-delay: 0.4s;
    }

    .anim-d4 {
      animation-delay: 0.55s;
    }

    @media (max-width: 600px) {
      nav {
        padding: 10px 20px;
      }

      section {
        padding: 70px 20px;
      }

      .hero-wrap {
        padding: 100px 20px 60px;
      }

      .urgency-wrap {
        padding: 40px 24px;
      }

      .stats-wrap {
        padding: 40px 20px;
      }

      .slide-img {
        width: 240px;
        height: 165px;
      }
    }
