/* ==========================================================================
   GP Advertising — Main Stylesheet
   RTL / Arabic — Vanilla CSS3
   الترتيب: 1) المتغيرات  2) الأساسيات  3) عناصر مشتركة  4) الهيدر
            5) العناصر العائمة  6) الفوتر  7) الرئيسية  8) من نحن
            9) الخدمات  10) معرضنا  11) اتصل بنا  12) الاستجابة
   ========================================================================== */


/* ==========================================================================
   1) المتغيرات (Design Tokens)
   ========================================================================== */
:root {
  /* الألوان */
  --color-primary: #29A8DF;
  --color-primary-dark: #1E8CBE;
  --color-primary-light: #E7F5FC;
  --color-dark: #363636;
  --color-white: #FFFFFF;
  --color-light-gray: #F1F1F1;
  --color-navy-deep: #0A1E3D;
  --color-blue-mid: #1E5A8E;
  --color-text-muted: #6B6F76;
  --color-whatsapp: #25D366;

  /* حدود وظلال */
  --border-soft: rgba(10, 30, 61, 0.10);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 18px 45px rgba(10, 30, 61, 0.14);
  --shadow-primary: 0 8px 20px rgba(41, 168, 223, 0.35);

  /* الشكل */
  --radius-card: 12px;
  --radius-pill: 30px;
  --container: 1260px;

  /* الحركة */
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.3s var(--ease-out);
  --t-mid: 0.4s var(--ease-out);

  /* ارتفاع الهيدر */
  --header-h: 90px;
  --header-h-sticky: 70px;

  /* صورة خلفية افتراضية للأقسام البطلة (استبدلها بصورك) */
  --gp-placeholder-bg:
    repeating-linear-gradient(45deg, #dfe3e8 0 14px, #e9ecf0 14px 28px);
}


/* ==========================================================================
   2) الأساسيات (Reset & Base)
   ========================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Almarai', 'Segoe UI', Tahoma, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text-muted);
  background: var(--color-white);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.gp-no-scroll { overflow: hidden; }

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 16px;
  color: var(--color-dark);
  font-weight: 800;
  line-height: 1.2;
}

p { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--t-fast);
}

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

ul { margin: 0; padding: 0; list-style: none; }

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

:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* صور الـ placeholder — لحد ما تتحط الصور الحقيقية */
img[data-ph] {
  background: var(--color-light-gray);
  width: 100%;
  object-fit: cover;
}


/* ==========================================================================
   3) عناصر مشتركة (Shared Components)
   ========================================================================== */

/* --- الحاوية والأقسام --- */
.gp-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: 20px;
}

.gp-section { padding: 100px 0; }
.gp-section--tight { padding: 70px 0; }
.gp-section--gray { background: var(--color-light-gray); }
.gp-section--navy { background: var(--color-navy-deep); }

/* --- العناوين --- */
.gp-eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--color-primary);
}
.gp-eyebrow::before { content: "» "; }

.gp-h1 {
  font-size: clamp(40px, 6vw, 85px);
  line-height: 1.15;
}

.gp-h2 {
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.2;
}

.gp-h3-num {
  font-size: clamp(48px, 8vw, 92px);
  line-height: 1;
  color: var(--color-primary);
}

.gp-h4 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  line-height: 1.3;
}

.gp-lead { font-size: 18px; }

.gp-section-head { margin-bottom: 50px; max-width: 720px; }
.gp-section-head--center {
  margin-inline: auto;
  text-align: center;
  max-width: 820px;
}

/* على الخلفيات الغامقة */
.gp-on-dark, .gp-on-dark p { color: rgba(255, 255, 255, 0.82); }
.gp-on-dark h1, .gp-on-dark h2,
.gp-on-dark h3, .gp-on-dark h4 { color: var(--color-white); }

/* --- الأزرار --- */
.gp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.4;
  text-align: center;
  transition: all var(--t-fast);
}

.gp-btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.gp-btn--primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary);
}

.gp-btn--ghost {
  background: transparent;
  color: var(--color-white);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.55);
}
.gp-btn--ghost:hover {
  background: var(--color-white);
  color: var(--color-navy-deep);
  transform: translateY(-2px);
}

.gp-btn--whatsapp { background: var(--color-whatsapp); color: #fff; }
.gp-btn--whatsapp:hover {
  background: #1FBA59;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.gp-btn--block { width: 100%; justify-content: center; }

/* --- رابط "المزيد" --- */
.gp-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-primary);
}
.gp-more i { transition: transform var(--t-fast); }
.gp-more:hover i { transform: translateX(-6px); }

