:root {
  --golden-color: #c4a360;
  --dark-blue: #0c1c2d;
  --header-dark-blue: #16293b;
  --main-gold: #c4a360;
  --main-bg: #f9f9f9;
  --muted: #c9a867;
  /* لون النص */
  --accent: #c9a867;
  /* لون التمييز */
  --footer-bg-day: #f3f3f3;
  /* لون الخلفية في النهار */
  --footer-bg-night: #12283a;
  /* لون الخلفية في الليل */
  --golden-color: #c4a360;
  --dark-blue: #0c1c2d;
  --header-dark-blue: #16293b;
  --main-gold: #c4a360;
  --main-bg: #f9f9f9;
  --muted: #c9a867;
  --accent: #c9a867;
  --footer-bg-day: #f3f3f3;
  --footer-bg-night: #12283a;
  --bg: var(--main-bg);
  --card: #fff8e1;
  --step-bg: #ffffff;
  --step-border: #e3d8b5;
  --hover: #fdf4d3;
  --shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  --text: #0c1c2d;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cairo", sans-serif;
  transition: background-color 0.3s, color 0.3s;
  background-color: #f8f8f8;
  color: var(--golden-color);
}

body.dark-mode {
  background-color: var(--dark-blue);
  color: var(--golden-color);
}

body.dark-mode header {
  background-color: var(--header-dark-blue);
}

header {
  background-color: #f1f1f1;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  justify-content: space-between;
  position: relative;
  transition: background-color 0.3s;
}

/* الجزء الخاص بثبات الهيدر عند الاسكرول بالماوس */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  /* علشان يكون فوق كل العناصر */
}

/* الشعار على اليسار */
.logo {
  flex-shrink: 0;
  order: 1;
  animation: slideInFromRight 1.5s ease forwards;
  /* حركة من اليمين لليسار */
}

.logo a {
  display: inline-block;
}

.logo img {
  height: 80px;
  margin-right: 28px;
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* المنيو في الوسط */
nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  order: 2;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2px;
}

nav ul li {
  opacity: 0;
  transform: translateY(-30px);
  animation-fill-mode: forwards;
  animation-name: menuFadeDown;
  animation-duration: 1.5s;
  animation-timing-function: ease;
}

nav ul li:nth-child(1) {
  animation-delay: 0s;
}

nav ul li:nth-child(2) {
  animation-delay: 0.2s;
}

nav ul li:nth-child(3) {
  animation-delay: 0.4s;
}

nav ul li:nth-child(4) {
  animation-delay: 0.6s;
}

nav ul li:nth-child(5) {
  animation-delay: 0.8s;
}

nav ul li:nth-child(6) {
  animation-delay: 1s;
}

nav ul li:nth-child(7) {
  animation-delay: 1.2s;
}

nav ul li:nth-child(8) {
  animation-delay: 1.3s;
}

nav ul li:nth-child(9) {
  animation-delay: 1.4s;
}

@keyframes menuFadeDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

nav ul li a {
  color: var(--golden-color);
  text-decoration: none;
  padding: 10px 18px;
  font-weight: 600;
  transition: background 0.3s, color 0.3s, transform 2s ease;
  display: block;
  cursor: pointer;
  white-space: nowrap;
}

nav ul li a:hover {
  background-color: rgba(196, 163, 96, 0.2);
  border-radius: 5px;
  transform: translateY(-10px);
}

nav ul li a:active {
  transform: translateX(20px);
  transition: transform 2s ease;
}

/* أيقونة الوضع الليلي على اليمين */
.right-controls {
  flex-shrink: 0;
  order: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  background-color: #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s, color 0.3s;
  user-select: none;
  color: var(--golden-color);

  border: none;
  /* إزالة أي حدود */
}

.right-controls svg {
  width: 20px;
  height: 20px;
  fill: var(--golden-color);
  transition: fill 0.3s;
}

body.dark-mode .right-controls {
  background-color: var(--header-dark-blue);
  color: var(--golden-color);
}

body.dark-mode .right-controls svg {
  fill: var(--golden-color);
}

/* الشاشات الكبيرة */
@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }

  .left-controls {
    display: none;
    /* نخفيها في الكبير */
  }

  header {
    justify-content: space-between;
  }
}

