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

    :root {
      --navy: #001a35;
      --navy-mid: #002d5c;
      --navy-light: #0a4a7d;
      --sage: #4a8a72;
      --sage-light: #5b9a80;
      --sage-pale: #edf6f1;
      --white: #fbfffb;
      --surface: #f2f5f3;
      --mist: #e4eeea;
      --text: #001a35;
      --text-sec: #3d4d45;
      --text-ter: #4e7060;
      --border: rgba(0,26,53,.08);
      --border-med: rgba(0,26,53,.14);
      --shadow-sm: 0 1px 3px rgba(0,26,53,.06), 0 1px 2px rgba(0,26,53,.04);
      --shadow-md: 0 4px 12px rgba(0,26,53,.08), 0 2px 4px rgba(0,26,53,.05);
      --r-btn: 8px;
      --r-card: 8px;
      --r-sec: 14px;
      --t-fast: 150ms ease;
      --t-normal: 250ms ease;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: 'Cairo', sans-serif;
      background: var(--white);
      color: var(--text);
      direction: rtl;
      -webkit-font-smoothing: antialiased;
      -webkit-tap-highlight-color: transparent;
    }

    
    

    .page-hero {
      position: relative;
      overflow: hidden;
      background: var(--navy);
      padding: 128px 48px 72px;
      border-bottom: .5px solid rgba(251,255,251,.08);
    }
    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(74,138,114,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74,138,114,.04) 1px, transparent 1px);
      background-size: 48px 48px;
      pointer-events: none;
    }
    .hero-inner {
      position: relative;
      z-index: 1;
      max-width: 1080px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
      gap: 56px;
      align-items: end;
    }
    .hero-eyebrow,
    .sec-label {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .hero-eyebrow { margin-bottom: 24px; }
    .hero-eyebrow-line,
    .sec-label-line {
      width: 24px;
      height: 1.5px;
      background: var(--sage);
      flex-shrink: 0;
    }
    .hero-eyebrow-text,
    .sec-label-text {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
    }
    .hero-eyebrow-text { color: rgba(251,255,251,.45); }
    .sec-label-text { color: var(--text-ter); }
    h1 {
      font-size: clamp(32px, 5vw, 56px);
      font-weight: 900;
      color: var(--white);
      line-height: 1.3;
      margin-bottom: 18px;
    }
    h1 .accent { color: var(--sage); font-weight: 300; }
    .hero-copy {
      max-width: 620px;
      font-size: 15px;
      font-weight: 300;
      color: rgba(251,255,251,.68);
      line-height: 1.9;
      margin-bottom: 28px;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }
    .hero-info {
      border: .5px solid rgba(251,255,251,.1);
      border-radius: var(--r-card);
      background: rgba(0,45,92,.45);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      overflow: hidden;
    }
    .hero-info-row {
      display: grid;
      grid-template-columns: 38px 1fr;
      gap: 12px;
      padding: 16px 18px;
      border-bottom: .5px solid rgba(251,255,251,.08);
      align-items: center;
    }
    .hero-info-row:last-child { border-bottom: none; }
    .hero-info-icon {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      background: rgba(74,138,114,.15);
      border: .5px solid rgba(74,138,114,.25);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--sage-light);
      font-size: 13px;
      font-weight: 900;
    }
    .hero-info-title {
      font-size: 13px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 2px;
    }
    .hero-info-text {
      font-size: 11px;
      color: rgba(251,255,251,.45);
      line-height: 1.55;
    }

    .btn-primary,
    .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      border-radius: var(--r-btn);
      font-family: 'Cairo', sans-serif;
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast), border-color var(--t-fast);
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--sage);
      color: var(--white);
      padding: 11px 24px;
    }
    .btn-primary:hover {
      background: var(--sage-light);
      transform: translateY(-1px);
    }
    .btn-ghost {
      color: rgba(251,255,251,.68);
      border: .5px solid rgba(251,255,251,.16);
      padding: 10px 20px;
      background: transparent;
    }
    .btn-ghost:hover {
      color: var(--white);
      border-color: rgba(251,255,251,.28);
      transform: translateY(-1px);
    }

    .contact-main {
      background: var(--surface);
      padding: 64px 48px 72px;
    }
    .contact-inner {
      max-width: 1080px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 32px;
      align-items: start;
    }
    .form-card,
    .side-card {
      background: var(--white);
      border: .5px solid var(--border);
      border-radius: var(--r-card);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
    }
    .form-head {
      background: var(--navy);
      padding: 24px 28px;
      border-bottom: .5px solid rgba(251,255,251,.08);
    }
    .form-head-label {
      font-size: 10px;
      font-weight: 700;
      color: rgba(251,255,251,.35);
      letter-spacing: .0em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    .form-head h2 {
      font-size: 22px;
      font-weight: 900;
      color: var(--white);
      line-height: 1.3;
      margin-bottom: 6px;
    }
    .form-head p {
      font-size: 12px;
      color: rgba(251,255,251,.45);
      line-height: 1.7;
    }
    .form-body {
      padding: 28px;
    }
    .field-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .field {
      margin-bottom: 18px;
    }
    .field label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      color: var(--text-sec);
      margin-bottom: 6px;
    }
    .field label span { color: var(--sage); }
    .field input,
    .field textarea,
    .field select {
      width: 100%;
      padding: 11px 14px;
      border-radius: var(--r-btn);
      border: 1.5px solid var(--mist);
      font-family: 'Cairo', sans-serif;
      font-size: 13px;
      color: var(--text);
      background: var(--white);
      outline: none;
      transition: border-color var(--t-fast), box-shadow var(--t-fast);
      appearance: none;
      -webkit-appearance: none;
    }
    .field input:focus,
    .field textarea:focus,
    .field select:focus {
      border-color: var(--navy-light);
      box-shadow: 0 0 0 3px rgba(10,74,125,.07);
    }
    .field textarea {
      resize: vertical;
      min-height: 130px;
      line-height: 1.75;
    }
    .field-hint,
    .field-error {
      font-size: 10px;
      line-height: 1.5;
      margin-top: 5px;
    }
    .field-hint { color: var(--text-ter); }
    .field-error { color: #c0392b; display: none; }
    .field.error input,
    .field.error textarea,
    .field.error select { border-color: #c0392b; }
    .field.error .field-error { display: block; }
    .form-message {
      display: none;
      font-size: 12px;
      font-weight: 700;
      padding: 12px 16px;
      border-radius: var(--r-btn);
      margin-top: 14px;
      line-height: 1.7;
    }
    .form-message.show { display: block; }
    .form-message.success {
      background: var(--sage-pale);
      color: var(--sage);
      border: 1px solid rgba(74,138,114,.25);
    }
    .form-message.error {
      background: rgba(192,57,43,.08);
      color: #c0392b;
      border: 1px solid rgba(192,57,43,.25);
    }
    .form-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 22px;
      flex-wrap: wrap;
    }
    .form-actions .btn-primary {
      min-width: 180px;
    }
    .form-note {
      font-size: 11px;
      color: var(--text-ter);
      line-height: 1.7;
      margin-top: 12px;
    }

    .side-stack {
      display: grid;
      gap: 16px;
      position: sticky;
      top: 80px;
    }
    .side-card-head {
      padding: 13px 18px;
      background: var(--surface);
      border-bottom: .5px solid var(--border);
      font-size: 10px;
      font-weight: 700;
      color: var(--text-ter);
      letter-spacing: .0em;
      text-transform: uppercase;
    }
    .side-card-body {
      padding: 16px 18px;
    }
    .contact-link {
      display: grid;
      grid-template-columns: 38px 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 13px 0;
      border-bottom: .5px solid var(--border);
      text-decoration: none;
    }
    .contact-link:last-child { border-bottom: none; }
    .contact-icon {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: var(--sage-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--sage);
      font-size: 13px;
      font-weight: 900;
    }
    .contact-label {
      font-size: 10px;
      font-weight: 700;
      color: var(--text-ter);
      letter-spacing: .0em;
      text-transform: uppercase;
      margin-bottom: 2px;
    }
    .contact-value {
      font-size: 13px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.4;
    }
    .contact-desc {
      font-size: 11px;
      color: var(--text-ter);
      line-height: 1.5;
      margin-top: 2px;
    }
    .contact-arrow {
      color: var(--text-ter);
      font-size: 16px;
      transition: transform var(--t-fast);
    }
    .contact-link:hover .contact-arrow { transform: translateX(-4px); }
    .info-list {
      list-style: none;
      display: grid;
      gap: 10px;
    }
    .info-list li {
      position: relative;
      padding-right: 14px;
      color: var(--text-sec);
      font-size: 12px;
      line-height: 1.7;
    }
    .info-list li::before {
      content: '';
      position: absolute;
      right: 0;
      top: .85em;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--sage);
    }
    .process-item {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 10px;
      align-items: start;
      padding: 10px 0;
      border-bottom: .5px solid var(--border);
    }
    .process-item:last-child { border-bottom: none; }
    .process-num {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--navy);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: 700;
      margin-top: 2px;
    }
    .process-text {
      font-size: 12px;
      color: var(--text-sec);
      line-height: 1.7;
    }

    .cta-sec {
      background: var(--navy);
      padding: 68px 48px;
      text-align: center;
      border-top: .5px solid rgba(251,255,251,.06);
    }
    .cta-sec-inner {
      max-width: 680px;
      margin: 0 auto;
    }
    .cta-sec h2 {
      font-size: clamp(24px, 4vw, 38px);
      font-weight: 900;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 14px;
    }
    .cta-sec h2 .accent { color: var(--sage); font-weight: 300; }
    .cta-sec p {
      font-size: 14px;
      color: rgba(251,255,251,.52);
      line-height: 1.8;
      margin-bottom: 30px;
    }

    
    

    @media (max-width: 960px) {
      .hero-inner,
      .contact-inner { grid-template-columns: 1fr; }
      .side-stack { grid-template-columns: 1fr 1fr; }
      .side-card:first-child { grid-column: 1 / -1; }
    }

    @media (max-width: 900px) {
      .page-hero { padding: 112px 24px 56px; }
      .contact-main { padding: 52px 24px 60px; }
      .cta-sec { padding: 60px 24px; }
      

      /* ترتيب الهاتف: معلومات التواصل، ثم تفاصيل الطلب، ثم بعد استلام الطلب */
      .contact-inner {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
      }
      .side-stack {
        display: contents;
      }
      .loc-group { order: 1; }
      .form-card { order: 2; }
      .side-card { order: 3; }
    }

    @media (max-width: 560px) {
      .page-hero { padding: 96px 20px 44px; }
      h1 { font-size: 32px; }
      .hero-copy { font-size: 14px; }
      .hero-actions,
      .form-actions {
        flex-direction: column;
        align-items: stretch;
      }
      .btn-primary,
      .btn-ghost { width: 100%; }
      .contact-main { padding: 44px 20px 52px; }
      .form-head,
      .form-body { padding: 22px 18px; }
      .field-row,
      .side-stack { grid-template-columns: 1fr; }
      
    }
    