/* --- الكروت --- */
.gp-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.gp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

/* --- الأيقونات الدائرية --- */
.gp-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(41, 168, 223, 0.12);
  color: var(--color-primary);
  font-size: 24px;
  flex: 0 0 auto;
}
.gp-badge-icon--solid { background: var(--color-primary); color: #fff; }
.gp-badge-icon--light { background: rgba(255, 255, 255, 0.12); color: #fff; }

/* --- شبكات عامة --- */
.gp-grid { display: grid; gap: 26px; }
.gp-grid--2 { grid-template-columns: repeat(2, 1fr); }
.gp-grid--3 { grid-template-columns: repeat(3, 1fr); }
.gp-grid--4 { grid-template-columns: repeat(4, 1fr); }
.gp-grid--5 { grid-template-columns: repeat(5, 1fr); }

/* --- قائمة الثقة (Checklist) --- */
.gp-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 40px;
}
.gp-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 17px;
  font-weight: 400;
}
.gp-checklist li i {
  color: var(--color-primary);
  font-size: 20px;
  margin-top: 5px;
  flex: 0 0 auto;
}
.gp-checklist--light li { color: rgba(255, 255, 255, 0.9); }
.gp-checklist--light li i { color: #45D48A; }

/* --- بانر عنوان الصفحة الداخلية --- */
.gp-page-banner {
  position: relative;
  min-height: 340px;
  margin-top: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* استبدل var(--gp-placeholder-bg) بـ url('images/banner.jpg') */
  background: var(--gp-placeholder-bg) center/cover no-repeat;
}
.gp-page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 30, 61, 0.92), rgba(30, 90, 142, 0.85));
}
.gp-page-banner__inner { position: relative; z-index: 2; padding: 40px 20px; }

.gp-page-banner__title {
  display: inline-block;
  margin: 0 0 16px;
  padding: 10px 38px;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  color: var(--color-white);
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 800;
}

.gp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}
.gp-breadcrumb a { color: rgba(255, 255, 255, 0.85); }
.gp-breadcrumb a:hover { color: var(--color-primary); }
.gp-breadcrumb span { color: var(--color-primary); }

/* --- شريط CTA قبل الفوتر --- */
.gp-cta-band {
  background: linear-gradient(135deg, var(--color-navy-deep), var(--color-blue-mid));
  padding: 70px 0;
  text-align: center;
}
.gp-cta-band__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
}
.gp-response-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 14px;
  opacity: 0.85;
}
.gp-response-note i { color: #25D366; }
.gp-response-note--start { justify-content: flex-start; }
.gp-form .gp-response-note {
  justify-content: flex-start;
  margin-top: 4px;
  margin-bottom: 18px;
  opacity: 0.75;
}

/* --- حركات الظهور عند الاسكرول --- */
.gp-reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
  will-change: opacity, transform;
}
.gp-reveal--left { transform: translateX(38px); }
.gp-reveal--right { transform: translateX(-38px); }
.gp-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .gp-reveal { opacity: 1 !important; transform: none !important; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}


/* ==========================================================================
   4) الهيدر / الناف بار — 6 حالات
   ========================================================================== */
.gp-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  height: var(--header-h);
  /* الحالة 1: تدرّج غامق + صورة خلفية بأوفرلاي */
  background:
    linear-gradient(120deg, rgba(10, 30, 61, 0.95), rgba(30, 90, 142, 0.88)),
    var(--gp-placeholder-bg) center/cover no-repeat;
  transition: height var(--t-fast), background var(--t-fast),
              box-shadow var(--t-fast), backdrop-filter var(--t-fast);
}

/* الحالة 2: بعد الاسكرول — زجاجي مصغّر */
.gp-header.is-stuck {
  height: var(--header-h-sticky);
  background: rgba(10, 30, 61, 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(10, 30, 61, 0.25);
}

.gp-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* --- اللوجو --- */
.gp-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
  flex: 0 0 auto;
}
.gp-logo__hex { width: 40px; height: 44px; color: var(--color-primary); }
.gp-logo__img { height: 60px; width: auto; display: block; transition: height 0.25s ease; }
.gp-header.is-stuck .gp-logo__img { height: 46px; }
.gp-logo--footer .gp-logo__img { height: 84px; }
.gp-logo__text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  direction: ltr;
  white-space: nowrap;
}
.gp-logo__text b { font-weight: 800; }
.gp-logo__text small {
  display: block;
  font-size: 10.5px;
  letter-spacing: 3.4px;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 3px;
}
.gp-logo--dark { color: var(--color-navy-deep); }
.gp-logo--footer .gp-logo__hex { width: 62px; height: 68px; }
.gp-logo--footer .gp-logo__text { font-size: 27px; }
.gp-logo--footer .gp-logo__text small { font-size: 13px; letter-spacing: 4.6px; }