/* الشاشات الصغيرة */
@media (max-width: 810px) {
  nav ul {
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--golden-color);
    height: 100vh;
    width: 100%;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding-top: 60px;
    z-index: 9999;
    gap: 10px;
    justify-content: flex-start;
    padding-left: 0;
    order: 3;
  }

  /* حجم الوجو في الشاشات الصغيرة  */

  @media (max-width: 810px) {
    .logo img {
      height: 50px;
    }
  }

  nav ul.active {
    transform: translateX(0);
  }

  nav ul li {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    text-align: center;
  }

  nav ul li a {
    font-size: 20px;
    color: #3f2e00;
  }

  body.dark-mode nav ul li a {
    color: #3f2e00;
  }

  .menu-toggle {
    display: block;
    position: fixed;
    top: 12px;
    left: 12px;
    background: transparent;
    font-weight: bold;
    z-index: 10002;
    order: 1;
  }

  /* أيقونة الوضع على اليسار جنب القائمة */
  .left-controls {
    display: flex;
    order: 2;
    position: fixed;
    top: 12px;
    left: 56px;
    z-index: 10002;
    gap: 10px;
  }

  .right-controls {
    display: none;
  }

  /* تصغير أيقونة الوضع الليلي في الصغير */
  #themeToggleMobile {
    width: 24px !important;
    height: 24px !important;
    padding: 0;
    border: none;
    /* إزالة الحدود */
    background-color: #fff1c2;
    color: #3f2e00;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
  }

  #themeToggleMobile svg {
    width: 14px !important;
    height: 14px !important;
    fill: #3f2e00;
  }

  body.dark-mode #themeToggleMobile {
    background-color: var(--header-dark-blue);
    color: var(--golden-color);
  }

  body.dark-mode #themeToggleMobile svg {
    fill: var(--golden-color);
  }
}

/* تقليل المسافة وتقليل حجم الخط ابتداء من 992px */
@media (max-width: 992px) and (min-width: 769px) {
  nav ul {
    gap: 8px;
  }

  nav ul li a {
    padding: 8px 14px;
    font-size: 14px;
  }
}

/* تقليل المسافة وتقليل حجم الخط تحت 768 */
@media (max-width: 768px) {
  nav ul li a {
    font-size: 18px;
    padding: 10px 15px;
  }
}

/* قائمة الهواتف - الهامبرجر فقط للشاشات الصغيرة */
/* قائمة الهواتف - تغطي الشاشة كاملة مع انزلاق من اليمين لليسار */
@media (max-width: 810px) {
  nav ul {
    display: none;
  }

  #menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #c4a360;
    padding-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
    z-index: 1000;
    overflow-y: auto;

    /* إعداد الحركة */
    transform: translateX(100%);
    /* مخفية خارج الشاشة يمين */
    transition: transform 0.5s ease-in-out;
    /* سرعة الحركة وسلاستها */
  }

  #menu.active {
    transform: translateX(0);
    /* تتحرك لتصبح مرئية */
  }

  #menu a {
    display: block;
    padding: 7px 20px;
    color: #ffff;
    text-decoration: none;
    position: relative;
    margin-bottom: 3px;
    border-radius: 6px;
    background-color: #c4a360;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
  }

  #menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: gba(196, 163, 95);
    border-radius: 2px;
  }
}

/* /////////////////////////////////////////////////////////////////////////////////// */
/* تنسيقات العنوان الرئيسي للاقسام  */
.section-title-main {
  display: inline-block;
  padding: 5px 15px;
  font-size: 28px;
  font-weight: bold;
  color: var(--main-gold);
  position: relative;
  /* ضروري لزوايا البوردر */
  border: 2px solid var(--main-gold);
  /* بوردر ثابت */
  border-top-right-radius: 20px;
  /* انحناء أعلى اليمين */
  border-bottom-left-radius: 20px;
  /* انحناء أسفل اليسار */
}

/* تصغير الخط في الشاشات الصغيرة */
@media (max-width: 768px) {
  .section-title-main {
    font-size: 20px;
    padding: 10px 25px;
  }
}

@media (max-width: 480px) {
  .section-title-main {
    font-size: 18px;
    padding: 8px 20px;
  }
}

/* نهاية العنوان الرئيسي  */
/* ////////////////////////////////////////////////////////////////////////////////////////////// */
/* -------------------------------- */

/* ///////////////////////////////////////////////////////////////////////////////////////////// */
/* القسم الثاني السلايدر شو  */

body {
  margin: 0;
  font-family: "Cairo", Arial, sans-serif;
  background: #dedcd8;
  overflow-x: hidden;
  position: relative;
}

/* الخلفية الذهبية (مخفّضة الحجم) */
.background-lines {
  position: absolute;
  top: 200px;
  left: 0;
  width: 100%;
  height: 400px;
  /* حجم أصغر */
  max-height: 50vh;
  z-index: 0;
  overflow: hidden;
}

.background-lines svg {
  width: 100%;
  height: 100%;
}

.background-lines path {
  animation: moveLines 8s ease-in-out infinite alternate;
}

