/* ===== إعدادات عامة ===== */
body {
  margin: 0;
  font-family: "Cairo", sans-serif;
  background-color: #eaf2f4; /* خلفية عامة فاتحة */
  direction: rtl;
}

/* ===== الهيدر ===== */
header {
  background-color: #4289a7;
  color: white;
  position: relative;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

/* ===== روابط التنقل ===== */
.navbar ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.navbar li {
  margin: 0 12px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s, background 0.3s;
  padding: 6px 12px;
  border-radius: 4px;
}

.navbar a:hover {
  background-color: #54e1f2;
  color: #4289a7;
}

/* ===== زر القائمة للموبايل ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 25px;
  height: 20px;
  justify-content: space-between;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* ===== القائمة الجانبية للموبايل ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100vh;
  background-color: #4289a7;
  color: white;
  transition: right 0.4s ease-in-out;
  padding-top: 70px;
  z-index: 999;
  overflow: hidden;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
}

/* روابط القائمة مع الانيميشن */
.mobile-menu li {
  margin: 18px 0;
  text-align: center;
  opacity: 0;
  transform: translateX(50px); /* يبدأ من اليمين */
  transition: all 0.5s ease;
}

.mobile-menu.active li {
  opacity: 1;
  transform: translateX(0);
}

/* تتابع ظهور الروابط */
.mobile-menu.active li:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-menu.active li:nth-child(2) {
  transition-delay: 0.2s;
}
.mobile-menu.active li:nth-child(3) {
  transition-delay: 0.3s;
}
.mobile-menu.active li:nth-child(4) {
  transition-delay: 0.4s;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  padding: 6px 12px;
  border-radius: 4px;
  transition: color 0.3s, background 0.3s;
}

.mobile-menu a:hover {
  background-color: #54e1f2;
  color: #4289a7;
}

/* ===== متجاوب ===== */
@media (max-width: 768px) {
  .navbar {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}
/* 
/* ===== Hero Section ===== */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: url("مطبخ\ معدل\ \(15\).jpg") center/cover no-repeat;
  position: relative;
  height: 90vh;
  color: #ffe66d;
  padding: 40px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 18%);
  z-index: 1;
}

.hero-content,
.hero-left {
  position: relative;
  z-index: 2;
}

.hero-content.right {
  flex: 1;
  text-align: right;
}

.hero-content h1 {
  color: #b6e9d8; /* بنفسجي قوي */
  font-size: 42px;
  margin-bottom: 20px;
}

.hero-content p {
  color: #111111;
  background-color: rgba(252, 248, 248, 0.7);
  font-size: 18px;
  max-width: 500px;
  border-radius: 6px;
}