/* --- الروابط --- */
.gp-nav__list { display: flex; align-items: center; gap: 34px; }

.gp-nav__link {
  position: relative;
  display: block;
  padding: 8px 2px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
}
/* الحالة 3: hover — خط يظهر بـ scaleX */
.gp-nav__link::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t-fast);
}
.gp-nav__link:hover { color: var(--color-primary); }
.gp-nav__link:hover::after { transform: scaleX(1); }

/* الحالة 4: الصفحة الحالية */
.gp-nav__link.is-active { color: var(--color-primary); }
.gp-nav__link.is-active::after { transform: scaleX(1); }
.gp-nav__link.is-active::before {
  content: "";
  position: absolute;
  top: -4px;
  right: 50%;
  transform: translateX(50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

.gp-header__cta { flex: 0 0 auto; padding: 12px 28px; font-size: 15px; }

/* --- زرار الهمبرجر (الحالة 5) --- */
.gp-burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  padding: 12px 10px;
  flex-direction: column;
  justify-content: space-between;
}
.gp-burger span {
  display: block;
  height: 2.5px;
  width: 100%;
  border-radius: 2px;
  background: var(--color-white);
  transition: background var(--t-fast);
}

/* --- الحالة 6: قائمة الموبايل المفتوحة --- */
.gp-mobile-menu {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 950;
  background: var(--color-white);
  box-shadow: 0 20px 50px rgba(10, 30, 61, 0.18);
  padding: 22px 20px 34px;
  transform: translateY(-105%);
  visibility: hidden;
  transition: transform 0.4s var(--ease-out), visibility 0.4s;
  max-height: 100vh;
  overflow-y: auto;
}
.gp-mobile-menu.is-open { transform: translateY(0); visibility: visible; }

.gp-mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border-soft);
}
.gp-mobile-menu__close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-light-gray);
  color: var(--color-navy-deep);
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}
.gp-mobile-menu__close:hover { background: var(--color-primary); color: #fff; }

.gp-mobile-menu__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 26px 0;
}
.gp-mobile-menu__list a {
  display: block;
  padding: 13px 10px;
  font-size: 19px;
  font-weight: 700;
  color: var(--color-dark);
  opacity: 0;
  transform: translateY(-10px);
}
.gp-mobile-menu__list a.is-active { color: var(--color-primary); }
.gp-mobile-menu.is-open .gp-mobile-menu__list a {
  animation: gpFadeInDown 0.4s var(--ease-out) forwards;
}
.gp-mobile-menu.is-open .gp-mobile-menu__list li:nth-child(1) a { animation-delay: 0.10s; }
.gp-mobile-menu.is-open .gp-mobile-menu__list li:nth-child(2) a { animation-delay: 0.18s; }
.gp-mobile-menu.is-open .gp-mobile-menu__list li:nth-child(3) a { animation-delay: 0.26s; }
.gp-mobile-menu.is-open .gp-mobile-menu__list li:nth-child(4) a { animation-delay: 0.34s; }
.gp-mobile-menu.is-open .gp-mobile-menu__list li:nth-child(5) a { animation-delay: 0.42s; }

@keyframes gpFadeInDown {
  to { opacity: 1; transform: translateY(0); }
}

.gp-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 940;
  background: rgba(10, 30, 61, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-mid), visibility var(--t-mid);
}
.gp-mobile-overlay.is-open { opacity: 1; visibility: visible; }


/* ==========================================================================
   5) العناصر العائمة الثابتة (Global Floating Elements)
   ========================================================================== */

/* --- واتساب + اتصال (أسفل الشمال) --- */
.gp-float-actions {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 880;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gp-float-actions a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.gp-float-actions a:hover { transform: scale(1.1); color: #fff; }
.gp-float-actions .gp-float--wa { background: var(--color-whatsapp); }
.gp-float-actions .gp-float--tel { background: var(--color-primary); }

/* --- سايدبار السوشيال (يمين الشاشة) --- */
.gp-social-rail {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 880;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.gp-social-rail a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  color: var(--color-navy-deep);
  font-size: 16px;
  box-shadow: 0 6px 18px rgba(10, 30, 61, 0.14);
  transition: all var(--t-fast);
}
.gp-social-rail a:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-3px);
}
.gp-social-rail__text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-text-muted);
  padding: 10px 0;
}
.gp-social-rail__line {
  width: 1px;
  height: 46px;
  background: var(--border-soft);
}