@keyframes moveLines {
  0% {
    transform: translateX(0);
    opacity: 0.6;
  }

  100% {
    transform: translateX(30px);
    opacity: 1;
  }
}

/* السلايدر */
.slider-container {
  position: relative;
  max-width: 800px;
  margin: 120px auto 60px;
  /* مسافة فوق وتحت */
  overflow: hidden;
  z-index: 1;
  border-radius: 15px;
  padding: 0 15px;
  /* حشو جانبي */
}

.slides {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
  direction: ltr;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px;
}

/* الصورة على اليمين */
.slide img {
  max-width: 420px;
  border-radius: 10px;
  flex-shrink: 0;
  object-fit: cover;
  order: 1;
  /* الصورة ثانيًا */
}

/* المحتوى على اليسار */
.slide-content {
  color: #c4a360;
  flex-grow: 1;
  text-align: left;
  /* لأن المحتوى على اليسار */
  order: 0;
  /* المحتوى أولًا */
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.slide-content h2 {
  margin: 0 0 15px;
  font-size: 2.2rem;
  font-weight: 700;
}

.slide-content p {
  margin: 0 0 15px;
  font-size: 1.25rem;
  line-height: 1.5;
}

.slide-content a.contact-link {
  background: #c4a360;
  color: #fff;
  padding: 6px 10px;
  border-radius: 16px 0 16px 0;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  align-self: center;
  /* يجعل الزر في منتصف العرض */
  transition: background 0.3s;
}

.slide-content a.contact-link:hover {
  background: #544909;
}

/* دوائر التصفح (pagination dots) */
.dots {
  text-align: center;
  margin-top: 15px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: rgba(0, 0, 0, 0.8);
}

/* تجاوب */
@media (max-width: 900px) {
  .slide img {
    max-width: 250px;
  }

  .slide-content h2 {
    font-size: 1.8rem;
  }

  .slide-content p {
    font-size: 1.1rem;
  }

  .slider-container {
    margin: 100px 20px 40px;
  }
}

@media (max-width: 600px) {
  .slide {
    flex-direction: column-reverse;
    /* الصورة فوق المحتوى */
    padding: 20px;
    gap: 20px;
    text-align: center;
  }

  .slide-content {
    order: 1;
    text-align: center;
    align-items: center;
  }

  .slide img {
    order: 0;
    max-width: 100%;
    width: 300px;
    height: auto;
    margin: 0 auto;
  }

  .slide-content a.contact-link {
    padding: 4px 10px;
    font-size: 1rem;
  }
}

/* الكود العادي لوضع النهار */
.slider-lines {
  display: block;
  /* أو أي شكل من أشكال الخطوط */
}

/* إخفاء الخطوط في الوضع المظلم */
@media (prefers-color-scheme: dark) {
  .slider-lines {
    display: none;
  }
}

/* نهاية قسم السلايدر شو  */
/* /////////////////////////////////////////////////////////////////////////////////////////////// */
/* بداية قسم الخدمات  */
.services-section {
  padding: 100px 20px;
  text-align: center;
  background-color: var(--main-bg);
}

.services-description {
  max-width: 700px;
  margin: 15px auto 40px;
  font-size: 18px;
  color: var(--main-gold);
}

/* شبكة البطاقات */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 0 20px;
}

.service-card {
  perspective: 1000px;
  position: relative;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 320px;
  transition: transform 1.2s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}

/* دوران الكارد عند الهوفر + ظل */
.service-card:hover .card-inner {
  transform: rotateY(180deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* بوردر متحرك حول كل بطاقة */
.service-card::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 15px;
  border: 2px solid transparent;
  background: linear-gradient(
    45deg,
    var(--main-gold),
    transparent,
    var(--main-gold)
  );
  background-size: 300% 300%;
  animation: border-rotate 6s linear infinite;
  z-index: -1;
}

/* كود الانميشن لحركة البورد حول البطاقات */
/* بوردر متحرك سلس حول كل بطاقة */
.service-card::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 15px;
  border: 2px solid transparent;
  background: linear-gradient(
    45deg,
    #0c1c2d,
    transparent,
    var(--main-gold),
    transparent
  );
  background-size: 400% 400%;
  animation: border-rotate-slow 10s linear infinite;
  /* حركة بطيئة وسلسة */
  z-index: -1;
}

@keyframes border-rotate-slow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* الأمامية والخلفية */
.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

/* الأمامية */
.card-front i {
  font-size: 50px;
  color: var(--main-gold);
  margin-bottom: 20px;
}

.card-front h3 {
  font-size: 20px;
  color: var(--main-gold);
  margin-bottom: 10px;
}

/* النص المختصر تحت العنوان */
.card-front p {
  font-size: 14px;
  color: var(--main-gold);
  margin-bottom: 20px;
}

