* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Tajawal", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #ffffff;
  color: #111827;
  line-height: 1.6;
}

/* ====== Navbar ====== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 0.75rem 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 52px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 700;
  font-size: 1.2rem;
  color: #d4a13a; /* ذهبي من الشعار */
}

.logo-subtitle {
  font-size: 0.8rem;
  color: #6b7280;
}

.navbar nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.navbar nav a {
  text-decoration: none;
  color: #4b5563;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.navbar nav a:hover {
  color: #d4a13a;
  border-color: #d4a13a;
}

/* ====== Hero ====== */

.hero {
  padding: 3.5rem 7vw 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  max-width: 640px;
  text-align: right;
}

.hero h1 {
  font-size: 2.1rem;
  margin-bottom: 0.75rem;
  color: #111827;
}

.hero p {
  font-size: 1.05rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn.primary {
  background-color: #d4a13a;
  color: #111827;
  font-weight: 600;
}

.btn.primary:hover {
  background-color: #b48423;
}

.btn.outline {
  background-color: #ffffff;
  border-color: #d4a13a;
  color: #111827;
}

.btn.outline:hover {
  background-color: #f9fafb;
}

/* ====== Sections ====== */

.section {
  padding: 3rem 7vw;
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #111827;
}

.section.muted {
  background-color: #f9fafb;
}

/* ====== Service Cards (مثل صورة الخدمات) ====== */

.services-section {
  background: linear-gradient(135deg, #f4f5ff, #f9fafb);
}

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

/* الكارد */

.service-card {
  position: relative;
  background-color: #ffffff;
  border-radius: 1.4rem;
  padding: 2.2rem 1.6rem 1.6rem;
  text-align: center;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

/* الخلفية الفاتحة في الزاوية (الهالة مثل الصورة) */
.service-card::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at top left, #fde9c3, transparent 60%);
  opacity: 0.85;
  pointer-events: none;
}

/* دائرة الأيقونة */

.service-icon-circle {
  position: relative;
  z-index: 1;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  margin: 0 auto 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.25);
}

/* ألوان الدوائر (شكل الصورة) */

.service-icon-circle.purple {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
}

.service-icon-circle.green {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.service-icon-circle.orange {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.service-icon-circle.blue {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

/* النص داخل الكارد */

.service-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
  color: #111827;
}

.service-card p {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
}

/* رابط "اطلب الخدمة" */

.service-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  color: #f97316;
}

.service-link:hover {
  text-decoration: underline;
}

/* ====== Features ====== */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.feature {
  padding: 1.2rem 1.3rem;
  border-radius: 1rem;
  border: 1px dashed #e5e7eb;
  background-color: #ffffff;
}

.feature h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: #111827;
}

.feature p {
  font-size: 0.9rem;
  color: #4b5563;
}

/* ====== Steps ====== */

.steps-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.step {
  min-width: 180px;
  padding: 1rem 1.2rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background-color: #d4a13a;
  color: #111827;
  font-weight: 700;
}

.step p {
  font-size: 0.95rem;
  color: #4b5563;
}

/* ====== Contact & Map ====== */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 1.5rem;
  align-items: stretch;
}

.contact-info p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.contact-info a {
  color: #d4a13a;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.map-box iframe {
  width: 100%;
  height: 260px;
  border: none;
  border-radius: 1rem;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

/* ====== الشروط والأحكام ====== */

.terms-box {
  border: 1px solid #d4a13a;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.05);
}

.terms-box ul {
  list-style: none;
  padding-right: 1rem;
}

.terms-box li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: #4b5563;
  position: relative;
  padding-right: 1.2rem;
}

.terms-box li::before {
  content: "✔";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0.9rem;
  color: #d4a13a;
}

/* ====== Social Section ====== */

.social-section {
  text-align: center;
  padding-bottom: 2rem;
}

.social-section h2 {
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
}

.social-grid {
  margin: 1.5rem auto 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.2rem;
  max-width: 900px;
}

.social-item {
  border: 1px solid #d4a13a;
  padding: 1rem 0.6rem;
  border-radius: 1rem;
  background: #ffffff;
  text-decoration: none;
  color: #111827;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.05);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.social-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.10);
  border-color: #b48423;
}

.social-emoji {
  font-size: 1.9rem;
}

.social-item span {
  font-size: 0.9rem;
}

.phones-box {
  margin-top: 1.4rem;
  font-size: 1rem;
}

.phones-box p {
  margin: 0.3rem 0;
}

.phones-box a {
  color: #d4a13a;
  font-weight: 600;
  text-decoration: none;
}

.phones-box a:hover {
  text-decoration: underline;
}

/* ====== Footer ====== */

footer {
  padding: 1.5rem 7vw 2rem;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  font-size: 0.85rem;
  color: #6b7280;
}

/* ====== Floating WhatsApp Button ====== */

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  color: #ffffff;
  z-index: 60;
}

/* ====== Scroll Reveal Animations ====== */