/* --- زرار الرجوع لأعلى (أسفل اليمين) --- */
.gp-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 880;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  box-shadow: var(--shadow-primary);
  transition: all var(--t-fast);
}
.gp-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.gp-to-top:hover { background: var(--color-primary-dark); transform: translateY(-3px); }


/* ==========================================================================
   6) الفوتر
   ========================================================================== */
.gp-footer {
  background: linear-gradient(160deg, var(--color-navy-deep), #061529);
  padding: 70px 0 26px;
  text-align: center;
}
.gp-footer__logo { justify-content: center; margin-bottom: 18px; }
.gp-footer__desc {
  max-width: 620px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}
.gp-footer__social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}
.gp-footer__social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  font-size: 18px;
  transition: all var(--t-fast);
}
.gp-footer__social a:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
  color: #fff;
}
.gp-footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 34px;
  margin-bottom: 34px;
}
.gp-footer__nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  font-size: 16px;
}
.gp-footer__nav a::after {
  content: "";
  position: absolute;
  right: 0; left: 0; bottom: -5px;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform var(--t-fast);
}
.gp-footer__nav a:hover { color: var(--color-primary); }
.gp-footer__nav a:hover::after { transform: scaleX(1); }

.gp-footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.13);
  margin-bottom: 20px;
}
.gp-footer__copy {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}


/* ==========================================================================
   7) صفحة الرئيسية
   ========================================================================== */

/* --- أ) الهيرو --- */
.gp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 60px) 0 80px;
  /* استبدل var(--gp-placeholder-bg) بـ url('images/hero.jpg') */
  background: var(--gp-placeholder-bg) center/cover no-repeat;
  overflow: hidden;
}
.gp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(10, 30, 61, 0.95) 30%, rgba(30, 90, 142, 0.78));
}
.gp-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
}
.gp-hero__text .gp-eyebrow { color: #7FD2F5; }
.gp-hero__desc {
  max-width: 540px;
  margin-bottom: 32px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
}

/* أنميشن دخول الهيرو */
.gp-anim { opacity: 0; animation-fill-mode: forwards; }
.gp-anim--up { animation: gpFadeInUp 0.55s var(--ease-out) forwards; }
.gp-anim--left { animation: gpFadeInLeft 0.55s var(--ease-out) forwards; }
.gp-d1 { animation-delay: 0.20s; }
.gp-d2 { animation-delay: 0.35s; }
.gp-d3 { animation-delay: 0.45s; }
.gp-d4 { animation-delay: 0.55s; }

@keyframes gpFadeInUp {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: none; }
}
@keyframes gpFadeInLeft {
  from { opacity: 0; transform: translateX(34px); }
  to { opacity: 1; transform: none; }
}

/* الأشكال الزخرفية + الصور المتراكبة */
.gp-hero__visual { position: relative; min-height: 460px; }
.gp-hero__shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.gp-hero__shape--1 {
  width: 300px; height: 300px;
  right: -30px; top: -30px;
  background: radial-gradient(circle, rgba(41, 168, 223, 0.42), transparent 70%);
}
.gp-hero__shape--2 {
  width: 220px; height: 220px;
  left: 10px; bottom: -20px;
  border: 2px dashed rgba(255, 255, 255, 0.22);
  animation: gpSpin 26s linear infinite;
}
@keyframes gpSpin { to { transform: rotate(360deg); } }

.gp-hero__img {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.38);
}
.gp-hero__img--main { width: 78%; margin-inline-start: auto; }
.gp-hero__img--sub {
  width: 46%;
  margin-top: -90px;
  border: 6px solid rgba(255, 255, 255, 0.14);
}
.gp-hero__pulse {
  position: absolute;
  left: 8%;
  top: 42%;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  z-index: 3;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  animation: gpPulse 2.4s infinite;
}
@keyframes gpPulse {
  70% { box-shadow: 0 0 0 22px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- ب) شريط كروت الخدمات (Carousel) --- */
.gp-carousel { position: relative; }
.gp-carousel__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  /* proximity بدل mandatory: بيتحمّل الكسور العشرية في عرض الكارت
     من غير ما يرفض الحركة ويرجّع الشريط لأوله */
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding-bottom: 14px;
  scrollbar-width: none;
}
.gp-carousel__track::-webkit-scrollbar { display: none; }
.gp-carousel__track > * {
  flex: 0 0 calc((100% - 72px) / 4);
  scroll-snap-align: start;
}
.gp-carousel--wide .gp-carousel__track > * { flex: 0 0 calc((100% - 48px) / 3); }

