 /* ============================================================
       CSS كامل – الصفحة الرئيسية
       ============================================================ */

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --silver: #c0c0c0;
      --silver-light: #ececec;
      --silver-dark: #8e8e8e;
      --bg: #f6f3ef;
      --bg2: #ece7df;
      --surface: #ffffff;
      --surface2: #f5f1ea;
      --text: #1d1b18;
      --text2: #6d675f;
      --line: rgba(0, 0, 0, 0.06);
      --glass: rgba(255, 255, 255, 0.7);
      --shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
      --font-title: 'El Messiri', serif;
      --font-body: 'Tajawal', sans-serif;
      --radius: 8px;
      --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    [data-theme="dark"] {
      --bg: #121110;
      --bg2: #181715;
      --surface: #1d1c1a;
      --surface2: #252321;
      --text: #f3efe8;
      --text2: #aea89f;
      --line: rgba(255, 255, 255, 0.06);
      --glass: rgba(20, 20, 20, 0.7);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      direction: rtl;
      transition: 0.5s;
      line-height: 1.7;
    }

    img {
      display: block;
      max-width: 100%;
      border-radius: var(--radius);
    }
    a {
      color: inherit;
      text-decoration: none;
    }
    ul {
      list-style: none;
    }
    button {
      border: none;
      background: none;
      cursor: pointer;
      font-family: inherit;
    }

    .container {
      width: min(1360px, 92%);
      margin: auto;
    }

    /* ============================================================
       شاشة التحميل
       ============================================================ */
    .loader {
      position: fixed;
      inset: 0;
      background: var(--bg);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: 99999;
      transition: 0.8s var(--transition);
      gap: 28px;
    }

    .loader.hide {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .loader-logo {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
      border: 2px solid var(--silver-light);
      animation: loaderPulse 1.8s ease-in-out infinite;
    }

    .loader-logo img {
      width: 72%;
    }

    @keyframes loaderPulse {
      0%,
      100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.04);
        box-shadow: 0 25px 60px rgba(192, 192, 192, 0.2);
      }
    }

    .loader-bar-wrap {
      width: 220px;
      height: 3px;
      background: rgba(192, 192, 192, 0.15);
      border-radius: 10px;
      overflow: hidden;
      position: relative;
    }

    .loader-bar {
      position: absolute;
      right: 0;
      top: 0;
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, var(--silver-light), var(--silver), var(--silver-light));
      border-radius: 10px;
      animation: loadBar 1.6s ease-in-out infinite;
    }

    @keyframes loadBar {
      0% {
        width: 0%;
        right: 0;
        left: auto;
      }
      50% {
        width: 70%;
        right: 0;
        left: auto;
      }
      100% {
        width: 0%;
        right: 100%;
        left: auto;
      }
    }

    .loader-text {
      font-size: 15px;
      letter-spacing: 2px;
      color: var(--text2);
      font-weight: 500;
      font-family: var(--font-title);
      margin-top: 6px;
      opacity: 0.8;
    }

    /* ============================================================
       الناف بار
       ============================================================ */
    .navbar {
      position: fixed;
      inset: 0 0 auto 0;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-inline: 5vw;
      z-index: 999;
      transition: 0.5s var(--transition);
      transform: translateY(-100%);
      opacity: 0;
    }

    .navbar.show {
      transform: translateY(0);
      opacity: 1;
    }

    .navbar.solid {
      backdrop-filter: blur(18px);
      background: var(--glass);
      border-bottom: 1px solid var(--line);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .nav-logo-badge {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border: 2px solid var(--silver-light);
      flex-shrink: 0;
    }

    .nav-logo-badge img {
      width: 72%;
    }

    .nav-logo-text {
      font-size: 24px;
      font-family: var(--font-title);
      background: linear-gradient(120deg, #999, #ddd, #999);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-weight: 700;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .nav-links li {
      position: relative;
    }

    .nav-links a {
      font-size: 14px;
      color: var(--text2);
      transition: 0.35s;
      font-weight: 500;
      padding: 6px 0;
      position: relative;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: -4px;
      width: 0;
      height: 2px;
      background: var(--silver);
      transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .nav-links a:hover {
      color: var(--silver);
    }
    .nav-links a:hover::after {
      width: 100%;
    }
    .nav-links a.active {
      color: var(--text2);
    }
    .nav-links a.active::after {
      width: 100%;
      background: var(--silver);
      animation: activeSlide 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    }

    @keyframes activeSlide {
      0% {
        width: 0;
        right: 50%;
      }
      50% {
        width: 100%;
        right: 0;
      }
      100% {
        width: 100%;
        right: 0;
      }
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .theme-toggle {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.35s;
      font-size: 17px;
      color: var(--text2);
    }
    .theme-toggle:hover {
      background: var(--silver);
      color: #fff;
    }

    .nav-cta {
      padding: 10px 24px;
      border: 1.5px solid var(--silver);
      border-radius: var(--radius);
      color: var(--silver);
      font-weight: 700;
      transition: 0.35s;
      font-size: 13px;
    }
    .nav-cta:hover {
      background: var(--silver);
      color: #fff;
    }

    .nav-burger {
      display: none;
      width: 40px;
      height: 40px;
      border-radius: var(--radius);
      background: var(--silver);
      color: #fff;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      transition: 0.3s;
    }
    .nav-burger:hover {
      background: var(--silver-dark);
    }

    .nav-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.35);
      backdrop-filter: blur(3px);
      opacity: 0;
      visibility: hidden;
      transition: 0.4s;
      z-index: 998;
    }
    .nav-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .close-menu {
      display: none;
      font-size: 24px;
      color: var(--text2);
      padding: 8px 0 20px 0;
      width: 100%;
      text-align: right;
      transition: 0.3s;
    }
    .close-menu:hover {
      color: var(--text);
    }

    @media (max-width: 992px) {
      .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 310px;
        max-width: 84%;
        height: 100vh;
        background: var(--glass);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-left: 1px solid var(--line);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 32px 40px;
        gap: 0;
        transition: 0.5s var(--transition);
        z-index: 999;
        overflow-y: auto;
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.06);
      }
      .nav-links.active {
        right: 0;
      }
      .nav-links li {
        width: 100%;
      }
      .nav-links a {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 16px 0;
        font-size: 17px;
        border-bottom: 1px solid var(--line);
        font-weight: 500;
        color: var(--text2);
        transition: 0.3s;
        gap: 6px;
      }
      .nav-links a:hover {
        color: var(--text);
        padding-right: 6px;
      }
      .nav-links a::after {
        display: none;
      }
      .nav-links a i {
        margin-left: 14px;
        width: 28px;
        font-size: 18px;
        color: #6d675f;
        transition: 0.3s;
      }
      .nav-links a:hover i {
        color: #1d1b18;
      }
      .nav-links a.active {
        color: var(--text);
        font-weight: 600;
      }
      .nav-links a.active i {
        color: #1d1b18;
      }
      .close-menu {
        display: block;
      }
      .nav-cta {
        display: none;
      }
      .nav-burger {
        display: flex;
      }
      .nav-logo-text {
        font-size: 18px;
      }
      .nav-logo-badge {
        width: 58px;
        height: 58px;
      }
    }

    @media (max-width: 480px) {
      .navbar {
        height: 68px;
        padding-inline: 4vw;
      }
      .nav-logo-badge {
        width: 52px;
        height: 52px;
      }
      .nav-logo-text {
        font-size: 16px;
      }
      .nav-links {
        padding: 22px 22px 30px;
        width: 280px;
      }
      .nav-links a {
        font-size: 15px;
        padding: 14px 0;
      }
      .nav-links a i {
        font-size: 16px;
        width: 24px;
      }
    }

    /* ============================================================
       الهيرو
       ============================================================ */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 20px;
      overflow: hidden;
    }

    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .hero-video-mobile {
      display: none;
    }

    @media (max-width: 768px) {
      .hero-video-desktop {
        display: none;
      }
      .hero-video-mobile {
        display: block;
      }
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 780px;
    }

    .hero-content h1 {
      font-family: var(--font-title);
      font-size: clamp(38px, 6vw, 76px);
      color: #fff;
      line-height: 1.15;
      margin-bottom: 20px;
      text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    .hero-content h1 span {
      background: linear-gradient(135deg, #fff, var(--silver), #888);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-content p {
      color: rgba(255, 255, 255, 0.85);
      font-size: 17px;
      line-height: 2;
      max-width: 580px;
      margin: 0 auto 40px;
      text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .hero-btn {
      padding: 15px 38px;
      border-radius: var(--radius);
      font-weight: 700;
      transition: 0.35s;
      display: inline-block;
    }

    .hero-btn.primary {
      background: var(--silver);
      color: #111;
    }
    .hero-btn.primary:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(192, 192, 192, 0.25);
    }

    .hero-btn.secondary {
      border: 1.5px solid rgba(255, 255, 255, 0.3);
      color: #fff;
      backdrop-filter: blur(4px);
      background: rgba(255, 255, 255, 0.05);
    }
    .hero-btn.secondary:hover {
      background: #fff;
      color: #111;
      border-color: #fff;
    }

    /* ============================================================
       من نحن
       ============================================================ */
    #who {
      padding: 120px 0;
      background: var(--bg);
      position: relative;
      overflow: hidden;
    }

    #who::before {
      content: "";
      position: absolute;
      top: -50%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(192, 192, 192, 0.04), transparent 70%);
      border-radius: 50%;
      z-index: 0;
      animation: floatBg 12s ease-in-out infinite;
    }

    @keyframes floatBg {
      0%,
      100% {
        transform: translate(0, 0) scale(1);
      }
      33% {
        transform: translate(-30px, 20px) scale(1.05);
      }
      66% {
        transform: translate(20px, -10px) scale(0.95);
      }
    }

    .who-wrapper {
      position: relative;
      z-index: 1;
    }

    .who-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .who-image-wrapper {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
    }

    .who-image-wrapper::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(192, 192, 192, 0.15), transparent 50%, rgba(192, 192, 192, 0.05));
      z-index: 1;
      pointer-events: none;
    }

    .who-image-wrapper::after {
      content: "";
      position: absolute;
      inset: -3px;
      border-radius: calc(var(--radius) + 2px);
      background: linear-gradient(135deg, transparent 40%, var(--silver), transparent 60%);
      z-index: -1;
      animation: borderGlow 4s ease-in-out infinite;
      background-size: 300% 300%;
    }

    @keyframes borderGlow {
      0% {
        background-position: 0% 50%;
        opacity: 0.3;
      }
      50% {
        background-position: 100% 50%;
        opacity: 0.8;
      }
      100% {
        background-position: 0% 50%;
        opacity: 0.3;
      }
    }

    .who-image {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius);
      transform: scale(1);
      transition: transform 0.8s var(--transition);
    }

    .who-image:hover {
      transform: scale(1.02);
    }

    .who-image img {
      width: 100%;
      height: 100%;
      min-height: 400px;
      object-fit: cover;
      display: block;
      transition: transform 1.2s var(--transition);
    }

    .who-image:hover img {
      transform: scale(1.06);
    }

    .who-image-shimmer {
      position: absolute;
      top: 0;
      left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
      transform: skewX(-20deg);
      animation: shimmer 4s ease-in-out infinite;
      z-index: 2;
      pointer-events: none;
    }

    @keyframes shimmer {
      0% {
        left: -100%;
      }
      100% {
        left: 200%;
      }
    }

    .who-image-badge {
      position: absolute;
      bottom: 24px;
      right: 24px;
      z-index: 3;
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      padding: 12px 20px;
      border-radius: 30px;
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1px;
      display: flex;
      align-items: center;
      gap: 10px;
      animation: fadeInUp 1s ease 0.6s both;
    }

    .who-image-badge i {
      font-size: 16px;
      color: var(--silver);
    }

    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(20px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .who-content {
      padding: 20px 0;
    }

    .who-content .who-tag {
      display: inline-block;
      color: var(--silver);
      letter-spacing: 3px;
      font-size: 12px;
      font-weight: 600;
      margin-bottom: 14px;
      position: relative;
      padding-right: 16px;
    }

    .who-content .who-tag::before {
      content: "";
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 4px;
      height: 20px;
      background: var(--silver);
      border-radius: 2px;
    }

    .who-content h2 {
      font-size: 48px;
      font-family: var(--font-title);
      margin-bottom: 24px;
      line-height: 1.2;
    }

    .who-content h2 span {
      color: var(--silver);
    }

    .who-content p {
      color: var(--text2);
      line-height: 2;
      font-size: 16px;
      margin-bottom: 16px;
    }

    .who-content p:last-of-type {
      margin-bottom: 32px;
    }

    .who-values {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin: 28px 0 32px;
    }

    .who-value {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 18px;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      transition: 0.4s var(--transition);
    }

    .who-value:hover {
      transform: translateY(-4px);
      border-color: var(--silver);
      box-shadow: var(--shadow);
    }

    .who-value i {
      font-size: 20px;
      color: var(--silver);
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--bg2);
      border-radius: 50%;
    }

    .who-value span {
      font-size: 15px;
      font-weight: 600;
    }

    .who-stats {
      display: flex;
      gap: 40px;
      margin-top: 10px;
      flex-wrap: wrap;
      padding-top: 24px;
      border-top: 1px solid var(--line);
    }

    .who-stat {
      text-align: center;
    }

    .who-stat h3 {
      font-size: 38px;
      font-family: var(--font-title);
      color: var(--silver);
      margin-bottom: 4px;
      background: linear-gradient(135deg, var(--silver), var(--silver-dark));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .who-stat span {
      color: var(--text2);
      font-size: 13px;
      font-weight: 500;
    }

    .who-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 32px;
      background: var(--silver);
      color: #fff;
      border-radius: var(--radius);
      font-weight: 700;
      transition: 0.35s;
      margin-top: 8px;
      font-size: 15px;
    }

    .who-btn:hover {
      background: var(--silver-dark);
      transform: translateX(-6px);
      gap: 16px;
    }

    .who-btn i {
      font-size: 14px;
    }

    @media (max-width: 992px) {
      .who-grid {
        grid-template-columns: 1fr;
        gap: 50px;
      }
      .who-image img {
        min-height: 300px;
      }
      .who-content {
        text-align: center;
      }
      .who-content .who-tag::before {
        display: none;
      }
      .who-values {
        justify-content: center;
      }
      .who-stats {
        justify-content: center;
      }
      .who-image-badge {
        bottom: 16px;
        right: 16px;
        font-size: 11px;
        padding: 10px 16px;
      }
    }

    @media (max-width: 600px) {
      #who {
        padding: 80px 0;
      }
      .who-content h2 {
        font-size: 34px;
      }
      .who-image img {
        min-height: 220px;
      }
      .who-values {
        grid-template-columns: 1fr;
      }
      .who-stats {
        gap: 24px;
      }
      .who-stat h3 {
        font-size: 30px;
      }
      .who-image-badge {
        bottom: 12px;
        right: 12px;
        font-size: 10px;
        padding: 8px 14px;
      }
      .who-image-badge i {
        font-size: 12px;
      }
    }

    /* ============================================================
       عقارات مميزة – Swiper.js
       ============================================================ */
    #featured {
      background: var(--bg2);
      padding: 100px 0;
      overflow: hidden;
    }

    .section-head {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-head small {
      display: inline-block;
      color: var(--silver);
      letter-spacing: 3px;
      font-size: 12px;
      margin-bottom: 12px;
      font-weight: 500;
    }

    .section-head h2 {
      font-size: clamp(30px, 4vw, 48px);
      font-family: var(--font-title);
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .section-head p {
      max-width: 580px;
      margin: 0 auto;
      color: var(--text2);
      font-size: 16px;
      line-height: 2;
    }

    .featured-swiper {
      padding: 10px 0 30px;
      overflow: visible !important;
    }

    @media (max-width: 600px) {
      .featured-swiper {
        padding-left: 16px;
        padding-right: 16px;
      }
    }

    .featured-swiper .swiper-wrapper {
      align-items: stretch;
    }

    .featured-swiper .swiper-slide {
      height: auto;
    }

    .featured-slide {
      height: 100%;
      background: var(--surface);
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--line);
      transition: 0.4s var(--transition);
      cursor: pointer;
      display: flex;
      flex-direction: column;
    }

    .featured-slide:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
    }

    .featured-slide-image {
      position: relative;
      overflow: hidden;
      height: 280px;
      cursor: zoom-in;
      flex-shrink: 0;
      background: var(--surface2);
    }

    .featured-slide-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 0.6s var(--transition);
      display: block;
    }

    .featured-slide:hover .featured-slide-image img {
      transform: scale(1.05);
    }

    .featured-slide-image .zoom-icon {
      position: absolute;
      bottom: 16px;
      left: 16px;
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 16px;
      opacity: 0;
      transform: scale(0.8);
      transition: 0.35s var(--transition);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .featured-slide:hover .zoom-icon {
      opacity: 1;
      transform: scale(1);
    }

    .featured-slide-body {
      padding: 24px 24px 28px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .featured-slide-body h3 {
      font-family: var(--font-title);
      font-size: 22px;
      margin-bottom: 6px;
    }

    .featured-slide-body .location {
      color: var(--text2);
      font-size: 14px;
      margin-bottom: 10px;
    }

    .featured-slide-body .price {
      color: var(--silver);
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .featured-slide-body .details-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 24px;
      background: var(--silver);
      color: #fff;
      border-radius: var(--radius);
      font-weight: 600;
      transition: 0.35s;
      font-size: 14px;
      margin-top: auto;
      align-self: flex-start;
    }

    .featured-slide-body .details-btn:hover {
      background: var(--silver-dark);
      gap: 14px;
    }

    .featured-swiper .swiper-button-prev,
    .featured-swiper .swiper-button-next {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--surface);
      border: 1px solid var(--line);
      color: var(--text2);
      transition: 0.35s;
      box-shadow: var(--shadow);
    }

    .featured-swiper .swiper-button-prev::after,
    .featured-swiper .swiper-button-next::after {
      font-size: 18px;
      font-weight: 700;
    }

    .featured-swiper .swiper-button-prev:hover,
    .featured-swiper .swiper-button-next:hover {
      background: var(--silver);
      color: #fff;
      border-color: var(--silver);
    }

    .featured-swiper .swiper-button-prev {
      right: 0;
      left: auto;
    }

    .featured-swiper .swiper-button-next {
      left: 0;
      right: auto;
    }

    @media (max-width: 768px) {
      .featured-swiper .swiper-button-prev,
      .featured-swiper .swiper-button-next {
        display: none;
      }
    }

    .featured-swiper .swiper-pagination {
      position: relative;
      margin-top: 30px;
      display: flex;
      justify-content: center;
      gap: 10px;
    }

    .featured-swiper .swiper-pagination-bullet {
      width: 10px;
      height: 10px;
      background: var(--line);
      opacity: 1;
      border-radius: 50%;
      transition: 0.4s var(--transition);
    }

    .featured-swiper .swiper-pagination-bullet-active {
      background: var(--silver);
      width: 28px;
      border-radius: 20px;
    }

    /* ============================================================
       الأسئلة الشائعة – FAQ
       ============================================================ */
    #faq {
      background: var(--bg);
      padding: 100px 0;
    }

    .faq-grid {
      max-width: 950px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid var(--line);
      padding: 20px 0;
      transition: 0.3s;
    }

    .faq-item:last-child {
      border-bottom: none;
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      padding: 6px 0;
      font-size: 19px;
      font-weight: 600;
      color: var(--text);
      transition: 0.3s;
      gap: 20px;
    }

    .faq-question:hover {
      color: var(--silver);
    }

    .faq-question span {
      flex: 1;
    }

    .faq-icon {
      font-size: 18px;
      color: var(--silver);
      transition: 0.4s var(--transition);
      flex-shrink: 0;
    }

    .faq-item.active .faq-icon {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
      color: var(--text2);
      line-height: 2;
      font-size: 16px;
    }

    .faq-item.active .faq-answer {
      max-height: 500px;
      padding-top: 18px;
    }

    .faq-answer strong {
      color: var(--silver);
      font-weight: 700;
    }

    @media (max-width: 600px) {
      .faq-question {
        font-size: 16px;
      }
      .faq-answer {
        font-size: 14px;
      }
    }

    /* ============================================================
       قسم تواصل معنا – تصميم راقي
       ============================================================ */
    #contact {
      background: var(--bg);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }

    #contact::before {
      content: "";
      position: absolute;
      bottom: -30%;
      left: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(192, 192, 192, 0.04), transparent 70%);
      border-radius: 50%;
      z-index: 0;
      animation: floatBg 15s ease-in-out infinite;
    }

    #contact::after {
      content: "";
      position: absolute;
      top: -20%;
      right: -5%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(192, 192, 192, 0.03), transparent 70%);
      border-radius: 50%;
      z-index: 0;
      animation: floatBg 18s ease-in-out infinite reverse;
    }

    .contact-wrapper {
      position: relative;
      z-index: 1;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .contact-form-box {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 40px 35px;
      box-shadow: var(--shadow);
      transition: 0.4s var(--transition);
    }

    .contact-form-box:hover {
      box-shadow: 0 30px 70px rgba(0, 0, 0, 0.06);
    }

    .contact-form-box .form-title {
      font-family: var(--font-title);
      font-size: 26px;
      margin-bottom: 6px;
    }

    .contact-form-box .form-subtitle {
      color: var(--text2);
      font-size: 14px;
      margin-bottom: 28px;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .contact-form .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .contact-form .form-group {
      position: relative;
    }

    .contact-form .form-group label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--text2);
      margin-bottom: 6px;
    }

    .contact-form .form-group input,
    .contact-form .form-group textarea {
      width: 100%;
      padding: 14px 18px;
      background: var(--bg);
      border: 1.5px solid var(--line);
      border-radius: var(--radius);
      color: var(--text);
      transition: 0.35s;
      font-family: inherit;
      font-size: 15px;
    }

    .contact-form .form-group input:focus,
    .contact-form .form-group textarea:focus {
      border-color: var(--silver);
      outline: none;
      background: var(--surface);
      box-shadow: 0 0 0 4px rgba(192, 192, 192, 0.08);
    }

    .contact-form .form-group textarea {
      min-height: 140px;
      resize: vertical;
    }

    .contact-form .form-group .input-icon {
      position: absolute;
      left: 16px;
      top: 42px;
      color: var(--text2);
      opacity: 0.4;
      font-size: 16px;
      pointer-events: none;
      transition: 0.3s;
    }

    .contact-form .form-group input:focus~.input-icon,
    .contact-form .form-group textarea:focus~.input-icon {
      opacity: 0.8;
      color: var(--silver);
    }

    .contact-form .form-group .input-icon-bottom {
      position: absolute;
      left: 16px;
      bottom: 16px;
      color: var(--text2);
      opacity: 0.4;
      font-size: 16px;
      pointer-events: none;
      transition: 0.3s;
    }

    .contact-form .form-group textarea:focus~.input-icon-bottom {
      opacity: 0.8;
      color: var(--silver);
    }

    .contact-btn {
      padding: 16px 32px;
      background: var(--silver);
      color: #fff;
      font-weight: 700;
      border-radius: var(--radius);
      transition: 0.35s;
      font-size: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      cursor: pointer;
      border: none;
      margin-top: 6px;
    }

    .contact-btn:hover {
      background: var(--silver-dark);
      transform: translateY(-2px);
      box-shadow: 0 12px 35px rgba(192, 192, 192, 0.25);
      gap: 16px;
    }

    .contact-info-box {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .contact-info-box .info-head {
      margin-bottom: 10px;
    }

    .contact-info-box .info-head h3 {
      font-family: var(--font-title);
      font-size: 30px;
      margin-bottom: 8px;
    }

    .contact-info-box .info-head p {
      color: var(--text2);
      font-size: 15px;
    }

    .contact-info-items {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .info-item {
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 18px 22px;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      transition: 0.4s var(--transition);
    }

    .info-item:hover {
      transform: translateX(-6px);
      border-color: var(--silver);
      box-shadow: var(--shadow);
    }

    .info-item .info-icon {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--bg2);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--silver);
      font-size: 20px;
      flex-shrink: 0;
      transition: 0.3s;
    }

    .info-item:hover .info-icon {
      background: var(--silver);
      color: #fff;
    }

    .info-item .info-text h4 {
      font-size: 16px;
      margin-bottom: 2px;
    }

    .info-item .info-text p {
      color: var(--text2);
      font-size: 14px;
    }

    .contact-social {
      margin-top: 10px;
      padding-top: 24px;
      border-top: 1px solid var(--line);
    }

    .contact-social h4 {
      font-size: 16px;
      margin-bottom: 14px;
    }

    .contact-social .social-links {
      display: flex;
      gap: 14px;
    }

    .contact-social .social-links a {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--surface);
      border: 1px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text2);
      font-size: 18px;
      transition: 0.35s;
    }

    .contact-social .social-links a:hover {
      background: var(--silver);
      color: #fff;
      border-color: var(--silver);
      transform: translateY(-4px);
      box-shadow: 0 8px 25px rgba(192, 192, 192, 0.2);
    }

    @media (max-width: 992px) {
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .contact-form-box {
        padding: 30px 24px;
      }
      .contact-form .form-row {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 600px) {
      .contact-form-box {
        padding: 24px 18px;
      }
      .contact-form-box .form-title {
        font-size: 22px;
      }
      .info-item {
        padding: 14px 16px;
      }
      .info-item .info-icon {
        width: 44px;
        height: 44px;
        font-size: 16px;
      }
      .contact-social .social-links a {
        width: 42px;
        height: 42px;
        font-size: 15px;
      }
      #contact {
        padding: 80px 0;
      }
    }

    /* ============================================================
       الفوتر
       ============================================================ */
    footer {
      background: #111;
      color: #fff;
      padding: 60px 0 30px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 40px;
    }

    .footer-logo {
      font-size: 28px;
      font-family: var(--font-title);
      margin-bottom: 12px;
      background: linear-gradient(120deg, #999, #ddd, #999);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }

    .footer-about {
      color: #bdbdbd;
      line-height: 2;
      font-size: 14px;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a {
      color: #bdbdbd;
      transition: 0.3s;
      font-size: 14px;
    }

    .footer-links a:hover {
      color: var(--silver);
      padding-right: 6px;
    }

    .footer-bottom {
      margin-top: 50px;
      padding-top: 18px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      text-align: center;
      color: #888;
      font-size: 13px;
    }

    @media (max-width: 992px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
      }
    }

    @media (max-width: 768px) {
      .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
      }
    }

    /* ============================================================
       زر العودة للأعلى
       ============================================================ */
    .to-top {
      position: fixed;
      left: 24px;
      bottom: 28px;
      width: 55px;
      height: 55px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--silver);
      color: #fff;
      border-radius: 50%;
      box-shadow: var(--shadow);
      opacity: 0;
      visibility: hidden;
      transition: 0.35s;
      z-index: 999;
    }

    .to-top.show {
      opacity: 1;
      visibility: visible;
    }

    .to-top:hover {
      transform: translateY(-4px);
    }

    /* ============================================================
       شات بوت
       ============================================================ */
    .chat-toggle {
      position: fixed;
      right: 24px;
      bottom: 28px;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--silver);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
      cursor: pointer;
      transition: 0.35s var(--transition);
      z-index: 999;
      border: 2px solid rgba(255, 255, 255, 0.15);
    }

    .chat-toggle:hover {
      transform: scale(1.08);
      background: var(--silver-dark);
    }

    .chat-toggle .fa-xmark {
      display: none;
    }

    .chat-toggle.active .fa-comment {
      display: none;
    }

    .chat-toggle.active .fa-xmark {
      display: block;
    }

    .chat-window {
      position: fixed;
      right: 24px;
      bottom: 100px;
      width: 380px;
      max-width: calc(100% - 48px);
      height: 500px;
      max-height: 70vh;
      background: var(--surface);
      border-radius: 16px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
      border: 1px solid var(--line);
      display: flex;
      flex-direction: column;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px) scale(0.95);
      transition: 0.4s var(--transition);
      z-index: 998;
      overflow: hidden;
    }

    .chat-window.active {
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
    }

    .chat-header {
      padding: 18px 22px;
      background: var(--silver);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-shrink: 0;
    }

    .chat-header-info {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .chat-header-info .chat-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }

    .chat-header-info .chat-name {
      font-weight: 700;
      font-size: 16px;
    }

    .chat-header-info .chat-status {
      font-size: 12px;
      opacity: 0.8;
      display: block;
    }

    .chat-header-close {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: 0.3s;
      font-size: 18px;
    }

    .chat-header-close:hover {
      background: rgba(255, 255, 255, 0.25);
      transform: rotate(90deg);
    }

    .chat-messages {
      flex: 1;
      padding: 18px 20px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 10px;
      background: var(--bg);
    }

    .chat-messages::-webkit-scrollbar {
      width: 4px;
    }

    .chat-messages::-webkit-scrollbar-thumb {
      background: var(--silver);
      border-radius: 10px;
    }

    .chat-message {
      max-width: 80%;
      padding: 12px 16px;
      border-radius: 12px;
      font-size: 14px;
      line-height: 1.7;
      animation: messageIn 0.3s var(--transition);
    }

    @keyframes messageIn {
      0% {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
      }
      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .chat-message.bot {
      background: var(--surface);
      border: 1px solid var(--line);
      color: var(--text);
      align-self: flex-start;
      border-bottom-right-radius: 4px;
    }

    .chat-message.user {
      background: var(--silver);
      color: #fff;
      align-self: flex-end;
      border-bottom-left-radius: 4px;
    }

    .chat-footer {
      padding: 14px 18px;
      border-top: 1px solid var(--line);
      display: flex;
      gap: 10px;
      flex-shrink: 0;
      background: var(--surface);
    }

    .chat-footer input {
      flex: 1;
      padding: 12px 16px;
      border: 1px solid var(--line);
      border-radius: 25px;
      outline: none;
      font-family: inherit;
      font-size: 14px;
      background: var(--bg);
      color: var(--text);
      transition: 0.3s;
    }

    .chat-footer input:focus {
      border-color: var(--silver);
    }

    .chat-footer input::placeholder {
      color: var(--text2);
    }

    .chat-footer .send-btn {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--silver);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: 0.3s;
      font-size: 18px;
      flex-shrink: 0;
    }

    .chat-footer .send-btn:hover {
      background: var(--silver-dark);
      transform: scale(1.05);
    }

    @media (max-width: 480px) {
      .chat-window {
        right: 10px;
        bottom: 85px;
        width: calc(100% - 20px);
        height: 60vh;
        max-height: 60vh;
        border-radius: 12px;
      }
      .chat-toggle {
        width: 54px;
        height: 54px;
        font-size: 22px;
        right: 16px;
        bottom: 20px;
      }
      .to-top {
        width: 48px;
        height: 48px;
        left: 16px;
        bottom: 20px;
        font-size: 18px;
      }
    }

    /* ============================================================
       المؤشر المخصص
       ============================================================ */
    .cursor {
      position: fixed;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--silver);
      pointer-events: none;
      z-index: 999999;
      transform: translate(-50%, -50%);
      transition: width 0.25s, height 0.25s, background 0.25s;
      display: none;
    }

    @media (pointer: fine) {
      .cursor {
        display: block;
      }
    }

    .cursor.active {
      width: 44px;
      height: 44px;
      background: rgba(192, 192, 192, 0.15);
      backdrop-filter: blur(4px);
    }