.hero-left {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.social-icons a img {
  width: 32px;
  margin-left: 10px;
  filter: brightness(0) invert(1);
}

.call-btn {
  background: #a855f7;
  color: #fff;
  padding: 8px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.phone-number a {
  color: #ffe66d;
  text-decoration: none;
  font-weight: bold;
}

.calc-btn {
  background-color: #ffe66d;
  color: #1a1a1a;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.calc-btn:hover {
  background-color: #a855f7;
  color: #fff;
}

/* ===== النافذة ===== */
.calc-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.calc-content {
  background: #1a1a1a;
  color: #ffe66d;
  padding: 25px 30px;
  border-radius: 10px;
  width: 350px;
  text-align: right;
  position: relative;
  animation: fadeIn 0.5s ease forwards;
}

.close-modal {
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #ffe66d;
}

.calc-step {
  margin-bottom: 15px;
}

.calc-step.hidden {
  display: none;
}

.calc-content input,
.calc-content select {
  width: 100%;
  padding: 8px;
  border: none;
  border-radius: 4px;
  margin-top: 5px;
}

#calculate {
  background-color: #a855f7;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== تصميم الموبايل لقسم الـ Hero ===== */
@media (max-width: 768px) {
  .hero {
    flex-direction: column; /* عمودي بدل أفقي */
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    height: auto; /* ارتفاع تلقائي */
  }

  .hero-content.right {
    text-align: center;
    margin-bottom: 30px;
  }

  .hero-left {
    align-items: center;
    gap: 10px;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .social-icons a img {
    width: 28px;
    margin: 0;
  }

  .call-btn,
  .calc-btn {
    width: 80%;
    text-align: center;
  }

  .phone-number {
    font-size: 16px;
  }

  .calc-content {
    width: 90%;
  }
}
/* ===== أيقونات التواصل ===== */
.social-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.social-icons a {
  font-size: 36px; /* حجم أكبر */
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}

/* الألوان الأصلية لكل منصة */
.social.tiktok i {
  color: #010101; /* تيك توك أسود */
}

.social.instagram i {
  color: #e1306c; /* انستجرام وردي */
}

.social.whatsapp i {
  color: #25d366; /* واتساب أخضر */
}

.social.phone i {
  color: #007bff; /* أزرق هاتف */
}

/* ===== قسم المعرض ===== */
.gallery-section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
}
.gallery-section .container {
  flex-direction: column;
}

/* عنوان المعرض والفلاتر */
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.gallery-header h2 {
  font-size: 32px;
  font-weight: bold;
}

.gallery-filter {
  display: flex;
  gap: 15px;
}

.gallery-filter button {
  padding: 8px 15px;
  border: none;
  background-color: #6a0dad; /* بنفسجي */
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

.gallery-filter button:hover {
  background-color: #ffdd00; /* أصفر */
  color: #000;
}

/* المقال */
.gallery-article {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

/* شبكة الصور */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-item img {
  width: 100%;
  /* height: 250px; */
  display: block;
  border-radius: 8px;
  transition: transform 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* ===== أزرار الفلترة ===== */
.gallery-filter {
  display: flex;
  gap: 12px;
}

.gallery-filter button {
  padding: 10px 18px;
  border: none;
  background-color: #eee;
  color: #333;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.gallery-filter button:hover {
  background-color: #6a0dad;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gallery-filter button.active {
  background-color: #ffdd00;
  color: #000;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
button.load-more {
  color: wheat;
  background-color: #a855f7;
  color: #fff;
  font-weight: bold;
  padding: 10px 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: none;
  margin-top: 40px;
  border-radius: 6px;
}
/* ===== كلمات مفتاحية ===== */
.keyword {
  color: #6a0dad; /* بنفسجي جذاب */
  font-weight: 600;
  font-size: 1.05em;
}

/* ===== أرقام الاتصال ===== */
.phone-link {
  color: #333; /* رمادي داكن */
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s, transform 0.2s;
}

.phone-link:hover {
  color: #6a0dad; /* عند المرور يصبح بنفسجي */
  transform: scale(1.05);
}

/* ===== قسم المقالات ===== */
.articles-section {
  padding: 60px 20px;
  background-color: #f9f9f9; /* خلفية فاتحة نظيفة */
}

.articles-section h2 {
  font-size: 2.2em;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.articles-section .intro {
  font-size: 1.1em;
  line-height: 1.8;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* ===== شبكة المقالات ===== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.articles-grid article {
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.articles-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.articles-grid article h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #6a0dad; /* نفس اللون البنفسجي */
}

.articles-grid article p {
  font-size: 1em;
  line-height: 1.7;
  color: #555;
}

/* ===== دعوة للتواصل ===== */
.articles-grid .cta {
  margin-top: 15px;
  font-weight: 600;
  font-size: 1em;
  color: #333;
}

/* ===== متجاوب ===== */
@media (max-width: 768px) {
  .articles-section h2 {
    font-size: 1.8em;
  }

  .articles-section .intro {
    font-size: 1em;
  }
}

footer {
  background-color: #2c1a4b; /* بنفسجي غامق */
  color: #fff;
  padding: 40px 20px;
  font-family: "Cairo", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 25px;
}

.footer-logo h2 {
  font-size: 28px;
  font-weight: bold;
  margin: 0;
}

.footer-social p {
  font-size: 16px;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 15px;
}

.social-icons a {
  font-size: 32px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}

/* ألوان خاصة لكل شبكة */
.social.tiktok {
  color: #010101;
}
.social.instagram {
  color: #e1306c;
}
.social.whatsapp {
  color: #25d366;
}
.social.phone {
  color: #ffd700;
}

.phone-number a {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  margin: 0 5px;
}

.phone-number a:hover {
  color: #ffd700;
}

.footer-info p {
  font-size: 14px;
  color: #ccc;
  margin: 10px 0 0;
}

/* متجاوب للموبايل */
@media (max-width: 768px) {
  .footer-container {
    gap: 20px;
  }

  .social-icons a {
    font-size: 28px;
  }

  .phone-number a {
    font-size: 16px;
  }
}

.seo-section {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

.seo-section .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.seo-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  flex: 1 1 280px;
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.seo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.card-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #8e44ad; /* بنفسجي */
}

.seo-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #333;
}

.seo-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  text-align: justify;
}

.card-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  background-color: #f1c40f; /* أصفر */
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.card-btn:hover {
  background-color: #d4ac0d;
  transform: scale(1.05);
}

/* متجاوب */
@media (max-width: 768px) {
  .seo-section .container {
    flex-direction: column;
    align-items: center;
  }
}

/* الألوان */
:root {
  --blue: #1e3a8a; /* أزرق غامق */
  --yellow: #facc15; /* أصفر شمسي */
  --white: #ffffff;
  --gray-light: #f3f4f6; /* رمادي فاتح */
}

/* Hero */
.hero-used {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 60px 10%;
  background: linear-gradient(to right, var(--blue), var(--yellow));

  background: url("اثاث\ مستعمل.jpg") center/cover no-repeat;
  color: var(--white);
  flex-wrap: wrap;
  border-radius: 12px;
  margin-bottom: 40px;
  position: relative;
}
.hero-used::after {
  z-index: 1;
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 50%);
}

.hero-used-text {
  flex: 1;
  min-width: 300px;
  z-index: 2;
}

.hero-used-text h1 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-used-text p {
  font-size: 18px;
  color: var(--white);
  text-align: center;
}

/* Sidebar الأيقونات والزر */
.hero-used-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  min-width: 200px;
  z-index: 2;
}

.social-icons-used {
  display: flex;
  gap: 12px;
}

.social-used {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  font-size: 25px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--blue);

  transition: transform 0.3s, background-color 0.3s;
}

.social-used:hover {
  transform: scale(1.2);
  background-color: var(--yellow);
  color: var(--blue);
}

.phone-number-used a {
  color: var(--white);
  font-weight: bold;
  text-decoration: none;
  font-size: 25px;
}

.calc-btn-used {
  background-color: var(--yellow);
  color: var(--blue);
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.3s, background-color 0.3s;
}

/* قسم الكروت */
.used-items {
  padding: 50px 20px;
  background-color: #f8f8f8;
  font-family: "Cairo", sans-serif;
  display: flex;
  flex-direction: column; /* ترتيب عمودي للنص والكروت */
  align-items: center;
}
.used-items .container {
  flex-direction: column;
}

.used-items h2 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #004aad; /* أزرق */
  text-align: center;
}

.used-items p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 800px;
  color: #333;
}

.cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  flex-direction: row; /* الكروت أفقي على الشاشات الكبيرة */
}