.gp-carousel__nav {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 26px;
}
.gp-carousel__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-navy-deep);
  box-shadow: var(--shadow-card);
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}
.gp-carousel__btn:hover { background: var(--color-primary); color: #fff; }

/* كارت الخدمة */
.gp-service-card { display: flex; flex-direction: column; }
.gp-service-card__media { position: relative; overflow: hidden; }
.gp-service-card__media img {
  aspect-ratio: 4 / 3;
  transition: transform 0.5s var(--ease-out);
}
.gp-service-card:hover .gp-service-card__media img { transform: scale(1.06); }
.gp-service-card__tag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: rgba(41, 168, 223, 0.88);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.gp-service-card__body {
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.gp-service-card__body h3 { font-size: 20px; margin: 0; }
.gp-service-card__body p { font-size: 15.5px; margin: 0; flex: 1; }

/* --- ج) من نحن (Teaser) --- */
.gp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.gp-split__media { position: relative; }
.gp-split__media img {
  border-radius: var(--radius-card);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-card);
}
.gp-split__badge {
  position: absolute;
  bottom: -26px;
  right: -26px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  box-shadow: var(--shadow-primary);
}
.gp-split__badge b { font-size: 34px; font-weight: 800; }
.gp-split__badge span { font-size: 13px; font-weight: 700; }

/* --- هـ) صفوف الخدمات التفصيلية --- */
.gp-srow { padding: 70px 0; }
.gp-srow:nth-child(even) { background: var(--color-light-gray); }
.gp-srow__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.gp-srow:nth-child(even) .gp-srow__media { order: 2; }
.gp-srow__media img {
  border-radius: var(--radius-card);
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-card);
}
.gp-srow__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.gp-srow__head h3 { margin: 0; font-size: clamp(21px, 2.3vw, 27px); }

/* --- و) سلايدر معرض الأعمال --- */
.gp-project-card__media img { aspect-ratio: 16 / 10; }
.gp-project-card__body { padding: 24px 22px 26px; }
.gp-project-card__body h3 { font-size: 21px; }
.gp-project-card__points {
  margin: 0 0 18px;
  display: grid;
  gap: 8px;
}
.gp-project-card__points li {
  display: flex;
  gap: 10px;
  font-size: 15px;
}
.gp-project-card__points li i { color: var(--color-primary); font-size: 13px; margin-top: 7px; }

/* --- ز) شريط لوجوهات العملاء --- */
.gp-clients {
  display: flex;
  gap: 40px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.gp-clients__row {
  display: flex;
  gap: 40px;
  flex: 0 0 auto;
  animation: gpMarquee 16s linear infinite;
}
.gp-clients:hover .gp-clients__row { animation-play-state: paused; }
@keyframes gpMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
.gp-clients__item {
  width: 170px;
  height: 92px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 14px;
  filter: grayscale(0);
  opacity: 1;
  transition: all var(--t-fast);
}
.gp-clients__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover, var(--shadow-card)); }
.gp-clients__item img { max-height: 100%; width: auto; }

/* --- ح) شريط الثقة الغامق --- */
.gp-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}


/* ==========================================================================
   8) صفحة من نحن
   ========================================================================== */
.gp-offer-card {
  text-align: center;
  padding: 38px 24px;
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.gp-offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.gp-offer-card .gp-badge-icon { margin-bottom: 16px; }
.gp-offer-card h3 { font-size: 19px; margin: 0 0 8px; }
.gp-offer-card p { font-size: 15px; margin: 0; }

.gp-value-card {
  padding: 32px 22px;
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  text-align: center;
  border-top: 4px solid var(--color-primary);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.gp-value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.gp-value-card h3 { font-size: 19px; margin: 14px 0 8px; }
.gp-value-card p { font-size: 15px; margin: 0; }

.gp-quote-block {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 20px;
  line-height: 1.9;
}


/* ==========================================================================
   9) صفحة الخدمات
   ========================================================================== */
.gp-svc-block { padding: 90px 0; }
.gp-svc-block--gray { background: var(--color-light-gray); }
.gp-svc-block__head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
.gp-svc-block__head .gp-badge-icon { width: 74px; height: 74px; font-size: 30px; }
.gp-svc-block__head h2 { margin: 0; }
.gp-svc-block__tagline {
  font-size: 19px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 14px;
}
.gp-svc-block__desc { max-width: 900px; margin-bottom: 34px; }

.gp-subtags {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}
.gp-subtag {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--color-dark);
  transition: all var(--t-fast);
}
.gp-subtag i { color: var(--color-primary); font-size: 17px; }
.gp-subtag:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  color: var(--color-primary);
}