.reveal {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-up {
  transform: translateY(24px);
}

.reveal-left {
  transform: translateX(-24px);
}

.reveal-right {
  transform: translateX(24px);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ====== Responsive ====== */

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .navbar nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-box iframe {
    height: 220px;
  }
}
/* ====== Social Circle Icons (small like image) ====== */

.social-circle-icons {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.social-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #f3f4f6; /* نفس خلفية الصورة */
  border: 1px solid #d1d5db; /* نفس اللون الرمادي الفاتح */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  font-size: 20px;
  text-decoration: none;
  transition: 0.25s ease;
}

.social-circle:hover {
  background-color: #e5e7eb;
  border-color: #cbd5e1;
  transform: translateY(-3px);
}
.footer-social {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.footer .social-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #374151;
  transition: 0.25s ease;
}

.footer .social-circle:hover {
  background: #e5e7eb;
  transform: translateY(-3px);
}
/* ===== Stats Cards (matching site design + golden corner) ===== */
/* ===== Stats - Single Card (One Card Design) ===== */

.stats-section {
  background-color: #f9fafb;
  padding: 2.4rem 0;
  perspective: 1200px;
}

.stats-single-card {
  position: relative;
  background: #ffffff;
  border-radius: 1.4rem;
  padding: 2rem 1.8rem;
  width: 90%;
  max-width: 550px;
  margin: 0 auto;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 32px rgba(15,23,42,0.08);
  overflow: hidden;

  /* حركة الدخول */
  transform: translateX(60px) rotate3d(1, 1, 0, 25deg);
  opacity: 0;
  transition:
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.55s ease;
}

/* لما يصير العنصر visible */
.stats-single-card.visible {
  transform: translateX(0) rotate3d(1, 1, 0, 0deg);
  opacity: 1;
}

/* نصف دائرة ذهبية */
.stats-single-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, #d4a13a 0%, #b48423 55%, transparent 100%);
  opacity: 0.22;
  pointer-events: none;
  z-index: 1;
}

/* محتوى الإحصائيات */
.stat-item {
  text-align: center;
  margin: 10px 0;
  position: relative;
  z-index: 2;
}

.stat-item strong {
  font-size: 2.2rem;
  font-weight: 700;
  color: #d4a13a;
  display: block;
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 0.95rem;
  color: #4b5563;
}

/* الفاصل بين الإحصائيات */
.separator {
  width: 80%;
  height: 1px;
  background-color: #e5e7eb;
  margin: 14px auto;
  opacity: 0.8;
}
/* ===== Footer Payment Title ===== */

.footer-payment-title {
  text-align: center;
  margin-top: 25px;
  margin-bottom: 10px;
}

.footer-payment-title span {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}

/* الخط تحت العنوان */
.footer-title-line {
  position: relative;
  width: 100%;
  max-width: 220px;
  height: 1px;
  background-color: #d1d5db;
  margin: 8px auto 0;
}

/* الدائرة الذهبية */
.footer-title-line .gold-dot {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4a13a, #b48423);
  box-shadow: 0 0 6px rgba(212,161,58,0.5);
}


/* ===== Footer Payments Logos ===== */

.footer-payments {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 18px;
  align-items: center;
}

.footer-payments img {
  height: 28px;
  object-fit: contain;
  opacity: 0.9;
  transition: 0.25s ease;
}

.footer-payments img:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.footer-payments img.apple {
  height: 30px;
}

.footer-payments img.mada {
  height: 26px;
}
/* ===== Footer FAQ Redesigned ===== */

.footer-faq {
  margin-top: 40px;
  text-align: center;
}

.footer-faq h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111827;
}

/* الكارد */
.faq-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 12px 14px;
  margin: 10px auto;
  max-width: 600px;
  box-shadow: 0 6px 14px rgba(15,23,42,0.06);
  text-align: right;
  transition: 0.25s ease;
}

.faq-item:hover {
  border-color: #d4a13a;
  box-shadow: 0 14px 26px rgba(15,23,42,0.10);
}

/* زر السؤال */
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  align-items: center;
}

.faq-text {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}

.faq-icon {
  font-size: 1.4rem;
  color: #d4a13a;
  font-weight: 700;
  transition: transform 0.3s ease;
}

/* الخط الذهبي الصغير */
.faq-item::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #d4a13a, #b48423);
  border-radius: 4px;
  margin: 10px 0 0;
  opacity: 0.9;
}

/* الجواب (مخفي) */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 0.93rem;
  color: #4b5563;
  margin-top: 6px;
  line-height: 1.6;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  opacity: 0;
}

/* عند الفتح */
.faq-item.open .faq-answer {
  max-height: 200px;
  opacity: 1;
}

/* تدوير + */
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-item::after {
  display: none !important;
}
.footer-faq,
.footer-faq * {
  font-family: inherit;
}
.footer-links {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #6b7280;
}

.footer-links a {
  color: #6b7280;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links .dot-sep {
  margin: 0 6px;
}