/* لو تحب، على الهواتف الصغيرة نعملها عمود */
@media screen and (max-width: 768px) {
  .cards-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

.card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 250px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card h3 {
  color: #004aad; /* أزرق */
  font-size: 1.5rem;
  margin: 15px 15px 10px 15px;
  text-align: center;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 15px 15px 15px;
  color: #333;
}

.card .contact {
  display: flex;
  flex-direction: column;
  margin: 0 15px 15px 15px;
  gap: 5px;
}

.card .contact a {
  display: inline-block;
  background-color: #ffd700; /* أصفر شمسي */
  color: #004aad; /* أزرق */
  text-align: center;
  padding: 10px 0;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}

.card .contact a:hover {
  background-color: #004aad; /* أزرق */
  color: #ffd700; /* أصفر شمسي */
}

/* القسم الرئيسي للاتصال وخرائط */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px;
  background-color: #f9f9f9;
  border-radius: 12px;
}

/* الجزء الأيسر - الخريطة */
.contact-map {
  flex: 1 1 400px;
  min-height: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* الجزء الأيمن - النص والأرقام */
.contact-info {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
}

/* عنوان القسم */
.contact-info h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1e3a8a; /* أزرق */
}

/* فقرة النص */
.contact-info p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* أرقام الهاتف */
.contact-numbers p {
  margin: 0;
}

/* الرقم الأصفر */
.phone-yellow {
  color: #ffd700; /* أصفر شمسي */
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}

.phone-yellow:hover {
  color: #e6c200;
}

/* الرقم الأزرق */
.phone-blue {
  color: #1e3a8a; /* أزرق */
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}

.phone-blue:hover {
  color: #14326b;
}

/* زر الاتصال */
.contact-info .contact-btn {
  padding: 12px 25px;
  background-color: #ffd700;
  color: #1e3a8a;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
}

.contact-info .contact-btn:hover {
  background-color: #e6c200;
  color: #fff;
}

/* Responsive - الهواتف */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
  }
}

.used-gallery-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery-text {
  text-align: center;
  margin-bottom: 30px;
}

.gallery-text h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 15px;
}