/* بانر فاصل عريض */
.gp-band {
  background: var(--color-navy-deep);
  padding: 34px 0;
}
.gp-band__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.gp-band__pill {
  padding: 9px 24px;
  border-radius: var(--radius-pill);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 700;
  transition: all var(--t-fast);
}
.gp-band__pill:hover {
  box-shadow: inset 0 0 0 1.5px var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

/* خطوات العمل */
.gp-step {
  position: relative;
  padding: 34px 22px;
  background: var(--color-navy-deep);
  border-radius: var(--radius-card);
  text-align: center;
  transition: transform var(--t-fast), background var(--t-fast);
}
.gp-step:hover { transform: translateY(-6px); background: var(--color-blue-mid); }
.gp-step__num {
  position: absolute;
  top: 14px;
  left: 18px;
  font-size: 34px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.13);
  line-height: 1;
}
.gp-step .gp-badge-icon { margin-bottom: 16px; }
.gp-step h3 { font-size: 17px; color: #fff; margin: 0; line-height: 1.5; }


/* ==========================================================================
   10) صفحة معرضنا
   ========================================================================== */
.gp-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 44px;
}
.gp-filter {
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  box-shadow: inset 0 0 0 1.5px var(--border-soft);
  background: transparent;
  color: var(--color-dark);
  font-size: 15px;
  font-weight: 700;
  transition: all var(--t-fast);
}
.gp-filter:hover { box-shadow: inset 0 0 0 1.5px var(--color-primary); color: var(--color-primary); }
.gp-filter.is-active {
  background: var(--color-primary);
  color: #fff;
  box-shadow: inset 0 0 0 1.5px var(--color-primary);
}

