/* ================================================================
   سطحة جنوب جدة — ملف التنسيق الرئيسي
   لتغيير الألوان: عدّل المتغيرات في قسم :root فقط
   ================================================================ */

/* ── المتغيرات الأساسية ── */
:root {
  /* الألوان الرئيسية */
  --color-primary:       #C8860A;   /* ذهبي داكن */
  --color-primary-light: #E5A020;   /* ذهبي فاتح */
  --color-primary-dark:  #9A6408;   /* ذهبي أعمق */
  --color-accent:        #1A3A5C;   /* أزرق داكن */

  /* الخلفيات */
  --bg-dark:    #0A0A0A;
  --bg-card:    #111111;
  --bg-surface: #181818;
  --bg-border:  rgba(200, 134, 10, 0.18);

  /* النصوص */
  --text-white:   #F5F0E8;
  --text-muted:   #9A9080;
  --text-subtle:  #5A5040;

  /* المسافات */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  /* الظلال */
  --shadow-gold: 0 4px 32px rgba(200, 134, 10, 0.20);
  --shadow-card: 0 2px 24px rgba(0,0,0,0.50);

  /* الخطوط */
  --font-display: 'Cairo', sans-serif;
  --font-body:    'Tajawal', sans-serif;
  --font-nums:    'Oxanium', sans-serif;
}

/* ── إعادة الضبط ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-white);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  line-height: 1.7;
}

/* ── طبقة التحبيب ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── شريط التمرير ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--color-primary-dark); border-radius: 10px; }

/* ================================================================
   المكونات المشتركة
   ================================================================ */

/* الحاوية */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}

/* بطاقة زجاجية */
.glass {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--bg-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* خط فاصل ذهبي */
.gold-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
  border-radius: 2px;
  margin-block: 12px;
}

/* شارة صغيرة */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 100px;
  border: 1px solid var(--bg-border);
  background: rgba(200,134,10,0.08);
  color: var(--color-primary-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* زر أساسي */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #000;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(200,134,10,0.35);
}

.btn-outline {
  border: 1.5px solid var(--bg-border);
  color: var(--text-white);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-light);
}

.btn-ghost {
  color: var(--color-primary-light);
  padding: 10px 0;
}
.btn-ghost:hover { color: var(--text-white); }

/* عنوان القسم */
.section-header { margin-bottom: 52px; }
.section-header .badge { margin-bottom: 14px; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-white);
}
.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  font-size: 1.05rem;
  margin-top: 10px;
}

/* ================================================================
   شريط التنقل
   ================================================================ */

.navbar {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--bg-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 42px;
  width: 42px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--bg-border);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--text-white);
  line-height: 1.2;
}

.nav-logo-text span {
  display: block;
  font-size: 0.72rem;
  color: var(--color-primary-light);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-white);
  background: rgba(255,255,255,0.06);
}

.nav-links a.active { color: var(--color-primary-light); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* زر الهامبرغر */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 8px 6px;
  border-radius: 8px;
  border: 1px solid var(--bg-border);
  background: transparent;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-white);
  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; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* القائمة المحمولة */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 72px;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 32px 20px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu a:hover {
  border-color: var(--bg-border);
  color: var(--text-white);
  background: rgba(255,255,255,0.03);
}

/* ================================================================
   التذييل
   ================================================================ */

footer {
  background: #050505;
  border-top: 1px solid var(--bg-border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 44px;
  width: 44px;
  border-radius: 10px;
  margin-bottom: 14px;
  border: 1px solid var(--bg-border);
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--bg-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: all 0.2s;
}

.footer-socials a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-light);
  background: rgba(200,134,10,0.08);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--bg-border);
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover { color: var(--color-primary-light); }

.footer-col ul li a i {
  width: 16px;
  color: var(--color-primary-dark);
  font-size: 0.8rem;
}

.footer-bottom {
  border-top: 1px solid var(--bg-border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { color: var(--text-subtle); font-size: 0.82rem; }

.footer-bottom a { color: var(--text-muted); font-size: 0.82rem; }
.footer-bottom a:hover { color: var(--color-primary-light); }

/* ================================================================
   زر الاتصال العائم
   ================================================================ */

.float-call {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.float-call-main {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #25D366;
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 24px rgba(37,211,102,0.30);
  transition: all 0.25s;
}

.float-call-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.40);
}

.float-call-main i { font-size: 1.1rem; }

/* ================================================================
   شريط التقدم
   ================================================================ */

#progress-bar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary-dark), var(--color-primary-light));
  z-index: 1001;
  width: 0%;
  transition: width 0.1s;
}

/* ================================================================
   الصفحة الرئيسية — Hero
   ================================================================ */

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.40) 0%,
    rgba(10,10,10,0.65) 60%,
    var(--bg-dark) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-block: 80px;
}

.hero-content .badge { margin-bottom: 20px; }

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-white);
}

.hero-content h1 strong {
  color: var(--color-primary-light);
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat strong {
  font-family: var(--font-nums);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-primary-light);
  letter-spacing: -0.02em;
}

.hero-stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ================================================================
   قسم الخدمات المدمج
   ================================================================ */

.services-section { padding: 96px 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  cursor: pointer;
  transition: transform 0.35s ease;
}

.service-card:hover { transform: translateY(-6px); }

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover img { transform: scale(1.05); }

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 55%, transparent 100%);
}