.gallery-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.phone-yellow {
  color: #ffc300; /* أصفر شمسي */
  font-weight: bold;
  text-decoration: none;
}

.phone-blue {
  color: #007bff; /* أزرق */
  font-weight: bold;
  text-decoration: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.gallery-item {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.hidden {
  display: none;
}

.load-more-container {
  text-align: center;
  margin-top: 20px;
}

#loadMoreBtn {
  background-color: #007bff;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

#loadMoreBtn:hover {
  background-color: #0056b3;
}

/* bedroooms */
/* Hero Section لغرف النوم */
/* Hero Section لغرف النوم */
.bedroom-hero {
  display: flex;
  align-items: center;
  justify-content: center; /* النص على اليمين */
  padding: 60px 20px;
  background-color: #f5f5f5;
  flex-wrap: wrap;
  background-image: url("./غرف\ نوم\ تفصيل\ \(8\).webp"); /* ضع رابط الصورة هنا */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  color: white;
  position: relative;
}

.bedroom-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* لتظليل الخلفية */
  z-index: 1;
}

.bedroom-hero-content {
  flex: 1 1 500px;
  max-width: 600px;
  padding: 20px;
  position: relative;
  z-index: 2; /* فوق التظليل */
}

.bedroom-hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.bedroom-hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.bedroom-cta-btn {
  background-color: #e74c3c;
  color: white;
  padding: 15px 30px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bedroom-cta-btn:hover {
  background-color: #c0392b;
}

/* Media Queries للتجاوب */
@media screen and (max-width: 1024px) {
  .bedroom-hero h1 {
    font-size: 40px;
  }

  .bedroom-hero-content p {
    font-size: 16px;
  }

  .bedroom-cta-btn {
    font-size: 16px;
    padding: 12px 25px;
  }
}

@media screen and (max-width: 768px) {
  .bedroom-hero {
    justify-content: center;
    text-align: center;
    padding: 40px 15px;
    min-height: 400px;
  }

  .bedroom-hero-content {
    max-width: 100%;
  }

  .bedroom-hero-content h1 {
    font-size: 32px;
  }

  .bedroom-hero-content p {
    font-size: 15px;
  }
}










































/* الألوان المخصصة للكلمات المفتاحية */
/* الألوان المخصصة للكلمات المفتاحية */
.keyword-blue {
  color: #1e3a8a; /* أزرق داكن */
  font-weight: bold;
}
.keyword-yellow {
  color: #facc15; /* أصفر شمسي */
  font-weight: bold;
}
.keyword-green {
  color: #22c55e; /* أخضر فاتح */
  font-weight: bold;
}
.keyword-orange {
  color: #f97316; /* برتقالي فاتح */
  font-weight: bold;
}
.contact-link {
  color: var(--white); /* نص أبيض على زر أصفر */
  font-weight: bold;
  text-decoration: none;
  background-color: #1e3a8a;
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 15px;
  transition: 0.3s;
}
.contact-link:hover {
  opacity: 0.9;
}

/* تهيئة القسم بالكامل على شكل عمود */
.bedroom-article {
  display: flex;
  flex-direction: column; /* عمود بشكل افتراضي */
  align-items: flex-start;
  padding: 60px 10%;
  background-color: #f3f4f6; /* رمادي فاتح */
  border-radius: 12px;
  margin-bottom: 40px;
  gap: 25px; /* مسافة بين الفقرات */
}

.bedroom-article .container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.bedroom-article h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1e3a8a;
}

.bedroom-article p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* تجاوب مع الشاشات الصغيرة */
@media screen and (max-width: 768px) {
  .bedroom-article {
    padding: 40px 5%;
  }
  .bedroom-article h2 {
    font-size: 28px;
    text-align: center;
  }
  .bedroom-article p {
    font-size: 16px;
    text-align: center;

  }
  .bedroom-article .container{
    display: flex;
    justify-content: center;
    align-items: center;
  }
}



/* ألوان */
:root {
  --blue: #1e3a8a;
  --yellow: #facc15;
  --gray-light: #f3f4f6;
  --white: #ffffff;
  --pink: #f472b6; /* لون مكمل */
  --green: #10b981; /* لون مكمل */
}

/* القسم */
.bedroom-gallery-section {
  padding: 60px 10%;
  background: var(--gray-light);
  
}

.bedroom-gallery-section .container{
  display: flex;justify-content: center;
  align-items: center;
  flex-direction: column;
}
.bedroom-gallery-title {
  text-align: center;
  margin-bottom: 30px;
  color: var(--blue);
  font-size: 2rem;
}