.gp-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gp-gallery__item {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
  display: block;
  width: 100%;
  padding: 0;
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.gp-gallery__item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease-out);
}
.gp-gallery__item:hover img { transform: scale(1.05); }
.gp-gallery__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  text-align: center;
  background: linear-gradient(180deg, rgba(10, 30, 61, 0.25), rgba(10, 30, 61, 0.85));
  color: #fff;
  opacity: 0;
  transition: opacity var(--t-fast);
}
.gp-gallery__item:hover .gp-gallery__overlay { opacity: 1; }
.gp-gallery__overlay strong { font-size: 18px; font-weight: 800; }
.gp-gallery__overlay span { font-size: 13px; color: #8FD8F7; }
.gp-gallery__tag {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: rgba(10, 30, 61, 0.75);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 2;
}
.gp-gallery__item.is-hidden { display: none; }
.gp-gallery__item.is-limited { display: none; }
.gp-gallery__more-wrap { display: flex; justify-content: center; margin-top: 28px; }

/* --- سكاشن المعرض المنفصلة لكل فئة --- */
.gp-filters a.gp-filter { text-decoration: none; display: inline-block; }
.gp-gallery-cat { scroll-margin-top: calc(var(--header-h) + 24px); margin-bottom: 64px; }
.gp-gallery-cat:last-child { margin-bottom: 0; }
.gp-gallery-cat__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border, #E4E8ED);
}
.gp-gallery-cat__head .gp-eyebrow { display: none; }
.gp-gallery-cat__head .gp-h3 { font-size: clamp(20px, 2.6vw, 26px); margin: 0; }
.gp-gallery-cat__count {
  font-size: 13px;
  color: var(--color-text-light, #6B7684);
  background: var(--color-light-gray, #F2F4F7);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-inline-start: auto;
}

/* ==========================================================================
   كروت المجموعات (Collection Cards) — صفحة معرضنا الرئيسية
   ========================================================================== */
.gp-collections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 560px) {
  .gp-collections-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media (min-width: 900px) {
  .gp-collections-grid { grid-template-columns: repeat(3, 1fr); gap: 26px; }
}
@media (min-width: 1200px) {
  .gp-collections-grid { grid-template-columns: repeat(4, 1fr); gap: 28px; }
}

.gp-collection-card {
  position: relative;
  display: block;
  border-radius: 22px;
  overflow: hidden;
  background: var(--color-white, #fff);
  box-shadow: 0 8px 24px rgba(10, 30, 61, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease-out, ease), box-shadow 0.3s var(--ease-out, ease);
  isolation: isolate;
}
.gp-collection-card:hover,
.gp-collection-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(10, 30, 61, 0.18);
}
.gp-collection-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-light-gray, #F2F4F7);
}
.gp-collection-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 30, 61, 0) 40%, rgba(10, 30, 61, 0.55) 100%);
}
.gp-collection-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease-out, ease);
}
.gp-collection-card:hover .gp-collection-card__media img,
.gp-collection-card:focus-visible .gp-collection-card__media img {
  transform: scale(1.08);
}
.gp-collection-card__body {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.gp-collection-card__body h3 {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 800;
  margin: 0;
  color: #FFFFFF;
}

/* --- زرار الرجوع لكل المجموعات --- */
.gp-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: var(--color-navy-deep, #0A1E3D);
  text-decoration: none;
  padding: 10px 4px;
  min-height: 44px;
}
.gp-back-btn:hover { color: var(--color-primary); }
.gp-collection-head { margin-bottom: 8px; }

/* --- شبكة صور صفحة المجموعة: كروت متساوية الحجم بمسافات ثابتة (Grid) --- */
.gp-gallery--masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.gp-gallery--masonry .gp-gallery__item {
  width: 100%;
  margin: 0;
}
@media (min-width: 480px) { .gp-gallery--masonry { gap: 18px; } }
@media (min-width: 768px) { .gp-gallery--masonry { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
@media (min-width: 1024px) { .gp-gallery--masonry { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
@media (max-width: 340px) { .gp-gallery--masonry { grid-template-columns: 1fr; gap: 12px; } }

/* Lightbox */
.gp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  background: rgba(6, 21, 41, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-fast), visibility var(--t-fast);
}
.gp-lightbox.is-open { opacity: 1; visibility: visible; }
.gp-lightbox__figure { max-width: 900px; width: 100%; text-align: center; }
.gp-lightbox__figure img {
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  border-radius: var(--radius-card);
  background: var(--color-light-gray);
}
.gp-lightbox__caption {
  margin-top: 16px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
.gp-lightbox__close {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}
.gp-lightbox__close:hover { background: var(--color-primary); }
.gp-lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}
.gp-lightbox__arrow:hover { background: var(--color-primary); }
.gp-lightbox__arrow--prev { right: 22px; }
.gp-lightbox__arrow--next { left: 22px; }
.gp-lightbox__zoom {
  position: absolute;
  top: 22px;
  left: 78px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}
.gp-lightbox__zoom:hover { background: var(--color-primary); }
.gp-lightbox__counter {
  position: absolute;
  top: 30px;
  right: 22px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
}
.gp-lightbox__figure img.is-zoomed {
  max-height: none;
  cursor: zoom-out;
  transform: scale(1.7);
  transition: transform 0.3s var(--ease-out, ease);
}
.gp-lightbox__figure img { cursor: zoom-in; }
.gp-lightbox__figure { overflow: auto; max-height: 80vh; }


/* ==========================================================================
   11) صفحة اتصل بنا
   ========================================================================== */
.gp-info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 24px;
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.gp-info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.gp-info-card h3 { font-size: 17px; margin: 0 0 4px; }
.gp-info-card a, .gp-info-card p { font-size: 16px; margin: 0; color: var(--color-text-muted); }
.gp-info-card a:hover { color: var(--color-primary); }
.gp-info-card__val { direction: ltr; display: inline-block; }

.gp-contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: start;
}

.gp-form {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 34px 30px;
}
.gp-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.gp-field { margin-bottom: 18px; }
.gp-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-dark);
}
.gp-field input,
.gp-field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--border-soft);
  background: var(--color-light-gray);
  font-family: inherit;
  font-size: 16px;
  color: var(--color-dark);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.gp-field input::placeholder,
.gp-field textarea::placeholder { color: #9AA0A8; }
.gp-field input:focus,
.gp-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-white);
}
.gp-field textarea { resize: vertical; min-height: 140px; }

.gp-form__note {
  margin-top: 14px;
  font-size: 14px;
  display: none;
}
.gp-form__note.is-visible { display: block; color: #17A05C; font-weight: 700; }

.gp-map {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 100%;
  background: var(--color-light-gray);
}
.gp-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}
.gp-map__ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 520px;
  text-align: center;
  padding: 30px;
  background: var(--gp-placeholder-bg);
  color: var(--color-navy-deep);
  font-weight: 700;
}
.gp-map__ph i { font-size: 40px; color: var(--color-primary); }


/* ==========================================================================
   12) الاستجابة (Responsive)
   ========================================================================== */