.service-card-body {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  padding: 24px;
}

.service-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-card-body p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card-body .btn {
  padding: 8px 16px;
  font-size: 0.82rem;
  background: var(--color-primary);
  color: #000;
  border-radius: 8px;
  font-weight: 700;
}

.service-card-body .btn:hover {
  background: var(--text-white);
}

/* ================================================================
   قسم المناطق
   ================================================================ */

.areas-section { padding: 96px 0; background: var(--bg-card); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.area-item {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--bg-border);
  background: var(--bg-surface);
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 12px;
}

.area-item:hover {
  border-color: var(--color-primary);
  background: rgba(200,134,10,0.06);
}

.area-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}

.area-item span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.3;
}

.area-item:hover span { color: var(--text-white); }

/* ================================================================
   قسم لماذا نحن
   ================================================================ */

.why-section { padding: 96px 0; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--bg-border);
  background: var(--bg-card);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(200,134,10,0.12) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(40px,-40px);
  transition: transform 0.4s;
}

.why-card:hover::before { transform: translate(20px,-20px) scale(1.3); }
.why-card:hover { border-color: rgba(200,134,10,0.35); }

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(200,134,10,0.10);
  border: 1px solid var(--bg-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color-primary-light);
  margin-bottom: 18px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-white);
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

/* ================================================================
   قسم الأرقام / الإحصاءات
   ================================================================ */

.stats-section {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-surface) 100%);
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--bg-border);
}

.stat-item strong {
  display: block;
  font-family: var(--font-nums);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--color-primary-light);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ================================================================
   آراء العملاء
   ================================================================ */

.reviews-section { padding: 96px 0; background: var(--bg-card); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  padding: 26px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--bg-border);
  background: var(--bg-surface);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s;
}

.review-card:hover { border-color: rgba(200,134,10,0.3); }

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--color-primary);
  font-size: 0.8rem;
}

.review-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--bg-border);
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--bg-surface));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--color-primary-light);
  flex-shrink: 0;
}

.review-author-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-white);
}

.review-author-label {
  font-size: 0.76rem;
  color: var(--text-subtle);
}

/* ================================================================
   الأسئلة الشائعة
   ================================================================ */

.faq-section { padding: 96px 0; }

.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 780px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.25s;
}

.faq-item.open { border-color: rgba(200,134,10,0.35); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-white);
  cursor: pointer;
  transition: color 0.2s;
  text-align: right;
}

.faq-question:hover { color: var(--color-primary-light); }

.faq-chevron {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid var(--bg-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  transition: all 0.3s;
}

.faq-item.open .faq-chevron {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #000;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 22px 20px;
}

/* ================================================================
   صفحة الاتصال
   ================================================================ */

.contact-section { padding: 96px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  align-items: start;
}

.contact-info {
  padding: 36px 30px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--bg-border);
  background: var(--bg-card);
  position: sticky;
  top: 90px;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 24px;
  color: var(--text-white);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(200,134,10,0.08);
  border: 1px solid var(--bg-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.contact-detail-value {
  font-weight: 700;
  color: var(--text-white);
  font-size: 0.95rem;
}

.contact-detail-value a { color: inherit; }
.contact-detail-value a:hover { color: var(--color-primary-light); }

.contact-hours {
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(200,134,10,0.06);
  border: 1px solid var(--bg-border);
}

.contact-hours p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-hours strong {
  display: block;
  font-weight: 800;
  color: var(--color-primary-light);
  font-size: 1rem;
  margin-bottom: 4px;
}

/* النموذج */
.contact-form-wrap {
  padding: 36px 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--bg-border);
  background: var(--bg-card);
}

.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 28px;
  color: var(--text-white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 7px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-surface);
  border: 1.5px solid var(--bg-border);
  border-radius: var(--radius-md);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  direction: rtl;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-subtle);
}

.form-group textarea { resize: vertical; min-height: 110px; }

/* ================================================================
   صفحة المناطق الكاملة
   ================================================================ */

.page-hero {
  padding: 140px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(200,134,10,0.10) 0%, transparent 70%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 14px;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 580px;
  font-size: 1.05rem;
}

.areas-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 72px 0;
}

.area-card {
  padding: 24px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--bg-border);
  background: var(--bg-card);
  transition: all 0.3s;
  cursor: pointer;
}

.area-card:hover {
  border-color: var(--color-primary);
  background: rgba(200,134,10,0.05);
  transform: translateY(-3px);
}

.area-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.area-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(200,134,10,0.10);
  border: 1px solid var(--bg-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
  font-size: 0.95rem;
}

.area-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-white);
}

.area-card ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.area-card ul li {
  font-size: 0.84rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.area-card ul li::before {
  content: '';
  width: 4px;
  height: 4px;
  min-width: 4px;
  border-radius: 50%;
  background: var(--color-primary-dark);
}

/* ================================================================
   الاستجابة للموبايل
   ================================================================ */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .areas-full-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .areas-full-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2rem; }
  .float-call { bottom: 16px; left: 16px; }
  .float-call-main span { display: none; }
  .float-call-main { padding: 14px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 20px; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
}

/* ================================================================
   أنيميشن عند الظهور
   ================================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ================================================================
   Structured Data Schema Helper Classes
   ================================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