.loc-group {
  display:flex;
  flex-direction:column;
  gap:0;
  border-radius:var(--r-card);
  overflow:hidden;
  border:.5px solid var(--border-med);
  box-shadow:var(--shadow-sm);
}

.loc-group-header {
  background:var(--navy);
  padding:10px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.loc-group-title {
  font-size:11px;
  font-weight:700;
  color:rgba(251,255,251,.75);
}

.loc-group-badge {
  font-size:10px;
  font-weight:700;
  background:rgba(74,138,114,.2);
  color:var(--sage-light);
  border-radius:20px;
  padding:2px 10px;
}

.channel-card {
  background:var(--white);
  border-radius:var(--r-card);
  border:.5px solid var(--border-med);
  padding:20px 22px;
  display:flex;
  align-items:center;
  gap:16px;
  text-decoration:none;
  transition:box-shadow var(--t-normal),border-color var(--t-normal),transform var(--t-normal);
  box-shadow:var(--shadow-sm);
}

.loc-group .channel-card {
  border-radius:0;
  border:none;
  border-top:.5px solid var(--border);
  box-shadow:none;
}

.channel-icon {
  width:44px;
  height:44px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.channel-icon.wa {
  background:#e8f5ee;
}

.channel-icon.em {
  background:var(--surface);
}

.channel-info {
  flex:1;
}

.channel-label {
  font-size:10px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.0em;
  color:var(--text-ter);
}

.channel-value {
  font-size:14px;
  font-weight:700;
  color:var(--navy);
}

.channel-desc {
  font-size:11px;
  color:var(--text-ter);
}

.channel-arrow {
  font-size:16px;
  color:var(--text-ter);
  transition: transform var(--t-fast);
}

.channel-card:hover .channel-arrow {
  transform: translateX(-4px);
}
.channel-icon {
  position: relative;
}

.flag {
  position: absolute;
  top: -6px;
  right: -6px;
  font-size: 12px;
  background: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,.1);
}
  
