/* ==============================================================================
   مكتب أبو ناصر للخدمات العامة - تصميم مستوحى من الهوية الوطنية الراقية
   الألوان: Terracotta & Warm Camel Gold + Deep Forest Slate + Ivory White
   الخطوط: Readex Pro & Cairo
   ============================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800;900&family=Readex+Pro:wght@300;400;500;600;700;800&display=swap');

:root {
  /* الخطوط */
  --font-heading: 'Cairo', system-ui, -apple-system, sans-serif;
  --font-body: 'Readex Pro', system-ui, -apple-system, sans-serif;

  /* لوحة الألوان المستوحاة من التصميم المرفق */
  --color-terracotta: #a8653c;       /* بني فخاري / ترابي سعودي دافئ */
  --color-terracotta-hover: #93532d;
  --color-terracotta-light: #f7ede6;
  --color-camel: #c48255;
  --color-dark-forest: #122421;      /* زيتي فاحم / كحلي غامق */
  --color-dark-card: #182e2a;
  --color-dark-pill: #1a2522;
  --color-whatsapp: #22c55e;
  
  /* خلفيات ونصوص */
  --bg-page: #fcfbfa;               /* عاجي فاتح ونظيف جداً */
  --bg-surface: #ffffff;            /* بطاقات بيضاء نقية */
  --bg-surface-alt: #f7f5f2;        /* خلفيات رمادية دافئة */
  --text-dark: #1a2421;             /* نصوص سوداء دافئة */
  --text-muted: #54605b;            /* نصوص ثانوية واضحة */
  --text-light: #87948f;
  
  /* الحدود والظلال */
  --border-subtle: #eae6e1;
  --border-terracotta: rgba(168, 101, 60, 0.25);
  --shadow-sm: 0 3px 12px rgba(18, 36, 33, 0.04);
  --shadow-md: 0 8px 25px rgba(18, 36, 33, 0.07);
  --shadow-lg: 0 16px 40px rgba(18, 36, 33, 0.1);
  --shadow-terracotta: 0 8px 24px rgba(168, 101, 60, 0.28);

  /* الاستدارات */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==============================================================================
   القواعد الأساسية وإعادة الضبط
   ============================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  direction: rtl;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-muted);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 800;
  line-height: 1.35;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ==============================================================================
   الهيدر الرئيسي (Main Header)
   ============================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 990;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-normal);
}

.site-header.is-scrolled {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 82px;
}

/* شعار وهوية المكتب في الهيدر */
.brand-identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.brand-main-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.3px;
  line-height: 1.1;
}

.brand-sub-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.brand-sub-text {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1.8px;
}

.brand-accent-line {
  display: inline-block;
  width: 32px;
  height: 3px;
  background: var(--color-terracotta);
  border-radius: var(--radius-full);
}

/* زر الواتساب الداكن الأنيق في الهيدر */
.header-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--color-dark-pill);
  color: #ffffff;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: var(--transition-normal);
}

.header-contact-pill:hover {
  transform: translateY(-2px);
  background: #111a18;
  color: #ffffff;
}

.pill-arrow {
  color: #9eb1ab;
  font-size: 0.85rem;
}

.pill-content {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.pill-label {
  font-size: 0.72rem;
  color: #cbd5e1;
}

.pill-phone {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  direction: ltr;
}

.pill-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ade80;
  font-size: 1.1rem;
}

/* ==============================================================================
   قسم البطل الترحيبي (Hero Section - مطابق للتصميم المرفق)
   ============================================================================== */
