  :root {
    --gold: #1A1A1A;
    --gold-light: #333333;
    --gold-dark: #000000;
    --navy: #FFFFFF;
    --navy-mid: #F5F5F5;
    --navy-light: #EBEBEB;
    --white: #111111;
    --off-white: #222222;
    --text-muted: #666666;
    --border: rgba(0,0,0,0.12);

    /* ألوان النصوص المميزة */
    --heading-xl: #0A0A0A;      /* عناوين رئيسية كبيرة - أسود قوي */
    --heading-lg: #1A1A1A;      /* عناوين sections - أسود داكن */
    --heading-md: #222222;      /* عناوين كروت - رمادي داكن جداً */
    --body-text: #4A4A4A;       /* نصوص الفقرات - رمادي متوسط */
    --small-text: #7A7A7A;      /* نصوص صغيرة - رمادي فاتح */
    --hint-text: #9E9E9E;       /* نصوص تلميح - رمادي خفيف جداً */
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
  }

  body {
    font-family: 'Tajawal', sans-serif;
    background: var(--navy);
    color: var(--heading-lg);
    direction: rtl;
    /* إصلاح حرف الياء - line-height كافٍ */
    line-height: 1.9;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; right: 0; left: 0;
    z-index: 1000;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
    background: #FFFFFF;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  }

  .logo {
    font-family: 'Tajawal', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #111111;
    letter-spacing: -0.5px;
    text-decoration: none;
  }

  .logo span { color: #888888; }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    color: #333333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
    line-height: 2;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 1.5px;
    background: #000000;
    transition: width 0.3s;
  }

  .nav-links a:hover { color: #000000; }
  .nav-links a:hover::after { width: 100%; }

  .nav-links.nav-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 75px;
    right: 0;
    left: 0;
    background: rgb(22 21 21 / 99%);
    padding: 24px 5%;
    gap: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }

  .nav-links.nav-open a { color: #FFFFFF; }

  .nav-cta {
    background: #111111 !important;
    color: #FFFFFF !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px !important;
    transition: background 0.3s, transform 0.2s !important;
  }

  .nav-cta:hover { background: #333333 !important; transform: translateY(-1px); }
  .nav-cta::after { display: none !important; }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 5% 160px;
    position: relative;
    overflow: hidden;
    background: #FFFFFF;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 60% at 80% 50%, rgba(0,0,0,0.04) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0,0,0,0.03) 0%, transparent 60%);
    pointer-events: none;
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }

  .hero-content {
    position: relative;
    max-width: 680px;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.15);
    color: #333333;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 32px;
    animation: fadeDown 0.8s ease both;
    /* إصلاح الياء */
    line-height: 2;
  }

  .hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #111111;
    animation: pulse 2s infinite;
    flex-shrink: 0;
  }

  /* العناوين الرئيسية */
  .hero h1 {
    font-family: 'Tajawal', sans-serif;
    font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 900;
    line-height: 1.35;         /* إصلاح الياء في العناوين */
    margin-bottom: 24px;
    color: var(--heading-xl);
    animation: fadeUp 0.8s 0.1s ease both;
  }

  .hero h1 .accent {
    color: #2A2A2A;
    position: relative;
    display: inline-block;
  }

  .hero h1 .accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: #000000;
    border-radius: 2px;
  }

  /* نصوص فقرات Hero */
  .hero p {
    font-size: 17px;
    color: var(--body-text);
    line-height: 1.95;          /* إصلاح الياء */
    max-width: 520px;
    margin-bottom: 44px;
    font-weight: 400;
    animation: fadeUp 0.8s 0.2s ease both;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.3s ease both;
  }

  .btn-primary {
    background: #111111;
    color: #FFFFFF;
    padding: 15px 36px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
  }

  .btn-primary:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  }

  .btn-outline {
    border: 1.5px solid #444444;
    color: #222222;
    padding: 15px 36px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
  }

  .btn-outline:hover {
    background: rgba(0,0,0,0.06);
    border-color: #000000;
  }

  .hero-stats {
    position: absolute;
    bottom: 48px;
    left: 5%;
    right: 5%;
    display: flex;
    gap: 40px;
    animation: fadeUp 0.8s 0.5s ease both;
  }

  .stat-item { display: flex; flex-direction: column; }

  .stat-num {
    font-family: 'Tajawal', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--heading-xl);
    line-height: 1.3;
  }

  .stat-label {
    font-size: 13px;
    color: var(--small-text);
    margin-top: 4px;
    line-height: 1.7;
  }

  .stat-divider {
    width: 1px;
    background: rgba(0,0,0,0.15);
    align-self: stretch;
  }

  /* SECTION BASE */
  section { padding: 80px 5%; }

  @media (max-width: 768px) { section { padding: 60px 16px; } }

  /* عناوين sections */
  .section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--small-text);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 2;
  }

  .section-label::before {
    content: '';
    width: 30px;
    height: 1.5px;
    background: #AAAAAA;
    flex-shrink: 0;
  }

  .section-title {
    font-family: 'Tajawal', sans-serif;
    font-size: clamp(26px, 3.5vw, 46px);
    font-weight: 900;
    line-height: 1.4;           /* إصلاح الياء في عناوين sections */
    margin-bottom: 16px;
    color: var(--heading-xl);
  }

  .section-sub {
    font-size: 16px;
    color: var(--body-text);
    line-height: 1.95;           /* إصلاح الياء */
    max-width: 560px;
    font-weight: 400;
  }

  /* ABOUT */
  .about { background: #F5F5F5; }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-visual {
    position: relative;
    height: 500px;
  }

  .about-card {
    position: absolute;
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  }

  .about-card-main {
    width: 75%;
    height: 380px;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #FFFFFF, #F0F0F0);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
  }

  .about-card-main .big-num {
    font-family: 'Tajawal', sans-serif;
    font-size: 80px;
    font-weight: 900;
    color: #000000;
    line-height: 1;
    opacity: 0.06;
    position: absolute;
    top: 20px;
    left: 20px;
  }

  /* عنوان داخل البطاقة */
  .about-card-main h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--heading-xl);
    line-height: 1.5;
  }

  /* نص صغير داخل البطاقة */
  .about-card-main p {
    font-size: 14px;
    color: var(--small-text);
    font-weight: 400;
    line-height: 1.85;
  }

  .about-card-float {
    width: 55%;
    height: 160px;
    bottom: -22px;
    left: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    background: #111111;
    border-color: #000000;
  }

  .float-icon { font-size: 24px; margin-bottom: 2px; }

  .float-title {
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.6;
  }

  .float-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
  }

  .about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .about-feat { display: flex; gap: 14px; align-items: flex-start; }

  .feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }

  .feat-text h4 {
    font-size: 14px;
    font-weight: 800;
    color: var(--heading-md);
    margin-bottom: 5px;
    line-height: 1.6;
  }

  .feat-text p {
    font-size: 13px;
    color: var(--small-text);
    line-height: 1.85;
  }

  /* SERVICES */
  .services { background: #FFFFFF; }

  .services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .service-card {
    background: #F8F8F8;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 20px;
    padding: 36px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .service-card:hover {
    border-color: rgba(0,0,0,0.22);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.1);
    background: #FFFFFF;
  }

  .service-num {
    font-family: 'Tajawal', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: rgba(0,0,0,0.05);
    position: absolute;
    top: 20px;
    left: 24px;
    line-height: 1;
  }

  .service-icon {
    width: 56px;
    height: 56px;
    background: #111111;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
  }

  .service-card:hover .service-icon { background: #000000; transform: scale(1.05); }

  /* عنوان الكرت */
  .service-card h3 {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    color: var(--heading-md);
    line-height: 1.5;
  }

  /* نص الكرت */
  .service-card p {
    font-size: 14px;
    color: var(--body-text);
    line-height: 1.95;
    position: relative;
    z-index: 1;
    font-weight: 400;
  }

  /* OFFERS */
  .offers {
    background: #111111;
    position: relative;
    overflow: hidden;
  }

  .offers::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    pointer-events: none;
  }

  .offers-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
  }

  .offers .section-label { color: rgba(255,255,255,0.5); }
  .offers .section-label::before { background: rgba(255,255,255,0.3); }
  .offers .section-title { color: #FFFFFF; }
  .offers .section-sub { color: rgba(255,255,255,0.65); }

  .offers-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 36px;
  }

  .offer-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    transition: all 0.3s;
  }

  .offer-item:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
  }

  .offer-check {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #000000;
    font-size: 14px;
    font-weight: 900;
  }

  /* نص عروض */
  .offer-item span {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
  }

  .offer-item .offer-badge {
    margin-right: auto;
    background: #FFFFFF;
    color: #000000;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .big-promo-card {
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .promo-num {
    font-family: 'Tajawal', sans-serif;
    font-size: 90px;
    font-weight: 900;
    color: var(--heading-xl);
    line-height: 1.1;
    margin-bottom: 8px;
  }

  .promo-label {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--heading-md);
    line-height: 1.5;
  }

  .promo-sub {
    font-size: 14px;
    color: var(--body-text);
    margin-bottom: 32px;
    line-height: 1.95;
    font-weight: 400;
  }

  /* TESTIMONIALS */
  .testimonials { background: #F5F5F5; }

  .testimonials-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .testi-card {
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  }

  .testi-card:hover {
    border-color: rgba(0,0,0,0.18);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    transform: translateY(-4px);
  }

  .stars {
    color: #333333;
    font-size: 15px;
    margin-bottom: 16px;
    letter-spacing: 2px;
  }

  /* نص الشهادة */
  .testi-text {
    font-size: 14px;
    color: var(--body-text);
    line-height: 1.95;
    margin-bottom: 22px;
    font-weight: 400;
  }

  .testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 18px;
  }

  .author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
    flex-shrink: 0;
  }

  /* اسم صاحب الشهادة */
  .author-name {
    font-size: 14px;
    font-weight: 800;
    color: var(--heading-md);
    line-height: 1.5;
  }

  /* منصب صاحب الشهادة */
  .author-title {
    font-size: 12px;
    color: var(--hint-text);
    line-height: 1.7;
  }

  /* WHY US */
  .why-us { background: #FFFFFF; }

  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .why-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
  }

  .why-item { display: flex; gap: 20px; }

  .why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
  }

  /* عنوان why */
  .why-text h4 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--heading-md);
    line-height: 1.5;
  }

  /* نص why */
  .why-text p {
    font-size: 14px;
    color: var(--body-text);
    line-height: 1.95;
    font-weight: 400;
  }

  .why-visual {
    background: #111111;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 44px 32px;
  }

  .why-visual-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: right;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
  }

  .progress-item { margin-bottom: 26px; }

  .progress-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 13px;
  }

  .progress-label {
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
  }

  .progress-val {
    color: #FFFFFF;
    font-weight: 800;
  }

  .progress-bar {
    height: 5px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    overflow: hidden;
  }

  .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #555555, #FFFFFF);
    border-radius: 50px;
  }

  .why-stats-row {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
  }

  .why-stat-num {
    font-family: 'Tajawal', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.3;
  }

  .why-stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    margin-top: 4px;
    line-height: 1.6;
  }

  /* CONTACT */
  .contact-section { background: #F5F5F5; }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
  }

  .contact-info { margin-top: 36px; }

  .contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
    align-items: flex-start;
  }

  .contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }

  /* عنوان معلومات التواصل */
  .contact-detail strong {
    display: block;
    font-size: 12px;
    color: var(--hint-text);
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.7;
  }

  /* قيمة معلومات التواصل */
  .contact-detail p {
    font-size: 15px;
    color: var(--heading-md);
    font-weight: 700;
    line-height: 1.7;
  }

  /* بطاقة واتساب */
  .contact-form {
    background: #111111;
    border-radius: 24px;
    padding: 44px 32px;
    text-align: center;
    width: 100%;
  }

  .wa-icon-circle {
    width: 80px;
    height: 80px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 0 0 10px rgba(37,211,102,0.08);
  }

  /* عنوان واتساب */
  .wa-title {
    font-family: 'Tajawal', sans-serif;
    font-size: 23px;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.45;
  }

  /* وصف واتساب */
  .wa-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.95;
    margin-bottom: 28px;
    font-weight: 400;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(37,211,102,0.25);
    width: 100%;
    line-height: 1.5;
  }

  .wa-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  }

  .wa-availability {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-top: 12px;
    line-height: 1.7;
  }

  .wa-stats {
    display: flex;
    justify-content: center;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    gap: 0;
  }

  .wa-stat-item {
    flex: 1;
    text-align: center;
  }

  .wa-stat-item + .wa-stat-item {
    border-right: 1px solid rgba(255,255,255,0.1);
  }

  .wa-stat-num {
    font-family: 'Tajawal', sans-serif;
    font-size: 17px;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.4;
  }

  .wa-stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    margin-top: 3px;
    line-height: 1.6;
  }

  /* FOOTER */
  footer {
    background: #0A0A0A;
    padding: 60px 5% 30px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }

  .footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.95;
    margin-top: 14px;
    font-weight: 400;
  }

  .footer-brand .logo { color: #FFFFFF; }
  .footer-brand .logo span { color: rgba(255,255,255,0.4); }

  .footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    margin-bottom: 18px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.6;
  }

  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 11px; }
  .footer-col ul li a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    font-weight: 400;
    line-height: 1.8;
  }
  .footer-col ul li a:hover { color: rgba(255,255,255,0.85); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    flex-wrap: wrap;
    gap: 12px;
    line-height: 1.8;
  }

  .social-links { display: flex; gap: 10px; }

  .social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    color: rgba(255,255,255,0.7);
  }

  .social-link:hover {
    background: rgba(255,255,255,0.15);
    color: #FFFFFF;
  }

  /* WHATSAPP FLOAT */
  .wa-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37,211,102,0.4);
    z-index: 999;
    transition: transform 0.3s;
    animation: pulse-green 2.5s infinite;
  }

  .wa-float:hover { transform: scale(1.1); }

  /* HAMBURGER */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }

  .hamburger span {
    width: 24px;
    height: 2px;
    background: #333333;
    border-radius: 2px;
    transition: all 0.3s;
  }

  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ANIMATIONS */
  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }

  @keyframes pulse-green {
    0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 8px 40px rgba(37,211,102,0.7); }
  }

  .reveal { opacity: 1; transform: none; }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-visual { height: 320px; }
    .offers-inner { grid-template-columns: 1fr; }
    .big-promo-card { padding: 36px; }
  }

  @media (max-width: 768px) {
    nav { padding: 0 16px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .services-grid { grid-template-columns: 1fr; gap: 16px; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-brand, .footer-col { text-align: center; }
    .social-links { justify-content: center; }
    .footer-col ul { padding: 0; }
    .footer-bottom { justify-content: center; text-align: center; }

    .hero {
      padding: 100px 16px 48px;
      text-align: center;
      min-height: auto;
      display: block;
    }
    .hero-content { max-width: 100%; position: relative; }
    .hero-actions { justify-content: center; }
    .hero h1 { font-size: clamp(30px, 8vw, 42px); }

    /* الأرقام - تحويلها من absolute إلى ضمن التدفق الطبيعي */
    .hero-stats {
      position: relative;
      bottom: auto;
      left: auto;
      right: auto;
      margin-top: 36px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      width: 100%;
      animation: none;
    }
    .stat-item {
      background: rgba(0,0,0,0.03);
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: 12px;
      padding: 14px 12px;
      align-items: center;
    }
    .stat-num { font-size: 28px; }
    .stat-label { font-size: 12px; margin-top: 2px; }
    .stat-divider { display: none; }

    .about-features { grid-template-columns: 1fr; }
    .about-visual { height: auto; display: flex; flex-direction: column; gap: 16px; }
    .about-card { position: relative; width: 100% !important; height: auto !important; bottom: auto !important; left: auto !important; right: auto !important; top: auto !important; }
    .about-card-main { min-height: 180px; }
    .about-card-float { min-height: 100px; }

    .services-header { flex-direction: column; text-align: center; gap: 20px; }
    .offers-inner { grid-template-columns: 1fr; gap: 40px; }
    .big-promo-card { padding: 30px 20px; }
    .promo-num { font-size: 72px; }

    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-form { padding: 32px 20px; }

    .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .why-visual { padding: 32px 20px; }
  }