/* الفلتر */
.bedroom-gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.bedroom-gallery-filter .filter-btn {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  background: var(--yellow);
  color: var(--blue);
  font-weight: bold;
  border-radius: 6px;
  transition: 0.3s;
}

.bedroom-gallery-filter .filter-btn.active,
.bedroom-gallery-filter .filter-btn:hover {
  background: var(--blue);
  color: var(--white);
}

/* شبكة الصور */
.bedroom-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.bedroom-gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s;
}

.bedroom-gallery-grid .gallery-item img:hover {
  transform: scale(1.05);
}

/* زر عرض المزيد */
.bedroom-load-more {
  display: block;
  margin: 30px auto 0 auto;
  padding: 12px 30px;
  background: var(--yellow);
  color: var(--blue);
  border: none;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.bedroom-load-more:hover {
  background: var(--blue);
  color: var(--white);
}

/* Lightbox */
.bedroom-lightbox {
  display: none;
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.bedroom-lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

.bedroom-lightbox .close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}





.bedroom-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .bedroom-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .bedroom-gallery-grid {
    grid-template-columns: 1fr;
  }
}








/* القسم */
.bedroom-mattress-section {
  padding: 60px 10%;
  background: #f3f4f6;
}

/* Flex container */
.bedroom-mattress-content {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap; /* للتجاوب */
}

/* الصور */
.bedroom-mattress-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bedroom-mattress-images img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* المقال */
.bedroom-mattress-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.bedroom-mattress-text h2 {
  color: #1e3a8a; /* الأزرق الغامق */
  font-size: 2rem;
}

.bedroom-mattress-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.bedroom-mattress-text .keyword {
  color: #facc15; /* الأصفر الشمسي */
  font-weight: bold;
}

.bedroom-mattress-text .phone-link {
  color: #1e3a8a;
  font-weight: bold;
  text-decoration: none;
}

.bedroom-mattress-text .whatsapp-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #25D366; /* لون واتساب */
  color: #fff;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.bedroom-mattress-text .whatsapp-btn:hover {
  background: #128C7E;
}

/* تجاوب */
@media (max-width: 768px) {
  .bedroom-mattress-content {
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}












/* السكشن بخلفية متدرجة هادئة */
.bedroom-contact-map {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 50px 5%;
  background: linear-gradient(120deg, rgba(30,58,138,0.08), rgba(250,204,21,0.08));
  border-radius: 12px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 50px auto;
}

/* المقال */
.bedroom-contact-map .text-content {
  flex: 1 1 450px;
  max-width: 550px;
  color: #1e3a8a;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* تمييز الكلمات المفتاحية */
.bedroom-contact-map .text-content .keyword {
  color: #7815fa;
  font-weight: bold;
  text-decoration: underline;
}

/* الأزرار */
.bedroom-contact-map .buttons {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.bedroom-contact-map .btn {
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  transition: 0.3s;
  font-size: 1rem;
  text-decoration: none;
}

.bedroom-contact-map .btn-call {
  background-color: #facc15; /* أصفر */
  color: #1e3a8a;
}

.bedroom-contact-map .btn-call:hover {
  background-color: #1e3a8a;
  color: #facc15;
}

.bedroom-contact-map .btn-whatsapp {
  background-color: #10b981; /* أخضر */
  color: #ffffff;
}

.bedroom-contact-map .btn-whatsapp:hover {
  background-color: #047857;
  color: #ffffff;
}

/* الخريطة */
.bedroom-contact-map .map-content {
  flex: 1 1 450px;
  max-width: 550px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Responsive للشاشات الصغيرة */
@media (max-width: 768px) {
  .bedroom-contact-map {
    flex-direction: column;
    gap: 30px;
    padding: 30px 5%;
  }

  .bedroom-contact-map .text-content,
  .bedroom-contact-map .map-content {
    max-width: 100%;
  }
}


 .lonly{
  background: #a855f7;
  color: #fff;
  padding: 8px 48px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
 }



























/* تنسيق الأيقونات الثابتة */
.fixed-contact-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.fixed-contact-icons .contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
}

.fixed-contact-icons .contact-icon:hover {
  transform: scale(1.1);
}

/* ألوان الأيقونات */
.fixed-contact-icons .whatsapp {
  background-color: #25d366; /* لون واتساب */
}

.fixed-contact-icons .phone {
  background-color: #007bff; /* لون أزرق للاتصال */
}















