/* 🎨 إعداد عام */
body {
  font-family: "Cairo", sans-serif;
  margin: 0;
  padding: 0;
  background: #fafafa;
  overflow-x: hidden;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background: transparent;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* اللوقو على اليسار */
.logo {
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px;
}

/* الروابط على اليمين */
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #b09a68;
}

/* زر القائمة للموبايل */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

/* ===== عند التمرير للأسفل ===== */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a,
.navbar.scrolled .menu-toggle {
  color: #2c3e50;
}

/* ===== Hero Section ===== */
/* ===== Hero Section Responsive ===== */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

/* ===== الشعار في منتصف الصورة ===== */
.hero-logo {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-logo img {
  width: 350px;
  max-width: 70%;
  height: auto;
  animation: fadeIn 1.8s ease-in-out;
}

.logo-overlay {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  animation: fadeInUp 1.2s ease;
}

/* ===== الأقسام العامة ===== */
.section {
  padding: 80px 5%;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 40px;
}

/* ===== بطاقات عامة (منتجات وخدمات) ===== */
.products-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  justify-items: center;
}

.product-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  max-width: 380px;
}

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

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

.product-card h3 {
  color: #2c3e50;
  margin-top: 15px;
}

.product-card p {
  font-size: 0.9rem;
  color: #666;
  margin-top: 10px;
}

.interior-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  justify-items: center;
}

.interior-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  max-width: 380px;
  text-align: center;
}

.interior-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.interior-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 4px solid #b09a68;
}

.interior-content {
  padding: 20px;
}

.interior-content h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.interior-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1;
}

/* ===== من نحن ===== */
/* ===== قسم من نحن على شكل بطاقة ===== */
.about-card {
  padding: 60px 5%;
  background: linear-gradient(180deg, #fafafa 0%, #f4f4f4 100%);
  color: #213040;
  direction: rtl;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.about-image {
  flex: 1 1 40%;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.about-content {
  flex: 1 1 55%;
  text-align: right;
}

/* البادج */
.about-badge {
  display: inline-block;
  background: rgba(176, 154, 104, 0.12);
  color: #b09a68;
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.about-title {
  margin: 0 0 12px;
  font-size: 1.7rem;
  font-weight: 800;
  color: #16242f;
  line-height: 1.3;
}

.about-lead,
.about-body,
.about-cta {
  font-size: 1rem;
  color: #3a4b55;
  margin-bottom: 12px;
  line-height: 1.8;
}

.highlight {
  color: #b09a68;
  font-weight: 700;
}

/* أنيميشن الظهور */
.fade-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== عملاؤنا ===== */
.clients-section {
  background: #fff;
  padding: 80px 5%;
  text-align: center;
}

.clients-section h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 40px;
}

.clients-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.clients-logos img {
  width: 300px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.clients-logos img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

/* ===== Footer ===== */
footer {
  background: #2c3e50;
  color: #fff;
  padding: 60px 5%;
  text-align: center;
}

.footer-links a {
  color: #b09a68;
  margin: 0 10px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* ===== أزرار واتساب واتصال ===== */
.floating-btn {
  position: fixed;
  bottom: 25px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transition: all 0.3s ease;
}

.floating-btn img {
  width: 30px;
  height: 30px;
}

.whatsapp-btn {
  left: 25px;
}

.call-btn {
  right: 25px;
}

.floating-btn:hover {
  transform: scale(1.15);
  background: #f7f7f7;
}

/* ===== Animations ===== */
.fade-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .hero-bg {
    object-position: center center; /* الشعار في المنتصف في التابلت */
  }
}

@media (max-width: 600px) {
  .hero-bg {
    object-position: center 55%; /* لضبط موضع الشعار في المنتصف في الجوال */
  }

  #hero {
    height: 85vh; /* تقليل الطول قليلاً للجوال */
  }
}

@media (max-width: 992px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
    padding: 20px;
  }

  .about-content {
    flex: 1 1 100%;
  }

  .about-title {
    font-size: 1.4rem;
  }

  .about-lead,
  .about-body,
  .about-cta {
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .about-card {
    padding: 40px 5%;
  }

  .about-title {
    font-size: 1.2rem;
  }

  .about-image img {
    border-radius: 10px;
  }
}
/* ===== Responsive ===== */
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .logo-overlay {
    font-size: 2rem;
    left: 10%;
  }
  @media (max-width: 992px) {
    .interior-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .interior-container {
      grid-template-columns: 1fr;
    }

    .interior-card img {
      height: 200px;
    }
  }
  @media (max-width: 992px) {
    .interior-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .interior-container {
      grid-template-columns: 1fr;
    }

    .interior-card img {
      height: 200px;
    }
  }

  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-text,
  .about-image {
    flex: 1 1 100%;
  }

  .clients-logos img {
    width: 90px;
  }
}

@media (max-width: 600px) {
  .product-card {
    padding: 15px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
    bottom: 15px;
  }

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

  .logo-overlay {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

/* ===== استجابة الشاشات ===== */
@media (max-width: 992px) {
  .products-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products-container {
    grid-template-columns: 1fr;
  }
}