/* الخلفية */
.card-back {
  transform: rotateY(180deg);
}

.card-back i {
  font-size: 50px;
  color: var(--main-gold);
  margin-top: 35px;
}

.card-back p {
  font-size: 15px;
  color: var(--main-gold);
  text-align: center;
}

/* الأيقونة ثابتة عند الهوفر */
.service-card:hover .card-front i {
  transform: none;
  animation: none;
}

/* استجابة للشاشات */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .card-back i {
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .card-back {
    transform: rotateY(180deg);
  }

  /* الحركة للشاشات الصغيرة فقط */
  @media (max-width: 768px) {
    .card-inner {
      animation: flip-card 10s infinite ease-in-out;
    }
  }

  @keyframes flip-card {
    0% {
      transform: rotateY(0deg);
    }

    20% {
      transform: rotateY(0deg);
    }

    /* توقف أمامي */
    30% {
      transform: rotateY(180deg);
    }

    /* قلب البطاقة */
    90% {
      transform: rotateY(180deg);
    }

    /* توقف خلفي */
    100% {
      transform: rotateY(0deg);
    }

    /* رجوع للأمام */
  }
}

/* الوضع الليلي */
.dark-mode {
  --main-bg: #0c1c2d;
  --main-gold: #c4a360;
}

.dark-mode body {
  background-color: var(--main-bg);
}

.dark-mode .services-section {
  background-color: var(--main-bg);
}

.dark-mode .section-title {
  color: var(--main-gold);
  border-color: var(--main-gold);
}

.dark-mode .services-description {
  color: var(--main-gold);
}

.dark-mode .card-front,
.dark-mode .card-back {
  background-color: #0c1c2d;
  color: var(--main-gold);
}

.dark-mode .card-front p,
.dark-mode .card-back p,
.dark-mode .card-front h3 {
  color: var(--main-gold);
}

/* البورد المتحرك يبقى واضح */
.dark-mode .service-card::before {
  background: linear-gradient(
    45deg,
    var(--main-gold),
    transparent,
    var(--main-gold),
    transparent
  );
}

/* الوضع الليلي - البوردر المتحرك حول الكارد */
body.dark-mode .service-card::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 15px;
  border: 2px solid transparent;
  /* سمك البوردر */
  background: linear-gradient(
    90deg,
    /* اتجاه الدوران */ #dedcd8,
    /* ذهبي منير */ transparent,
    #c4a360,
    transparent
  );
  background-size: 400% 400%;
  animation: border-spin 5s linear infinite;
  /* حركة منتظمة حول الكارد */
  z-index: -1;
  pointer-events: none;
}