.hero-section {
  padding: 4rem 0 4.5rem;
  position: relative;
  background: linear-gradient(180deg, #fcfbfa 0%, #f7f5f1 100%);
  border-bottom: 1px solid var(--border-subtle);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 4rem;
}

/* العمود البصري (يسار في RTL / صورة المكتب والأفق) */
.hero-visual-col {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-main-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* شريط الزاوية الترابي */
.hero-diagonal-accent {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 120px;
  height: 120px;
  background: var(--color-terracotta);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.85;
}

/* علامة البراند العائمة أعلى الصورة */
.hero-floating-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(18, 36, 33, 0.78);
  backdrop-filter: blur(8px);
  border-right: 3px solid var(--color-terracotta);
  color: #ffffff;
  padding: 0.75rem 1.15rem;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  line-height: 1.4;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.hero-floating-tag span {
  display: block;
  font-weight: 700;
  color: #f7ede6;
}

.hero-floating-tag small {
  color: #cbd5e1;
  font-size: 0.75rem;
}

/* العمود النصي (يمين في RTL) */
.hero-text-col {
  display: flex;
  flex-direction: column;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-terracotta);
  margin-bottom: 0.75rem;
}

.hero-headline {
  font-size: 2.85rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 1.35rem;
  letter-spacing: -0.5px;
}

.hero-description {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.25rem;
  max-width: 580px;
}

.hero-actions-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.1rem;
}

/* أزرار الإجراء */
.btn-terracotta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: var(--color-terracotta);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-terracotta);
  transition: var(--transition-normal);
}

.btn-terracotta:hover {
  background: var(--color-terracotta-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(168, 101, 60, 0.35);
  color: #ffffff;
}

.btn-outline-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: transparent;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.82rem 1.65rem;
  border-radius: var(--radius-full);
  border: 1.5px solid #d4cdc5;
  transition: var(--transition-normal);
}

.btn-outline-pill:hover {
  border-color: var(--color-terracotta);
  color: var(--color-terracotta);
  background: var(--color-terracotta-light);
  transform: translateY(-2px);
}

/* ==============================================================================
   قسم رحلة إنجاز خدمتك (Process Steps - مطابق للرسم التوضيحي بالصورة)
   ============================================================================== */
.process-section {
  padding: 4.5rem 0;
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
}

.process-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.process-title {
  font-size: 2.15rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.process-subtitle {
  font-size: 1rem;
  color: var(--text-light);
}

.process-steps-track {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  gap: 1rem;
}

.process-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
}

.step-circle-badge {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-terracotta-light);
  border: 2px solid var(--border-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-terracotta);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: var(--transition-normal);
}

.process-step-item:hover .step-circle-badge {
  background: var(--color-terracotta);
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: var(--shadow-terracotta);
}

.step-number-tag {
  position: absolute;
  bottom: -6px;
  background: #ffffff;
  border: 1px solid var(--color-terracotta);
  color: var(--color-terracotta);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-item-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.step-item-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 220px;
}

.step-chevron-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cfc7bd;
  font-size: 1.25rem;
  margin-top: 1.8rem;
}

/* ==============================================================================
   شريط الإحصائيات والأرقام (Dark Stats Banner With Skyline Panorama)
   ============================================================================== */
.stats-panorama-section {
  position: relative;
  background: #10211e url('../images/stats_skyline.jpg') center/cover no-repeat;
  color: #ffffff;
  padding: 4.5rem 0;
  overflow: hidden;
}

.stats-panorama-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(16, 33, 30, 0.92) 0%, rgba(18, 40, 36, 0.88) 100%);
  z-index: 1;
}

.stats-grid-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.panorama-stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.panorama-stat-box:last-child {
  border-left: none;
}

.stat-panorama-icon {
  font-size: 1.95rem;
  color: #cbd5e1;
  margin-bottom: 0.85rem;
  opacity: 0.85;
}

.stat-panorama-value {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.5px;
}

.stat-panorama-value span {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-camel);
}

.stat-panorama-label {
  font-size: 0.92rem;
  color: #94a3b8;
  font-weight: 500;
}

/* ==============================================================================
   قسم الخبرة والخدمات العامة (About Section - مطابق للشبكة بالصورة)
   ============================================================================== */
