/* ==========================================================================
   Identity: Modern Slate & Electric Teal
   Palette: Primary: #0f172a | Secondary: #0d9488 | Accent: #059669 | Teal: #14b8a6
   ========================================================================== */

:root {
  --primary: #0f172a;
  --primary-light: #1e293b;
  --secondary: #0d9488;
  --secondary-hover: #0f766e;
  --accent: #059669;
  --accent-hover: #047857;
  --teal: #14b8a6;
  --teal-light: #ccfbf1;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  --border-color: #e2e8f0;
  --border-focus: #14b8a6;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -2px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 10px 25px -3px rgba(15, 23, 42, 0.12), 0 4px 6px -4px rgba(15, 23, 42, 0.08);
  --shadow-glow: 0 0 20px rgba(20, 184, 166, 0.35);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  direction: rtl;
  text-align: right;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  background-color: var(--bg-light);
  color: var(--text-main);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* ==========================================================================
   2. الأزرار ومعايير الجوال (Mobile CRO & Text Wrapping)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  /* المعايير الصارمة لمنع قص النصوص في الهواتف الصغيرة */
  white-space: normal !important;
  line-height: 1.35 !important;
  padding: 0.85rem 1.25rem !important;
  word-break: normal !important;
  min-height: 50px !important;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--teal) 100%);
  color: var(--bg-white);
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary-hover) 0%, var(--secondary) 100%);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--bg-white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #1fb855 0%, #0d7367 100%);
  transform: translateY(-2px);
}

.btn-call {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--bg-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
}

.btn-call:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--secondary);
  color: var(--secondary);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--secondary);
  color: var(--bg-white);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #10b981 100%);
  color: var(--bg-white);
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
}

.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.btn svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   3. شريط الإعلانات الترويجي العلوي (Top Announcement Bar)
   ========================================================================== */
.top-bar {
  background: linear-gradient(90deg, var(--primary) 0%, #134e4a 50%, var(--primary) 100%);
  color: #f1f5f9;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(20, 184, 166, 0.2);
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(20, 184, 166, 0.2);
  color: var(--teal);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(20, 184, 166, 0.3);
}

.top-bar-link {
  color: #5eead4;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.top-bar-link:hover {
  color: #ffffff;
}

/* ==========================================================================
   4. الهيدر والقائمة (Header & Navigation)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.brand-title {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary);
  line-height: 1.2;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--secondary);
  font-weight: 600;
}

/* سطح المكتب */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-desktop > li {
  position: relative;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  padding: 0.5rem 0.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link:hover, .nav-link.active {
  color: var(--secondary);
}

/* القائمة المنسدلة في سطح المكتب */
.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 260px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 1001;
}

.nav-desktop > li:hover .dropdown-menu,
.nav-desktop > li:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.9rem;
}

.dropdown-link:hover {
  background-color: var(--bg-light);
  color: var(--secondary);
  padding-right: 1.1rem;
}

.dropdown-chevron {
  transition: transform 0.25s ease;
}

.nav-desktop > li:hover .dropdown-chevron {
  transform: rotate(180deg);
}

/* زر همبرغر الجوال */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 40px;
  padding: 4px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: var(--bg-light);
  cursor: pointer;
  z-index: 1010;
}

.menu-toggle .bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--primary);
  border-radius: 3px;
  transition: var(--transition);
}

.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* درج التنقل للجوال */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 320px;
  height: 100vh;
  background: var(--bg-white);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  z-index: 1005;
  padding: 5rem 1.25rem 2rem;
  overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-drawer.active {
  right: 0;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1004;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
  border-radius: var(--radius-sm);
  width: 100%;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  background: var(--bg-light);
  color: var(--secondary);
}

/* أكورديون الخدمات في درج الموبايل */
.mobile-accordion-toggle {
  cursor: pointer;
}

.mobile-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  background-color: var(--bg-light);
  border-radius: var(--radius-sm);
  margin-top: 0.25rem;
}

.mobile-accordion-content.open {
  max-height: 250px;
}

.mobile-accordion-content a {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.mobile-accordion-content a:hover {
  color: var(--secondary);
}

.mobile-drawer-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

/* ==========================================================================
   5. قسم الهيرو وبطاقات الثقة (Hero Section)
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 70%, #0d9488 100%);
  color: var(--bg-white);
  padding: 3.5rem 0 4rem;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(20, 184, 166, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(20, 184, 166, 0.15);
  border: 1px solid rgba(20, 184, 166, 0.35);
  color: #2dd4bf;
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-title {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.hero-title span {
  background: linear-gradient(135deg, #2dd4bf 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* بطاقات الثقة السريعة في الهيرو */
.trust-badges-hero {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

.trust-badge-item svg {
  color: var(--teal);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.trust-badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
}

/* بطاقة حاسبة التسعيرة بالهيرو */
.hero-quote-card {
  background: var(--bg-white);
  color: var(--text-main);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.quote-card-header {
  margin-bottom: 1.25rem;
  text-align: center;
}

.quote-card-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}

.quote-card-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-light);
}