/* انميشن الدوران المنتظم */
@keyframes border-spin {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* نهاية قسم الخدمات  */

/* ////////////////////////////////////////////////////////////////////////////////////////// */
/* بداية قسم كيف نعمل  */
.wrap {
  padding-top: 100px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.eyebrow {
  font-size: 0.95rem;
  color: var(--muted);
}
.eyebrow-title {
  padding-top: 70px;
  margin: 10px 0 12px;
  font-size: 2rem;
  color: var(--main-gold);
}
p.lead {
  max-width: 820px;
  margin: 0 auto 28px;
  color: var(--muted);
  line-height: 1.7;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.column {
  padding: 26px 18px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}
strong {
  color: var(--dark-blue);
}
.dark-mode strong {
  color: var(--main-gold);
}
.step {
  width: 100%;
  max-width: 520px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  padding: 16px;
  border-radius: 12px;
  background: var(--step-bg);
  border: 1px solid var(--step-border);
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, background 0.18s ease,
    border-color 0.18s ease;
}
.step:hover {
  background: var(--accent);
  transform: translateY(-4px);
}

.step:hover p {
  color: #fff;
}

.step-number {
  min-width: 56px;
  height: 56px;
  border-radius: 10px;
  background: var(--main-gold);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  transition: background 0.25s ease;
}
.step-number:hover {
  background: var(--golden-color);
}

.step-content {
  flex: 1;
  text-align: right;
}
.step-content p {
  margin: 0;
  color: var(--golden-color);
  line-height: 1.5;
}

.column-title {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--main-gold);
  border: 1px solid var(--step-border);
  font-weight: 600;
  margin-bottom: 18px;
  color: #fff;
}

.connector {
  width: 80px;
  height: 60px;
  display: block;
}
.steps .with-connector {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.steps .with-connector .step {
  order: 1;
}

@media (max-width: 880px) {
  .wrap {
    padding: 40px 15px; /* مسافة داخلية */
    text-align: center; /* يضمن النص في المنتصف */
    margin-right: 30px;
  }

  .how-grid {
    grid-template-columns: 1fr; /* عمود واحد */
    justify-items: center; /* يخلي المحتوى يتوسط */
  }

  .column {
    padding: 20px 10px;
    text-align: center;
  }

  .steps {
    align-items: center; /* يخلي الخطوات وسط الشاشة */
  }

  .step {
    justify-content: center;
    text-align: center;
    max-width: 100%; /* يمنع خروج العنصر خارج الشاشة */
  }

  .step-content {
    text-align: center;
  }
}

.step {
  background: #fff;
  border: 1px solid var(--golden-color);
  color: #000;
}

.step-number {
  background: var(--main-gold);
  color: #fff;
}

.section-title {
  background: transparent;
  border: 1px solid var(--golden-color);
  color: var(--golden-color);
  font-weight: bold;
  font-size: 20px;
}

/* الوضع الليلي */
body.dark-mode {
  background-color: var(--dark-blue);
  color: #e6e6e6;
}

body.dark-mode .step {
  background: var(--header-dark-blue);
  border: 1px solid var(--muted);
  color: #e6e6e6;
}

body.dark-mode .step-number {
  background: var(--main-gold);
  color: #0c1c2d;
  font-weight: bold;
}

body.dark-mode .section-title {
  background: transparent;
  border: 1px solid var(--main-gold);
  color: var(--main-gold); /* العنوان باللون الذهبي */
  font-weight: bold;
  font-size: 20px;
}

body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4 {
  color: var(--main-gold); /* كل العناوين ذهبية */
}

body.dark-mode p {
  color: var(--main-gold); /* النصوص العادية بلون فاتح */
}

/* body.dark-mode footer {
  background-color: var(--footer-bg-night);
} */

/* footer {
  background-color: var(--footer-bg-day);
  transition: background 0.3s, color 0.3s;
} */

/* تأثير hover على الأيقونات */
.step-number:hover {
  background: var(--golden-color);
  color: #fff;
}

/* نهاية قسم كيف نعمل  */

/* ////////////////////////////////////////////////////////////////////////////////////////// */
/* بداية قسم انجازتنا */

.our-numbers-section {
  padding: 100px 20px;
  text-align: center;
  background-color: var(--main-bg);
  color: var(--text);
}

body.dark-mode .our-numbers-section {
  background-color: var(--dark-blue);
  color: var(--golden-color);
}

.our-numbers-section .section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--main-gold);
}

.our-numbers-section .section-lead {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 50px;
  color: var(--muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 20px;
  justify-items: center;
}

.number-card {
  background-color: var(--card);
  border-radius: 15px;
  padding: 30px 20px;
  width: 90%;
  max-width: 220px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, background-color 0.3s ease;
  cursor: default;
}

.number-card:hover {
  transform: translateY(-8px);
  background-color: var(--hover);
}

.number-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--golden-color);
}

.number-card .card-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.number-card .card-number {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--main-gold);
}

/* الوضع الليلي */
body.dark-mode .number-card {
  background-color: var(--header-dark-blue);
}

body.dark-mode .number-card:hover {
  background-color: var(--muted);
}

body.dark-mode .number-card:hover .card-title {
  color: #fff;
}
body.dark-mode .number-card:hover .card-number {
  color: #fff;
}
body.dark-mode .number-card:hover .icon {
  color: var(--footer-bg-night);
}

body.dark-mode .number-card .card-number {
  color: var(--main-gold);
}

/* الجوال */
@media (max-width: 600px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

/* نهاية قسم انجازتنا */

/* ////////////////////////////////////////////////////////////////////////////////////////// */
/* بداية قسم شركاء النجاح */
.partners-section {
  padding: 100px 20px;
  text-align: center;
  background: var(--background-color);
  color: var(--text);
  transition: background-color 0.3s, color 0.3s;
}

.dark-mode .partners-section {
  background-color: var(--dark-blue);
}

.partners-section .section-title {
  font-size: 2rem;
  color: var(--main-gold);
  margin-bottom: 10px;
}

.partners-section .section-lead {
  color: var(--accent);
  margin-bottom: 40px;
  font-size: 1rem;
}

.partners-carousel {
  position: relative;
}

.partners-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 10px;
}

.partners-wrapper::-webkit-scrollbar {
  display: none;
}

.partner-card {
  background: var(--golden-color);
  border-radius: 20%;
  box-shadow: var(--shadow);
  padding: 4px;
  flex: 0 0 auto;
  width: 130px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background-color 0.3s;
}

.partner-card:hover {
  transform: translateY(-8px);
  background: var(--hover);
}

