.SZA-wrapper {
    --sz-gold: #d8b245;
    --sz-gold-light: #e8c96a;
    --sz-gold-dark: #b8942e;
    --sz-black: #0a0a0a;
    --sz-dark: #111111;
    --sz-dark2: #1a1a1a;
    --sz-white: #ffffff;
    --sz-off-white: #f5f2ec;
    --sz-gray: #888888;
    --sz-light-gray: #e8e4dc;
    --sz-font-ar: 'Tajawal', sans-serif;
    --sz-font-display: 'Bebas Neue', sans-serif;
    --sz-font-body: 'DM Sans', sans-serif;
    font-family: var(--sz-font-ar);
    direction: rtl;
    background: var(--sz-black);
    color: var(--sz-white);
    overflow-x: hidden;
  }
 
  /* ===== HERO SECTION ===== */
  .SZA-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--sz-black);
  }
 
  .SZA-hero-bg {
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(ellipse 80% 60% at 30% 50%, rgba(216,178,69,0.12) 0%, transparent 60%),
      radial-gradient(ellipse 50% 80% at 80% 20%, rgba(216,178,69,0.06) 0%, transparent 50%),
      var(--sz-black);
  }
 
  .SZA-hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
      linear-gradient(rgba(216,178,69,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(216,178,69,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  }
 
  .SZA-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
  }
 
  .SZA-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(216,178,69,0.1);
    border: 1px solid rgba(216,178,69,0.3);
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 40px;
    animation: SZA-fadeUp 0.8s ease forwards;
    opacity: 0;
  }
 
  .SZA-hero-eyebrow span {
    font-size: 13px;
    color: var(--sz-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
  }
 
  .SZA-hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    background: var(--sz-gold);
    border-radius: 50%;
    animation: SZA-pulse 2s ease infinite;
  }
 
  .SZA-hero-title {
    font-family: var(--sz-font-ar);
    font-size: clamp(52px, 9vw, 110px);
    font-weight: 900;
    line-height: 1.05;
    margin: 0 0 30px;
    letter-spacing: -1px;
    animation: SZA-fadeUp 0.8s 0.15s ease forwards;
    opacity: 0;
  }
 
  .SZA-hero-title-gold {
    color: var(--sz-gold);
    position: relative;
    display: inline-block;
  }
 
  .SZA-hero-title-gold::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--sz-gold), transparent);
  }
 
  .SZA-hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto 50px;
    font-weight: 300;
    animation: SZA-fadeUp 0.8s 0.3s ease forwards;
    opacity: 0;
  }
 
  .SZA-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(216,178,69,0.15), rgba(216,178,69,0.05));
    border: 1px solid rgba(216,178,69,0.25);
    padding: 16px 32px;
    border-radius: 8px;
    animation: SZA-fadeUp 0.8s 0.45s ease forwards;
    opacity: 0;
  }
 
  .SZA-hero-badge-icon {
    width: 40px;
    height: 40px;
    background: var(--sz-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }
 
  .SZA-hero-badge-text {
    text-align: right;
  }
 
  .SZA-hero-badge-text strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--sz-gold);
    line-height: 1;
  }
 
  .SZA-hero-badge-text span {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
  }
 
  .SZA-hero-scroll {
    display: none;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    animation: SZA-fadeIn 1s 1s ease forwards;
  }
 
  .SZA-hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--sz-gold), transparent);
    animation: SZA-scrollLine 2s ease infinite;
  }
 
  .SZA-hero-scroll span {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--sz-gold);
    font-family: var(--sz-font-body);
    text-transform: uppercase;
    writing-mode: vertical-rl;
  }
 
  /* ===== WHO WE ARE SECTION ===== */
  .SZA-about {
    padding: 120px 0;
    position: relative;
    background: var(--sz-dark);
  }
 
  .SZA-about::before {
    content: 'من نحن';
    position: absolute;
    top: 40px;
    right: 5%;
    font-size: clamp(80px, 15vw, 200px);
    font-weight: 900;
    color: rgba(216,178,69,0.03);
    pointer-events: none;
    white-space: nowrap;
    line-height: 1;
  }
 
  .SZA-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }
 
  .SZA-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
 
  .SZA-section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
  }
 
  .SZA-section-label-line {
    width: 40px;
    height: 2px;
    background: var(--sz-gold);
  }
 
  .SZA-section-label span {
    font-size: 12px;
    color: var(--sz-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: var(--sz-font-body);
    font-weight: 500;
  }
 
  .SZA-about-heading {
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 30px;
  }
 
  .SZA-about-heading em {
    font-style: normal;
    color: var(--sz-gold);
  }
 
  .SZA-about-body {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255,255,255,0.65);
    font-weight: 300;
    margin: 0 0 20px;
  }
 
  .SZA-about-highlight {
    background: linear-gradient(135deg, rgba(216,178,69,0.12), rgba(216,178,69,0.04));
    border-right: 3px solid var(--sz-gold);
    padding: 20px 24px;
    border-radius: 4px;
    margin-top: 30px;
  }
 
  .SZA-about-highlight p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    font-weight: 400;
  }
 
  .SZA-about-visual {
    position: relative;
  }
 
  .SZA-about-card {
    background: var(--sz-dark2);
    border: 1px solid rgba(216,178,69,0.15);
    border-radius: 16px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
  }
 
  .SZA-about-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(216,178,69,0.12) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
  }
 
  .SZA-about-card-logo {
    font-family: var(--sz-font-display);
    font-size: 13px;
    letter-spacing: 4px;
    color: var(--sz-gold);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
 
  .SZA-about-card-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--sz-gold), var(--sz-gold-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  .SZA-about-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
 
  .SZA-stat-item {
    padding: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    transition: border-color 0.3s ease, background 0.3s ease;
  }
 
  .SZA-stat-item:hover {
    border-color: rgba(216,178,69,0.3);
    background: rgba(216,178,69,0.05);
  }
 
  .SZA-stat-num {
    font-size: 40px;
    font-weight: 900;
    color: var(--sz-gold);
    line-height: 1;
    margin-bottom: 6px;
    font-family: var(--sz-font-display);
    letter-spacing: 1px;
  }
 
  .SZA-stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
  }
 
  /* ===== VISION & MISSION ===== */
  .SZA-vm {
    padding: 120px 0;
    background: var(--sz-black);
    position: relative;
  }
 
  .SZA-vm-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(216,178,69,0.1);
    border: 1px solid rgba(216,178,69,0.15);
    border-radius: 20px;
    overflow: hidden;
  }
 
  .SZA-vm-card {
    background: var(--sz-dark);
    padding: 70px 60px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease;
  }
 
  .SZA-vm-card:hover {
    background: var(--sz-dark2);
  }
 
  .SZA-vm-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--sz-gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }
 
  .SZA-vm-card:hover::after {
    transform: scaleX(1);
  }
 
  .SZA-vm-number {
    font-family: var(--sz-font-display);
    font-size: 100px;
    color: rgba(216,178,69,0.06);
    line-height: 1;
    position: absolute;
    top: 20px;
    left: 30px;
    pointer-events: none;
  }
 
  .SZA-vm-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 28px;
  }
 
  .SZA-vm-icon-vision {
    background: linear-gradient(135deg, rgba(216,178,69,0.2), rgba(216,178,69,0.05));
    border: 1px solid rgba(216,178,69,0.3);
  }
 
  .SZA-vm-icon-mission {
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.1);
  }
 
  .SZA-vm-tag {
    font-size: 12px;
    color: var(--sz-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: var(--sz-font-body);
    font-weight: 500;
    margin-bottom: 20px;
    display: block;
  }
 
  .SZA-vm-title {
    font-size: 34px;
    font-weight: 800;
    margin: 0 0 20px;
    line-height: 1.2;
    color: white;
  }
 
  .SZA-vm-body {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    margin: 0;
  }
 
  /* ===== SERVICES SECTION ===== */
  .SZA-services {
    padding: 120px 0;
    background: var(--sz-dark);
  }
 
  .SZA-services-header {
    text-align: center;
    margin-bottom: 80px;
  }
 
  .SZA-services-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    margin: 16px 0 20px;
    line-height: 1.1;
  }
 
  .SZA-services-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.8;
  }
 
  .SZA-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
 
  .SZA-service-card {
    background: var(--sz-dark2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    cursor: default;
  }
 
  .SZA-service-card:hover {
    border-color: rgba(216,178,69,0.4);
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 40px rgba(216,178,69,0.08);
  }
 
  .SZA-service-card:hover .SZA-service-icon {
    background: linear-gradient(135deg, var(--sz-gold), var(--sz-gold-dark));
    border-color: var(--sz-gold);
  }
 
  .SZA-service-card:hover .SZA-service-icon svg {
    color: var(--sz-black);
  }
 
  .SZA-service-num {
    position: absolute;
    top: 20px;
    left: 24px;
    font-family: var(--sz-font-display);
    font-size: 52px;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    pointer-events: none;
  }
 
  .SZA-service-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    border: 1px solid rgba(216,178,69,0.25);
    background: rgba(216,178,69,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.35s ease;
  }
 
  .SZA-service-icon svg {
    width: 26px;
    height: 26px;
    color: var(--sz-gold);
    transition: color 0.35s ease;
  }
 
  .SZA-service-name {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.3;
  }
 
  .SZA-service-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin: 0;
  }
 
  /* Service card that spans full width */
  .SZA-service-card-wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 36px;
    align-items: center;
    padding: 40px 50px;
  }
 
  /* ===== WHY US SECTION ===== */
  .SZA-why {
    padding: 120px 0;
    background: var(--sz-black);
    position: relative;
    overflow: hidden;
  }
 
  .SZA-why::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(216,178,69,0.06) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
  }
 
  .SZA-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
 
  .SZA-why-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0 0;
    list-style: none;
    padding: 0;
  }
 
  .SZA-why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
  }
 
  .SZA-why-item:hover {
    background: rgba(216,178,69,0.05);
    border-color: rgba(216,178,69,0.2);
    transform: translateX(-4px);
  }
 
  .SZA-why-item-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(216,178,69,0.2), rgba(216,178,69,0.05));
    border: 1px solid rgba(216,178,69,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }
 
  .SZA-why-item-text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--sz-white);
  }
 
  .SZA-why-item-text span {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
  }
 
  .SZA-why-visual {
    position: relative;
  }
 
  .SZA-why-main-card {
    background: linear-gradient(145deg, var(--sz-dark2), var(--sz-dark));
    border: 1px solid rgba(216,178,69,0.2);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
 
  .SZA-why-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(216,178,69,0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
  }
 
  .SZA-why-main-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(216,178,69,0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-30%, 30%);
  }
 
  .SZA-why-main-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--sz-gold), var(--sz-gold-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    box-shadow: 0 20px 50px rgba(216,178,69,0.3);
  }
 
  .SZA-why-main-title {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 16px;
    line-height: 1.3;
  }
 
  .SZA-why-main-body {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255,255,255,0.55);
    margin: 0;
  }
 
  .SZA-why-tag {
    display: inline-block;
    background: rgba(216,178,69,0.15);
    border: 1px solid rgba(216,178,69,0.3);
    color: var(--sz-gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--sz-font-body);
    margin-top: 24px;
  }
 
  /* ===== CTA SECTION ===== */
  .SZA-cta {
    padding: 100px 0;
    background: var(--sz-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
 
  .SZA-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(ellipse 70% 50% at 50% 50%, rgba(216,178,69,0.08) 0%, transparent 60%);
    pointer-events: none;
  }
 
  .SZA-cta-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    margin: 16px 0 24px;
    line-height: 1.1;
  }
 
  .SZA-cta-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.55);
    max-width: 500px;
    margin: 0 auto 50px;
    line-height: 1.8;
  }
 
  .SZA-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
 
  .SZA-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--sz-gold), var(--sz-gold-dark));
    color: var(--sz-black);
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(216,178,69,0.3);
    font-family: var(--sz-font-ar);
  }
 
  .SZA-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(216,178,69,0.4);
    background: linear-gradient(135deg, var(--sz-gold-light), var(--sz-gold));
  }
 
  .SZA-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--sz-white);
    padding: 17px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--sz-font-ar);
  }
 
  .SZA-btn-secondary:hover {
    border-color: var(--sz-gold);
    color: var(--sz-gold);
    background: rgba(216,178,69,0.06);
  }
 
  .SZA-cta-contact {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
 
  .SZA-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.5);
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
  }
 
  .SZA-contact-item:hover {
    color: var(--sz-gold);
  }
 
  .SZA-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }
 
  /* ===== DIVIDER ===== */
  .SZA-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(216,178,69,0.2), transparent);
  }
 
  /* ===== ANIMATIONS ===== */
  @keyframes SZA-fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
 
  @keyframes SZA-fadeIn {
    from { opacity: 0; }
    to { opacity: 0.4; }
  }
 
  @keyframes SZA-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }
 
  @keyframes SZA-scrollLine {
    0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
    50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
  }
 
  @keyframes SZA-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }
 
  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .SZA-about-grid,
    .SZA-why-grid,
    .SZA-vm-inner {
      grid-template-columns: 1fr;
    }
 
    .SZA-services-grid {
      grid-template-columns: 1fr 1fr;
    }
 
    .SZA-service-card-wide {
      grid-column: span 2;
      grid-template-columns: 1fr;
    }
 
    .SZA-vm-card {
      padding: 50px 36px;
    }
 
    .SZA-about-grid {
      gap: 50px;
    }
 
    .SZA-why-grid {
      gap: 50px;
    }
  }
 
  @media (max-width: 600px) {
    .SZA-container {
      padding: 0 24px;
    }
 
    .SZA-services-grid {
      grid-template-columns: 1fr;
    }
 
    .SZA-service-card-wide {
      grid-column: span 1;
    }
 
    .SZA-cta-buttons {
      flex-direction: column;
    }
 
    .SZA-about-stat-grid {
      grid-template-columns: 1fr 1fr;
    }
  }