.about-dual-section {
  padding: 5rem 0;
  background: var(--bg-page);
}

.about-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 2.5rem;
}

/* بطاقة الصورة الكبيرة على اليمين */
.about-featured-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.about-card-visual {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.about-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, transparent 0%, #ffffff 100%);
}

.about-card-details {
  padding: 2rem 2.25rem 2.5rem;
}

.about-featured-title {
  font-size: 1.95rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.about-featured-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-quote-card {
  background: var(--color-terracotta-light);
  border-right: 4px solid var(--color-terracotta);
  padding: 1.15rem 1.35rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 0.94rem;
  color: var(--text-dark);
  line-height: 1.7;
}

/* شبكة البطاقات الأربع البيضاء البسيطة على اليسار */
.about-tiles-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.minimal-feature-tile {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.minimal-feature-tile:hover {
  transform: translateY(-4px);
  border-color: var(--color-terracotta);
  box-shadow: var(--shadow-md);
}

.tile-outline-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-terracotta);
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  transition: var(--transition-normal);
}

.minimal-feature-tile:hover .tile-outline-icon {
  background: var(--color-terracotta);
  border-color: var(--color-terracotta);
  color: #ffffff;
}

.tile-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.45rem;
}

.tile-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==============================================================================
   قسم قيم وركائز العمل
   ============================================================================== */
.values-strip-section {
  padding: 4.5rem 0;
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-clean-head {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem;
}

.section-clean-tag {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-terracotta);
  margin-bottom: 0.4rem;
}

.section-clean-title {
  font-size: 2.15rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 0.65rem;
}

.values-row-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.value-clean-card {
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: var(--transition-normal);
}

.value-clean-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-terracotta);
  box-shadow: var(--shadow-md);
  background: #ffffff;
}

.value-clean-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--color-terracotta-light);
  color: var(--color-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
}

.value-clean-card h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.65rem;
}

.value-clean-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==============================================================================
   قسم الخدمات العامة المعتمد (Services Hub)
   ============================================================================== */
.services-central-section {
  padding: 4.5rem 0;
  background: var(--bg-page);
}

.services-central-box {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  max-width: 950px;
  margin: 0 auto;
}

.services-central-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--color-terracotta-light);
  color: var(--color-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
}

.services-central-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.services-central-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 750px;
  margin: 0 auto 2.25rem;
}

.services-actions-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.15rem;
}

/* ==============================================================================
   قسم آراء العملاء (Reviews Section - مطابق للبطاقات بالصورة المرفقة)
   ============================================================================== */
.reviews-clean-section {
  padding: 4.5rem 0 5rem;
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
}

.reviews-grid-clean {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.clean-review-card {
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.65rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-normal);
  position: relative;
}

.clean-review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-terracotta);
  background: #ffffff;
}

.clean-quote-mark {
  color: var(--color-terracotta);
  font-size: 1.75rem;
  margin-bottom: 0.9rem;
  opacity: 0.85;
}

.clean-review-text {
  font-size: 0.94rem;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.clean-review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid #ebe6df;
}

.author-circle-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-terracotta-light);
  color: var(--color-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-details h4 {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.1rem;
}

.author-details span {
  font-size: 0.8rem;
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* ==============================================================================
   مركز أرقام التواصل المباشر (Phones Center)
   ============================================================================== */
.phones-direct-section {
  padding: 4.5rem 0;
  background: var(--bg-surface-alt);
  border-top: 1px solid var(--border-subtle);
}

.phones-direct-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.phone-direct-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition-normal);
}

.phone-direct-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-terracotta);
  box-shadow: var(--shadow-sm);
}

.phone-direct-badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-terracotta);
  background: var(--color-terracotta-light);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.15rem;
}

.phone-direct-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  direction: ltr;
  letter-spacing: 0.8px;
  margin-bottom: 1.25rem;
  padding: 0.6rem 0.5rem;
  background: #fbf9f6;
  border-radius: var(--radius-sm);
  border: 1px dashed #d6cfc5;
  user-select: all;
}

