    :root {
      --fal-gold: #c9ae70;
      --fal-ink: #0c0c0d;
      --fal-deep: #0a0e14;
      --fal-deeper: #080b10;
      --fal-muted: #9fa6b2;
      --fal-white: #ffffff;
      --fal-border: #1b2430;
      --fal-font: "DIN Arabic", "DIN Next Arabic", "Cairo", system-ui,
        -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    }

    /* Elementor Compatibility Fixes */
    .fal-footer,
    .fal-footer * {
      box-sizing: border-box;
    }

    .fal-footer {
      width: 100%;
      background: var(--fal-deep);
      color: var(--fal-white);
      font-family: var(--fal-font);
      line-height: 1.5;
      /* Full width fix - removed 100vw causing overflow */
      position: relative;
    }
    .fal-footer a {
      color: var(--fal-gold);
      text-decoration: none;
      transition: color 0.2s ease;
    }
    .fal-footer a:hover {
      color: var(--fal-white);
    }

    .fal-foot__container {
      width: 100%;
      max-width: 100%;
      margin: 0;
      padding: clamp(28px, 5vw, 56px) clamp(16px, 5vw, 32px);
      display: grid;
      /* Adjusted for 3 columns layout */
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px clamp(20px, 5vw, 60px);
      align-items: flex-start;
    }
    .fal-col {
      min-width: 0;
    }

    /* Center Quick Links Column */
    .fal-col--links {
      text-align: center;
    }
    .fal-col--links .fal-h::after {
      margin: 8px auto 0;
    }

    /* عناوين الأعمدة */
    .fal-h {
      margin: 0 0 12px;
      font-weight: 900;
      font-size: clamp(18px, 2.2vw, 22px);
      color: var(--fal-white);
      position: relative;
    }
    .fal-h::after {
      content: "";
      display: block;
      width: 56px;
      height: 3px;
      background: var(--fal-gold);
      border-radius: 6px;
      margin-top: 8px;
    }

    .fal-text {
      color: #e6e8ec;
      line-height: 1.9;
      margin: 0 0 10px 0;
    }
    .fal-muted {
      color: var(--fal-muted);
    }
    .fal-links,
    .fal-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .fal-links a,
    .fal-list a {
      padding: 6px 0;
      display: inline-block;
    }
    .fal-address {
      margin: 6px 0 10px;
    }
    .fal-badge {
      display: inline-block;
      color: var(--fal-gold);
      font-weight: 800;
    }

    .fal-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 10px;
    }
    .fal-logo img {
      width: 56px;
      height: 56px;
      object-fit: contain;
      border-radius: 12px;
      background: #111;
    }
    .fal-brandname {
      font-weight: 900;
      font-size: 20px;
      color: var(--fal-white);
    }

    .fal-social {
      display: flex;
      gap: 12px;
      margin-top: 12px;
    }
    .fal-ico {
      width: 36px;
      height: 36px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--fal-border);
      color: #e6e8ec;
      transition: all 0.2s ease;
    }
    .fal-ico:hover {
      border-color: var(--fal-gold);
      color: var(--fal-gold);
      transform: translateY(-2px);
    }
    .fal-ico svg {
      width: 18px;
      height: 18px;
    }

    .fal-legal {
      background: var(--fal-deeper);
      border-top: 1px solid var(--fal-border);
      width: 100%;
    }
    .fal-legal__in {
      width: 100%;
      max-width: 100%;
      margin: 0;
      padding: 12px clamp(16px, 5vw, 32px);
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      justify-content: space-between;
      color: #c9cfda;
      font-size: 14px;
    }

    /* تحسينات الموبايل والتابلت */
    @media (max-width: 991px) {
      .fal-foot__container {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 40px 24px;
      }

      .fal-col {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .fal-h {
        font-size: 20px;
      }

      .fal-h::after {
        margin: 10px auto 0; /* توسيط الخط تحت العنوان */
      }

      .fal-logo {
        justify-content: center;
        margin-bottom: 15px;
      }

      .fal-text {
        font-size: 15px;
        max-width: 100%;
      }

      .fal-social {
        justify-content: center;
        gap: 16px;
        margin-top: 20px;
      }

      .fal-legal__in {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        justify-content: center;
      }

      .fal-links a,
      .fal-list a {
        padding: 8px 0; /* تكبير مساحة اللمس */
        font-size: 16px;
      }
    }