.partner-card img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* الأسهم أسفل الكاروسيل */
.carousel-controls.partners-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.carousel-controls.partners-controls .carousel-btn {
  background: var(--main-gold);
  border: none;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  z-index: 10;
}

.carousel-controls.partners-controls .carousel-btn:hover {
  background: var(--accent);
  transform: scale(1.1);
}

/* الاستجابة للشاشات */
@media (max-width: 1024px) {
  .partner-card {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .partner-card {
    width: 100px;
    height: 100px;
  }
}

/* ////////////////////////////////////////////////////////////////////////////////////////// */
/* بداية قسم اراء العملاء  */
.client-reviews-section {
  padding: 100px 20px;
  text-align: center;
  background-color: var(--main-bg);
  color: var(--text);
}

body.dark-mode .client-reviews-section {
  background-color: var(--dark-blue);
  color: var(--golden-color);
}

.client-reviews-section .section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--main-gold);
}

.client-reviews-section .section-lead {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--muted);
}

.reviews-carousel {
  position: relative;
}

.reviews-wrapper {
  display: flex;
  overflow: hidden;
  gap: 20px;
  scroll-behavior: smooth;
  justify-content: center;
}

.review-card {
  background-color: var(--card);
  min-width: 200px;
  max-width: 220px;
  border-radius: 15px;
  padding: 15px;
  box-shadow: var(--shadow);
  flex: 0 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.review-card .profile-icon {
  margin-bottom: 10px;
  color: var(--main-gold);
}
.review-card .reviewer-name {
  font-weight: 600;
  margin-bottom: 8px;
}
.review-card .review-text {
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 8px;
  min-height: 50px;
}
.review-card .review-stars i {
  color: #ffd700;
  margin-right: 2px;
}

body.dark-mode .review-card {
  background-color: var(--header-dark-blue);
}
body.dark-mode .review-card .review-text {
  color: var(--golden-color);
}

.carousel-controls.reviews-controls {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.carousel-btn.reviews-prev,
.carousel-btn.reviews-next {
  background: var(--main-gold);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

.carousel-btn.reviews-prev:hover,
.carousel-btn.reviews-next:hover {
  background: var(--golden-color);
}

@media (max-width: 768px) {
  .reviews-wrapper {
    gap: 15px;
  }
  .review-card {
    min-width: 200px;
    max-width: 280px;
  }
}
/* جعل قسم آراء العملاء متجاوب */
@media (max-width: 768px) {
  .reviews-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
  }

  .review-card {
    flex: 0 0 90%; /* العرض تقريبًا بطاقة واحدة */
    /* max-width: 90%; */
    scroll-snap-align: center;
  }
}

/* نهاية قسم اراء العملاء  */

/* //////////////////////////////////////////////////////////////////////////////////// */
/* بداية قسم من نحن */

/* قسم من نحن */
.about-section {
  padding: 100px 20px;
  background-color: var(--background-color);
  transition: background 0.3s ease;
  text-align: center;
  /* ده اللي هيخلي العنوان في النص */
}

.about-section .section-title {
  font-size: 1.7rem;
  margin-bottom: 50px;
  border: 2px solid var(--primary-color);
  display: inline-block;
  /* سيبه كده عادي */
  padding: 5px 13px;
  font-weight: bold;

  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
  border-radius: 0px 30px 0 30px;
}

/* محتوى القسم */
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-right: 30px;
}

@media (max-width: 768px) {
  .about-content {
    margin-right: 0px;
  }

  .about-text p {
    margin-right: 13px;
  }
}

/* الصورة */
.about-image {
  flex: 1 1 40%;
  opacity: 0;
  transform: translateX(-40px);
  animation: fadeInLeft 1s ease forwards;
  animation-delay: 0.3s;
}

.about-image img {
  border: solid 1px var(--main-gold);
  width: 70%;
  border-radius: 100px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* النصوص */
.about-text {
  flex: 1 1 55%;
  opacity: 0;
  transform: translateX(40px);
  animation: fadeInRight 1s ease forwards;
  animation-delay: 0.6s;
}

.about-text h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* البطاقات */
.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.about-card {
  background-color: var(--card-background);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 1px solid var(--primary-color);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

/* ترتيب التأخير لكل بطاقة */
.about-card:nth-child(1) {
  animation-delay: 0.9s;
}

.about-card:nth-child(2) {
  animation-delay: 1.1s;
}

.about-card:nth-child(3) {
  animation-delay: 1.3s;
}

.about-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.about-card p {
  font-size: 0.95rem;
  color: var(--text-color);
}

/* الهوفر */
.about-card:hover {
  background-color: var(--primary-color);
  color: #fff;
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}

.about-card:hover h4,
.about-card:hover p {
  color: #fff;
}

/* الوضع الليلي والنهاري */
/* الوضع الليلي والنهاري */
:root {
  --primary-color: #c5a253;
  /* الذهبي */
  --background-color: #dedcd8;
  /* النهاري */
  --card-background: #e8e6e2;
  /* قريب من الخلفية بس أفتح */
  --text-color: #333333;
}

body.dark-mode {
  --background-color: #0c1c2d;
  /* الليلي */
  --card-background: #132235;
  /* لون قريب من الخلفية */
  --text-color: #c9d1d9;
}

/* موبايل Responsive */
@media (max-width: 768px) {
  .about-section .section-title {
    font-size: 1.4rem;
    padding: 8px 15px;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }
}

/* أنيميشن */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* /////////////////////////////////////////////////////////////////////////////////// */

/* ================= بداية قسم اتصل بنا ================= */

/* الحاوية الرئيسية */
#contact {
  padding: 100px 20px;
  background: var(--main-bg);
  transition: background 0.3s, color 0.3s;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

body.dark-mode #contact {
  background: var(--dark-blue);
}

#contact.active {
  animation: fadeSlideUp 1s ease forwards;
}

/* رأس السكشن */
.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h2 {
  display: inline-block;
  padding: 5px 15px;
  font-size: 28px;
  font-weight: bold;
  color: var(--main-gold);
  border: 2px solid var(--main-gold);
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.contact-header p {
  max-width: 700px;
  margin: auto;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
}

body.dark-mode .contact-header p {
  color: var(--golden-color);
}

/* responsive heading */
@media (max-width: 768px) {
  .contact-header h2 {
    font-size: 20px;
    padding: 10px 25px;
  }
}

@media (max-width: 480px) {
  .contact-header h2 {
    font-size: 18px;
    padding: 8px 20px;
  }
}

/* الشبكة */
.contact-container {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 180px;
  padding: 0 20px;
}

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* القسم الأيمن (معلومات التواصل) */
.contact-info {
  background: var(--main-bg);
  padding: 10px 10px;
  border-radius: 20px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 390px;
  margin: 20px auto;
  position: relative;
}

body.dark-mode .contact-info {
  background: var(--header-dark-blue);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

/* الشريط العمودي خلف الأيقونات */
.contact-info::before {
  content: "";
  position: absolute;
  top: 120px;
  bottom: 148px;
  right: 40px;
  width: 4px;
  background: var(--golden-color);
  border-radius: 30px;
  z-index: 0;
}

/* كل عنصر (أيقونة + نص/رابط) */
.contact-info .item {
  display: flex;
  align-items: center;
  gap: 13px;
  position: relative;
  z-index: 1;
  text-align: center;
  top: 90px;
}

@media (max-width: 768px) {
  .contact-info .item {
    top: 5px;
    margin: 5px;
  }
}

/* الأيقونات */
.contact-info .item i {
  background: var(--golden-color);
  color: #fff;
  font-size: 20px;
  padding: 9px;
  border-radius: 22px;
  min-width: 50px;
  text-align: center;
  border: 2px solid var(--golden-color);
  transition: 0.3s ease-in-out;
}

.contact-info .item i:hover {
  transform: scale(1.1);
}

/* النصوص */
.contact-info .item span,
.contact-info .item a {
  background: var(--golden-color);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  flex: 1;
  text-align: center;
  transition: 0.3s ease-in-out;
}

.contact-info .item a:hover {
  background: #b8904e;
}

/* القسم الأيسر (الفورم) */

.contact-form {
  background: var(--main-bg);
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 410px;
  transition: 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .contact-form {
    min-width: 265px;
  }
}

body.dark-mode .contact-form {
  background: var(--header-dark-blue);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.contact-form h3 {
  color: var(--dark-blue);
  margin-bottom: 20px;
}

body.dark-mode .contact-form h3 {
  color: var(--golden-color);
}

/* الفورم */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

body.dark-mode .contact-form input,
body.dark-mode .contact-form select,
body.dark-mode .contact-form textarea {
  background: var(--dark-blue);
  border-color: var(--golden-color);
  color: #fff;
}
@media (max-width: 768px) {
  .contact-form input {
    min-width: 20px;
  }
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--main-gold);
  box-shadow: 0 0 6px rgba(196, 163, 96, 0.5);
}

.contact-form button {
  padding: 14px;
  background: var(--main-gold);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #a8894d;
}

/* رقم الجوال */
.phone-input {
  display: flex;
}

.phone-input select {
  width: 100px;
  margin-left: 10px;
}

/* حركة الدخول */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* الشاشات الصغيرة */
@media (max-width: 768px) {
  .contact-info {
    max-width: 100%;
    padding: 15px 10px;
    gap: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  }

  .contact-info::before {
    display: none;
  }

  .contact-info .item {
    flex-direction: row;
    align-items: center;
    gap: 2px;
  }

  .contact-info .item i {
    font-size: 14px;
    padding: 8px;
    min-width: 32px;
    max-width: 32px;
    min-height: 32px;
    max-height: 32px;
  }

  .contact-info .item span,
  .contact-info .item a {
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 20px;
  }
}

/* ================= نهاية قسم اتصل بنا ================= */

/* /////////////////////////////////////////////////////////////////////////////////// */
/* بداية قسم ايقونات السوشيال ميديا  */

/* الشريط */
.social-bar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: var(--main-gold);
  /* الخلفية الذهبية */
  padding: 14px 6px;
  border-radius: 12px 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* تقليل المسافة بين الأيقونات */
  align-items: center;
  z-index: 999;
}

/* الأيقونات */
.social-bar a {
  background: var(--header-dark-blue);
  /* خلفية الأيقونة كحلي */
  color: var(--main-gold);
  /* لون الأيقونة ذهبي */
  font-size: 18px;
  /* تكبير الأيقونة */
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 2px solid var(--main-bg);
  /* البوردر أبيض */
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s, box-shadow 0.3s;
}

/* تأثير عند المرور */
.social-bar a:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

/* موبايل */
@media (max-width: 768px) {
  .social-bar a {
    width: 24px;
    height: 24px;
    font-size: 16px;
  }
}

/* نهاية قسم ايقونات السوشيال ميديا  */

/* /////////////////////////////////////////////////////////////////////////////////// */

/* بداية ايقونة تواصل مع خبير  */
/* الزر الجانبي */
.whatsapp-text {
  position: fixed;
  left: 0;
  bottom: 300px;
  /* أعلى الفوتر بمسافة 8px */
  z-index: 999;
  background: var(--main-gold);
  border: 2px solid var(--main-gold);
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 8px 11px;
  font-size: 13px;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  transform-origin: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: shake-cycle 5s infinite;
}

/* حركة الهز ±10 درجات كل 5 ثواني */
@keyframes shake-cycle {
  0%,
  10% {
    transform: rotateZ(0deg);
  }

  5% {
    transform: rotateZ(10deg);
  }

  100% {
    transform: rotateZ(0deg);
  }
}

/* عند الهوفر تكبير الزر بالكامل */
.whatsapp-text:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(70, 43, 43, 0.25);
}

/* استجابة للشاشات الصغيرة */
@media (max-width: 768px) {
  .whatsapp-text {
    padding: 6px 12px;
    font-size: 12px;
    bottom: 180px;
    /* أعلى الفوتر بمسافة 8px */
  }
}

/* نهاية ايقونة تواصل مع خبير  */

/* ////////////////////////////////////////////////////////////////////////////////// */
/* الفوتر */
.site-footer {
  font-family: "Cairo", sans-serif;
  background-color: var(--footer-bg-day);
  color: var(--muted);
  padding: 18px 20px 20px;
  transition: background-color 0.3s ease;
}

body.dark-mode .site-footer {
  background-color: var(--footer-bg-night);
  color: var(--muted);
}

.footer-top {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  max-width: 1150px;
  margin: 0 auto 18px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-logo {
  width: 200px;
  height: auto;
  object-fit: contain;
}

.footer-tagline {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 16px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.footer-contact h4 {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.social-icons {
  display: flex;
  gap: 5px;
  align-items: center;
}

.social {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--main-gold);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  font-size: 18px;
}

.social:hover {
  transform: translateY(-4px);
  background: var(--accent);
  color: #07202a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(118, 100, 11, 0.06);
  padding-top: 14px;
  text-align: center;
}

.footer-bottom p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.footer-center {
  max-width: 1150px;
  margin: 0 auto 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-licenses {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.license-logo {
  max-height: 60px;
  object-fit: contain;
}

/* روابط الصفحات */
.footer-pages {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .footer-pages {
    display: none;
  }
}
.footer-page-link {
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s ease;
}

.footer-page-link:hover,
.footer-page-link:focus {
  color: var(--accent);
  text-decoration: underline;
}

/* استجابة */
@media (max-width: 600px) {
  .footer-licenses {
    flex-direction: column;
    gap: 20px;
  }

  .license-logo {
    max-height: 50px;
  }

  .footer-pages {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 900px) {
  .footer-top {
    gap: 20px;
    padding-bottom: 6px;
  }

  .footer-brand,
  .footer-contact {
    align-items: center;
    text-align: center;
    width: 100%;
  }
}

/*////////////////////////////////////////////////////////////////////////////////////////// */