/* ---------- تابلت: 768px – 1199px ---------- */
@media (max-width: 1199px) {
  :root { --header-h: 78px; --header-h-sticky: 66px; }

  .gp-social-rail { display: none; }

  .gp-nav__list { gap: 22px; }
  .gp-nav__link { font-size: 15px; }
  .gp-header__cta { padding: 10px 20px; font-size: 14px; }
  .gp-logo__text { font-size: 16px; }

  .gp-section { padding: 70px 0; }

  .gp-hero { min-height: auto; padding: calc(var(--header-h) + 60px) 0 70px; }
  .gp-hero__inner { grid-template-columns: 1fr; gap: 50px; }
  .gp-hero__visual { min-height: 380px; max-width: 560px; }

  .gp-carousel__track > * { flex: 0 0 calc((100% - 24px) / 2); }
  .gp-carousel--wide .gp-carousel__track > * { flex: 0 0 calc((100% - 24px) / 2); }

  .gp-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .gp-grid--5 { grid-template-columns: repeat(3, 1fr); }
  .gp-grid--3 { grid-template-columns: repeat(2, 1fr); }

  .gp-gallery { grid-template-columns: repeat(2, 1fr); }

  .gp-split, .gp-srow__inner, .gp-why__grid, .gp-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gp-srow:nth-child(even) .gp-srow__media { order: 0; }
  .gp-map iframe, .gp-map__ph { min-height: 380px; }
}

/* ---------- الموبايل: أقل من 768px ---------- */
@media (max-width: 767px) {
  :root { --header-h: 70px; --header-h-sticky: 62px; }

  body { font-size: 16px; }

  /* الحالة 5 — هيدر الموبايل: نفس شكل وسلوك هيدر الديسكتوب تمامًا (لا فرق في الخلفية/البلور/الترانزيشن) */
  .gp-header__inner { flex-direction: row-reverse; }
  .gp-logo__img { height: 46px; }
  .gp-burger { display: flex; }
  .gp-nav, .gp-header__cta { display: none; }

  .gp-section { padding: 55px 0; }
  .gp-section--tight { padding: 45px 0; }
  .gp-section-head { margin-bottom: 34px; }

  .gp-hero { padding: calc(var(--header-h) + 46px) 0 55px; }
  .gp-hero__visual { min-height: 300px; }
  .gp-hero__img--sub { margin-top: -50px; }
  .gp-hero__pulse { width: 74px; height: 74px; font-size: 11px; }
  .gp-hero__shape--1 { width: 200px; height: 200px; }
  .gp-hero__shape--2 { width: 150px; height: 150px; }

  .gp-carousel__track > *,
  .gp-carousel--wide .gp-carousel__track > * { flex: 0 0 86%; }
  .gp-carousel__nav { justify-content: center; }

  .gp-grid { gap: 18px; }
  .gp-grid--2, .gp-grid--3, .gp-grid--4, .gp-grid--5 { grid-template-columns: 1fr; }
  .gp-gallery { grid-template-columns: 1fr; gap: 18px; }

  .gp-checklist { grid-template-columns: 1fr; gap: 14px; }

  .gp-split__badge {
    width: 100px; height: 100px;
    bottom: -18px; right: -10px;
  }
  .gp-split__badge b { font-size: 26px; }

  .gp-srow { padding: 45px 0; }
  .gp-svc-block { padding: 55px 0; }
  .gp-svc-block__head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .gp-subtags { grid-template-columns: 1fr; }

  .gp-page-banner { min-height: 260px; }

  .gp-form { padding: 26px 20px; }
  .gp-form__row { grid-template-columns: 1fr; gap: 0; }

  .gp-footer__nav { gap: 10px 18px; }
  .gp-footer__nav a { font-size: 15px; }

  .gp-float-actions { left: 14px; bottom: 14px; }
  .gp-float-actions a { width: 46px; height: 46px; font-size: 20px; }
  .gp-to-top { right: 14px; bottom: 14px; width: 44px; height: 44px; }

  .gp-lightbox__arrow--prev { right: 8px; }
  .gp-lightbox__arrow--next { left: 8px; }
  .gp-lightbox__zoom { left: 10px; top: 14px; width: 40px; height: 40px; }
  .gp-lightbox__close { left: 62px; top: 14px; width: 40px; height: 40px; }
  .gp-lightbox__counter { top: 16px; right: 10px; font-size: 12.5px; padding: 6px 12px; }
  .gp-collection-card__body { padding: 14px; }
  .gp-cta-band__actions .gp-btn { width: 100%; justify-content: center; }
}