.form-input, .form-select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--bg-light);
  font-size: 0.9rem;
  color: var(--text-main);
  transition: var(--transition);
}

.form-input:focus, .form-select:focus {
  border-color: var(--border-focus);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
}

/* ==========================================================================
   6. الأقسام العامة، الشبكات، والبطاقات (General Layouts)
   ========================================================================== */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background-color: #f1f5f9;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.section-subtitle {
  display: inline-block;
  color: var(--secondary);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  background: var(--teal-light);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

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

/* شبكة الخدمات والبطاقات */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}

.service-card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: #cbd5e1;
}

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

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

.service-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 0.75rem;
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}

.service-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
}

.service-card-features {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0.5rem 0;
}

.service-card-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-main);
  font-weight: 600;
}

.service-card-feature-item svg {
  color: var(--accent);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* معرض الأعمال (Galleries) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: #e2e8f0;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  color: var(--bg-white);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  font-size: 0.95rem;
  font-weight: 700;
}

/* ==========================================================================
   7. الأسئلة الشائعة (FAQ Accordion)
   ========================================================================== */
.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 1.25rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
  text-align: right;
  cursor: pointer;
  background: none;
  transition: var(--transition);
}

.faq-trigger:hover {
  color: var(--secondary);
  background-color: var(--bg-light);
}

.faq-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--secondary);
}

.faq-card.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-card.open .faq-answer {
  max-height: 500px;
  padding: 0 1.25rem 1.25rem;
  transition: max-height 0.35s ease-in-out;
}

/* ==========================================================================
   8. الفوتر وسحابة الأحياء (Footer & Local Neighborhood Cloud)
   ========================================================================== */
.site-footer {
  background: #090d16;
  color: #cbd5e1;
  padding: 4.5rem 0 2rem;
  border-top: 3px solid var(--secondary);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-col-title {
  color: var(--bg-white);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35px;
  height: 2px;
  background-color: var(--teal);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links-list a {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links-list a:hover {
  color: var(--teal);
  padding-right: 5px;
}

/* سحابة الأحياء (16 حياً بالرياض) */
.neighborhood-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.neighborhood-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  padding: 0.35rem 0.65rem;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.neighborhood-tag:hover {
  background: var(--secondary);
  color: var(--bg-white);
  border-color: var(--secondary);
}

/* توسيط شريط الحقوق ومسافة الأمان */
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-light);
  gap: 1rem;
}

.developer-attribution {
  color: var(--teal);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.developer-attribution:hover {
  color: #ffffff;
}

/* ==========================================================================
   9. الأزرار العائمة الفاخرة (Floating CTAs)
   ========================================================================== */
.floating-contact-right {
  position: fixed;
  bottom: 24px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.floating-btn svg {
  width: 28px;
  height: 28px;
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  animation: luxury-pulse 2.2s infinite;
}

.floating-call {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--teal) 100%);
}

.floating-scroll-left {
  position: fixed;
  bottom: 24px;
  left: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.floating-scroll-left.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-scroll-left:hover {
  background: var(--secondary);
  transform: translateY(-4px);
}

@keyframes luxury-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ==========================================================================
   10. استجابة الجوال الصارمة (Responsive Breakpoints)
   ========================================================================== */
@media (max-width: 992px) {
  .nav-desktop {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    justify-content: center;
    text-align: center;
  }
  .hero-title {
    font-size: 1.85rem;
  }
  .trust-badges-hero {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  /* معيار مسافة الأمان وتوسيط الفوتر في الموبايل بنسبة 100% */
  .site-footer {
    padding-bottom: 130px !important;
  }
  .footer-bottom {
    text-align: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
  }
  
  .floating-contact-right {
    bottom: 18px;
    right: 14px;
    gap: 10px;
  }
  .floating-btn {
    width: 50px;
    height: 50px;
  }
  .floating-btn svg {
    width: 24px;
    height: 24px;
  }
  .floating-scroll-left {
    bottom: 18px;
    left: 14px;
    width: 44px;
    height: 44px;
  }
}