.phone-card-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.btn-mini-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--color-dark-pill);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.btn-mini-copy:hover {
  background: #111a18;
}

.btn-mini-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--color-terracotta-light);
  color: var(--color-terracotta);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-terracotta);
  transition: var(--transition-normal);
}

.btn-mini-call:hover {
  background: var(--color-terracotta);
  color: #ffffff;
}

/* ==============================================================================
   بانر الحث على التواصل أسفل الموقع (Pre-Footer CTA Banner - مطابق للصورة المرفقة)
   ============================================================================== */
.pre-footer-cta-section {
  position: relative;
  background: #112320;
  color: #ffffff;
  padding: 2.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-dark-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.cta-left-badges {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cta-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: #94a3b8;
}

.cta-badge-item i {
  color: var(--color-camel);
}

.cta-center-text h3 {
  font-size: 1.55rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.cta-center-text p {
  font-size: 0.92rem;
  color: #cbd5e1;
}

.cta-right-action {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.cta-phone-plain {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  direction: ltr;
  transition: var(--transition-normal);
}

.cta-phone-plain:hover {
  color: var(--color-camel);
}

/* ==============================================================================
   الفوتر والتنويه القانوني (Footer & Disclaimer)
   ============================================================================== */
.site-footer {
  background: #0d1a17;
  color: #94a3b8;
  padding: 2.5rem 0 1.75rem;
  text-align: center;
}

.footer-disclaimer-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
  color: #cbd5e1;
}

.footer-disclaimer-line i {
  color: var(--color-camel);
  font-size: 1.15rem;
}

.footer-plain-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: #64748b;
  direction: ltr;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #556963;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ==============================================================================
   الشريط المباشر للجوال (Mobile Sticky Bottom Bar)
   ============================================================================== */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 980;
  background: rgba(18, 36, 33, 0.96);
  backdrop-filter: blur(12px);
  padding: 0.65rem 1rem env(safe-area-inset-bottom);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.35);
}

.mobile-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.mobile-bar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
}

.mobile-btn-wa {
  background: #22c55e;
}

.mobile-btn-call {
  background: var(--color-terracotta);
}

/* ==============================================================================
   توست إشعار النسخ (Toast Notification)
   ============================================================================== */
.copy-toast {
  position: fixed;
  bottom: 30px;
  right: 50%;
  transform: translateX(50%) translateY(100px);
  background: #112320;
  color: #ffffff;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 600;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.copy-toast.show {
  transform: translateX(50%) translateY(0);
  opacity: 1;
}

.copy-toast i {
  color: var(--color-camel);
  font-size: 1.15rem;
}

/* ==============================================================================
   التجاوب مع الشاشات (Responsive)
   ============================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-image-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }

  .about-dual-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .panorama-stat-box:nth-child(2) {
    border-left: none;
  }

  .process-steps-track {
    flex-wrap: wrap;
    justify-content: center;
  }

  .step-chevron-divider {
    display: none;
  }

  .process-step-item {
    min-width: 200px;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: 2.15rem;
  }

  .hero-actions-row {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions-row a {
    width: 100%;
  }

  .about-tiles-matrix,
  .values-row-grid,
  .reviews-grid-clean,
  .phones-direct-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .panorama-stat-box {
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
  }

  .panorama-stat-box:last-child {
    border-bottom: none;
  }

  .cta-dark-bar {
    flex-direction: column;
    text-align: center;
  }

  .cta-left-badges {
    justify-content: center;
  }

  .cta-right-action {
    flex-direction: column;
    width: 100%;
  }

  .cta-right-action .btn-terracotta {
    width: 100%;
  }

  .mobile-bottom-bar {
    display: block;
  }

  body {
    padding-bottom: 75px;
  }
}
