/* ===============================
   GLOBAL SETTINGS
================================ */
html {
  direction: rtl;
  scroll-behavior: smooth;
}

body {
  font-family: 'Cairo', Tahoma, Arial, sans-serif;
  color: #212529;
  margin: 0;
}

a {
  color: #555;
  text-decoration: none;
}

a:hover {
  color: #555;
  text-decoration: none;
}

/* ===============================
   HEADER
================================ */
.header {
  background: #fff;
  height: 90px;
  border-bottom: 1px solid #eee;
  z-index: 997;
}

@media (max-width: 575px) {
  .header {
    height: 70px;
  }
}

.tel-button {
  border: 1px solid #0d3163;
  border-radius: 50px;
  padding: 10px 25px;
  color: #fff;
  background-color: #0d3163;
}
.site-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
  color: #0d3163;
}

.nav-link {
  color: #555;
  font-weight: 600;
  padding: 5px 10px;
}

.nav-link:hover {
  color: #000;
}

/* زر الاتصال */
.tel-button {
  background: #0d3163;
  color: #fff;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 600;
}

/* موبايل */
@media (max-width: 767px) {
  .tel-button {
    display: none;
  }
}

/* ===== Custom Header ===== */
.custom-header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  height: 80px;
  z-index: 999;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* اسم الموقع */
.header-brand {
  text-align: right;
}

.header-brand h1 {
  font-size: 18px;
  margin: 0;
  color: #0d3163;
  font-weight: 700;
}

.header-brand span {
  font-size: 12px;
  color: #777;
}

/* القائمة */
.header-nav ul {
  list-style: none;
  /* display: flex; */
  gap: 22px;
  margin: 0;
  padding: 0;
}
.header-nav > ul {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
}


.header-nav a {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

.header-nav a:hover {
  color: #0d3163;
}

/* زر اطلب الآن */
.call-btn {
  background: #0d3163;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}

.call-btn:hover {
  background: #09284f;
  color: #fff;
}

/* مساحة بسبب fixed header */
body {
  padding-top: 80px;
}

/* موبايل */
@media (max-width: 992px) {
  .header-nav {
    display: none;
  }
}
/* ===============================
   HERO SECTION
================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: url("../img/header.webp") center/cover no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 45%;
  padding: 80px;
  color: #fff;
  text-align: right;
}

.hero-content h1 {
  font-size: 42px;
  margin: 15px 0 25px;
}

.top-text {
  font-size: 14px;
  opacity: 0.9;
}

.features {
  list-style: none;
  padding: 0;
}

.features li {
  padding-right: 28px;
  margin-bottom: 12px;
  line-height: 1.9;
  position: relative;
}

.features li::before {
  content: "✓";
  position: absolute;
  right: 0;
  color: #fff;
}

.main-btn {
  display: inline-block;
  margin-top: 25px;
  background: #0d3163;
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
}

/* Mobile Hero */
@media (max-width: 768px) {
  .hero-content {
    width: 100%;
    padding: 40px 20px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .main-btn {
    width: 100%;
    text-align: center;
  }
}

/* ===============================
   CONTACT BOX
================================ */
.contact-box {
  max-width: 700px;
  margin: auto;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.contact-box h2 {
  margin-bottom: 20px;
  font-size: 18px;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  background: #eef0f4;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.label {
  color: #555;
}

.number {
  font-weight: bold;
}

/* ===============================
   SERVICES SUPPORT (TEXT SECTION)
================================ */
.support-content {
  max-width: 900px;
  margin: 60px auto;
  padding: 40px 25px;
  background: #fff;
  border-radius: 16px;
  text-align: center;
  direction: rtl;
  font-family: 'Cairo', Tahoma, Arial;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.support-content h2 {
  color: #0d3163;
  margin-bottom: 20px;
  font-size: 24px;
}

.support-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 15px;
}

.content-links {
  margin: 20px 0;
  font-size: 14px;
}

.content-links a {
  color: #1a73e8;
  text-decoration: none;
  margin: 0 3px;
}

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

/* FAQ */
.faq-section {
  background: #f2f4f7;
  padding: 20px;
  border-radius: 12px;
  margin-top: 25px;
  text-align: right;
}

.faq-section h3 {
  color: #0d3163;
  margin-bottom: 15px;
}

.faq-section ul {
  padding-right: 20px;
}

.faq-section li {
  margin-bottom: 12px;
  line-height: 1.8;
  color: #333;
}

/* Button */
.support-btn {
  display: inline-block;
  margin-top: 30px;
  background: #0d3163;
  color: #fff;
  padding: 14px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.support-btn:hover {
  background: #09284f;
}

/* 📱 موبايل */
@media (max-width: 600px) {
  .support-content {
    padding: 25px 18px;
  }

  .support-btn {
    width: 100%;
  }
}

/* ===============================
   SERVICES TABLE (6 CARDS)
================================ */

#services-table {
  padding: 50px 15px;
  text-align: center;
}

#services-table table {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  border-collapse: collapse;
}

#services-table td {
  border: 1px solid #ddd;
  padding: 25px;
  vertical-align: top;
}

#services-table h3 {
  color: #0d3163;
  margin-bottom: 15px;
}


/* الصور داخل خدمات الصيانة */
#services-table img {
  width: 100%;
  max-width: 280px;
  height: auto;            
  object-fit: contain;
  display: block;
  margin: 0 auto 20px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  #services-table img {
    max-width: 100%;
  }
}

/* موبايل */
@media (max-width: 768px) {
  #services-table img {
    max-width: 100%;
  }
}

#services-table p {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 20px;
}

#services-table a {
  display: inline-block;
  background: #0d3163;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
}

/* Mobile Services */
@media (max-width: 768px) {
  #services-table table,
  #services-table tr,
  #services-table td {
    display: block;
    width: 100%;
  }

  #services-table td {
    margin-bottom: 20px;
    border-radius: 12px;
  }
}

/* ===============================
   SCROLL TOP
================================ */
.scroll-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  background: #0d3163;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: none;
}

/* ===============================
   services-feature
================================ */

.service-features {
  background: #f5f5f5;
  padding: 60px 15px;
  direction: rtl;
}

.service-features-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* النص */
.service-features-text {
  flex: 1;
}

.service-features-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #111;
}

.service-features-text p {
  font-size: 15px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 25px;
}

.service-features-btn {
  display: inline-block;
  background: #0c3c78;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
}

/* الكروت */
.service-features-boxes {
  flex: 1;
  display: flex;
  gap: 20px;
}

.service-feature {
  background: #fff;
  padding: 25px 15px;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  flex: 1;
}

.service-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.service-feature h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #111;
}

.service-feature p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* 📱 موبايل */
@media (max-width: 768px) {
  .service-features-container {
    flex-direction: column;
    text-align: center;
  }

  .service-features-text h2 {
    font-size: 22px;
  }

  .service-features-boxes {
    flex-direction: column;
  }
}

/* 📱 موبايل صغير */
@media (max-width: 480px) {
  .service-features-btn {
    font-size: 14px;
    padding: 12px 22px;
  }
}


/* ===============================
quality-section
================================ */

.quality-section {
  padding: 70px 15px;
  background: #ffffff;
  direction: rtl;
}

.quality-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* العنوان */
.quality-title {
  font-size: 34px;
  margin-bottom: 35px;
  color: #111;
  position: relative;
}

.quality-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #0c3c78;
  display: block;
  margin: 12px auto 0;
}

/* البوكس */
.quality-box {
  background: #f8f9fa;
  padding: 30px 25px;
  border-radius: 14px;
  text-align: right;
}

.quality-box h3 {
  font-size: 20px;
  color: #0c3c78;
  margin-bottom: 15px;
}

.quality-box p {
  font-size: 15px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 15px;
}

.quality-box ul {
  padding-right: 20px;
  margin-bottom: 15px;
}

.quality-box ul li {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
  line-height: 1.8;
}

.quality-note {
  font-size: 13px;
  color: #777;
}

/* الزر */
.quality-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 30px;
  background: #0c3c78;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
}

/* 📱 موبايل */
@media (max-width: 768px) {
  .quality-title {
    font-size: 24px;
  }

  .quality-box {
    padding: 22px 18px;
  }

  .quality-box h3 {
    font-size: 18px;
  }

  .quality-btn {
    font-size: 14px;
    padding: 12px 22px;
  }
}



/* ===============================
   services-content
================================ */

.service-section {
  min-height: 100vh;
  background: #0c2340;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.04) 0,
    rgba(255,255,255,0.04) 2px,
    transparent 2px,
    transparent 12px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  direction: rtl;
  text-align: center;
  padding: 40px 15px;
  color: #fff;
}

.service-content {
  max-width: 900px;
  width: 100%;
}

.service-content h1 {
  font-size: 36px;
  margin-bottom: 25px;
  font-weight: bold;
}

.service-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #e6e6e6;
  margin-bottom: 18px;
}

.service-notice {
  background: rgba(255,255,255,0.08);
  padding: 15px;
  border-radius: 10px;
  margin: 20px 0;
}

.service-notice p {
  font-size: 14px;
}

.service-links {
  font-size: 14px;
}

.service-links a {
  color: #ffd65a;
  text-decoration: none;
}

.service-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 30px;
  background: #1e90ff;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
}

/* 📱 موبايل */
@media (max-width: 768px) {
  .service-content h1 {
    font-size: 24px;
  }

  .service-content p {
    font-size: 14px;
    line-height: 1.8;
  }

  .service-notice p {
    font-size: 13px;
  }

  .service-btn {
    font-size: 15px;
    padding: 10px 25px;
  }
}

/* 📱 موبايل صغير */
@media (max-width: 480px) {
  .service-content h1 {
    font-size: 20px;
  }

  .service-section {
    padding: 30px 10px;
  }
}




/* ===============================
   disclaimer
================================ */
.disclaimer-section {
  position: relative;
  min-height: 100vh;
  background: url("assets/img/header.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  direction: rtl;
  font-family: 'Cairo', Tahoma, Arial;
}

/* طبقة التعتيم */
.disclaimer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* الصندوق */
.disclaimer-box {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  max-width: 520px;
  padding: 30px 28px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.disclaimer-box h4 {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.disclaimer-box h3 {
  font-size: 20px;
  color: #0d3163;
  margin-bottom: 15px;
}

.disclaimer-box p {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
}

.en-text {
  font-size: 13px;
  color: #555;
}

.disclaimer-box hr {
  border: none;
  height: 1px;
  background: #ddd;
  margin: 15px 0;
}

/* زر */
.disclaimer-btn {
  display: inline-block;
  margin-top: 10px;
  background: #0d3163;
  color: #fff;
  padding: 10px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.disclaimer-btn:hover {
  background: #09284f;
  color: #fff;
}

/* 📱 موبايل */
@media (max-width: 600px) {
  .disclaimer-box {
    margin: 0 15px;
    padding: 22px 18px;
  }

  .disclaimer-box h3 {
    font-size: 18px;
  }
}

/* about-us */
.about-section {
  padding: 70px 15px;
  background: #ffffff;
  direction: rtl;
}

.about-container {
  max-width: 900px;
  margin: auto;
}

/* كل بلوك */
.about-block {
  margin-bottom: 45px;
}

/* العناوين */
.about-block h2 {
  font-size: 26px;
  color: #0c3c78;
  margin-bottom: 12px;
}

/* الفقرات */
.about-block p {
  font-size: 15px;
  line-height: 1.9;
  color: #444;
}

/* القوائم */
.about-block ul {
  padding-right: 20px;
}

.about-block ul li {
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
  line-height: 1.8;
}

/* 📱 موبايل */
@media (max-width: 768px) {
  .about-block h2 {
    font-size: 22px;
  }

  .about-block p,
  .about-block ul li {
    font-size: 14px;
  }
}
.policy-section {
  padding: 70px 15px;
  background: #ffffff;
  direction: rtl;
}

.policy-container {
  max-width: 1000px;
  margin: auto;
}

/* كل بلوك */
.policy-block {
  margin-bottom: 45px;
}

/* العناوين */
.policy-block h2 {
  font-size: 28px;
  color: #0c3c78;
  margin-bottom: 18px;
}

/* الفقرات */
.policy-block p {
  font-size: 15px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 15px;
}

/* القوائم */
.policy-block ul {
  padding-right: 22px;
}

.policy-block ul li {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
  line-height: 1.8;
}

/* 📱 موبايل */
@media (max-width: 768px) {
  .policy-block h2 {
    font-size: 22px;
  }

  .policy-block p,
  .policy-block ul li {
    font-size: 14px;
  }
}
/* privacy */

.privacy-section {
  padding: 70px 15px;
  background: #ffffff;
  direction: rtl;
}

.privacy-container {
  max-width: 900px;
  margin: auto;
}

/* العنوان الرئيسي */
.privacy-title {
  font-size: 30px;
  color: #0c3c78;
  text-align: center;
  margin-bottom: 15px;
}

.privacy-intro {
  font-size: 15px;
  color: #444;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.9;
}

/* البلوكات */
.privacy-block {
  margin-bottom: 35px;
}

.privacy-block h3 {
  font-size: 22px;
  color: #0c3c78;
  margin-bottom: 12px;
}

.privacy-block p {
  font-size: 15px;
  color: #444;
  line-height: 1.9;
}

.privacy-block ul {
  padding-right: 22px;
}

.privacy-block ul li {
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
  line-height: 1.8;
}

/* الفاصل */
.privacy-container hr {
  border: none;
  border-top: 1px solid #e2e2e2;
  margin: 40px 0;
}

/* 📱 موبايل */
@media (max-width: 768px) {
  .privacy-title {
    font-size: 24px;
  }

  .privacy-block h3 {
    font-size: 20px;
  }

  .privacy-block p,
  .privacy-block ul li {
    font-size: 14px;
  }
}


/* services */

.services-section {
  padding: 60px 15px;
  background: #ffffff;
  direction: rtl;
  font-family: 'Cairo', sans-serif;
}

.services-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.services-title {
  font-size: 28px;
  font-weight: bold;
  color: #0a2540;
  margin-bottom: 10px;
}

.services-desc {
  font-size: 15px;
  color: #555;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  text-align: right;
}

.service-card h3 {
  font-size: 18px;
  color: #0a2540;
  margin-bottom: 15px;
}

.service-card ul {
  padding-right: 18px;
  margin: 0;
}

.service-card li {
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
  line-height: 1.7;
}

/* 📱 موبايل */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-title {
    font-size: 24px;
  }
}.process-section {
  padding: 60px 15px;
  background: #ffffff;
  direction: rtl;
  font-family: 'Cairo', sans-serif;
}

.process-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: flex-start;
}

.process-title {
  font-size: 28px;
  color: #0a2540;
  margin-bottom: 20px;
}

.process-list {
  padding-right: 18px;
  margin-bottom: 25px;
}

.process-list li {
  font-size: 15px;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.8;
}

.sub-title {
  font-size: 20px;
  color: #0a2540;
  margin: 25px 0 10px;
}

.info-list {
  padding-right: 18px;
  margin-bottom: 20px;
}

.info-list li {
  font-size: 14px;
  color: #444;
  margin-bottom: 6px;
}

.coverage-text {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

.process-box {
  background: #f6f7f9;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.process-box h3 {
  font-size: 20px;
  color: #0a2540;
  margin-bottom: 15px;
}

.process-box ul {
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}

.process-box li {
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
}

.call-btn {
  display: inline-block;
  background: #0d400a;
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.call-btn:hover {
  background: #081c33;
}

/* 📱 موبايل */
@media (max-width: 768px) {
  .process-container {
    grid-template-columns: 1fr;
  }

  .process-box {
    text-align: center;
  }
}
.faq-section {
  padding: 60px 15px;
  background: #ffffff;
  direction: rtl;
  font-family: 'Cairo', sans-serif;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-title {
  font-size: 26px;
  color: #0a2540;
  margin-bottom: 25px;
  text-align: right;
}

.faq-item {
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: #fafafa;
  border: none;
  padding: 14px 16px;
  font-size: 15px;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-size: 20px;
  transition: 0.3s;
}

.faq-item.active .faq-question span {
  transform: rotate(90deg);
}

.faq-answer {
  display: none;
  padding: 14px 16px;
  font-size: 14px;
  color: #555;
  background: #fff;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-links {
  margin-top: 25px;
  font-size: 14px;
  color: #555;
}

.faq-links a {
  color: #0a2540;
  text-decoration: none;
  font-weight: 600;
}

.faq-note {
  margin-top: 25px;
  background: #fff6e5;
  border: 1px solid #ffd78a;
  padding: 15px;
  border-radius: 10px;
  font-size: 13px;
  color: #7a5a00;
  line-height: 1.6;
}

/* 📱 موبايل */
@media (max-width: 768px) {
  .faq-title {
    font-size: 22px;
  }
}
/* contact us  */
.contact-section {
  padding: 60px 15px;
  background: #ffffff;
  direction: rtl;
  font-family: 'Cairo', sans-serif;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.contact-title {
  font-size: 28px;
  color: #0a2540;
  margin-bottom: 10px;
}

.contact-desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 35px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}

.contact-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  text-align: center;
}

.contact-card h3 {
  font-size: 18px;
  color: #0a2540;
  margin-bottom: 10px;
}

.contact-card p,
.contact-card li {
  font-size: 14px;
  color: #444;
  list-style: none;
}

.contact-card ul {
  padding: 0;
  margin: 0;
}

.map-box {
  margin: 30px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.map-box iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

.contact-btn {
  display: inline-block;
  background: #0a2540;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 30px;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #081c33;
}

.contact-note {
  background: #fff6e5;
  border: 1px solid #ffd78a;
  padding: 15px;
  border-radius: 12px;
  font-size: 13px;
  color: #7a5a00;
  line-height: 1.6;
}

/* 📱 موبايل */
@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-title {
    font-size: 24px;
  }

  .map-box iframe {
    height: 220px;
  }
}
/* terms and conditions */

.terms-section {
  padding: 60px 15px;
  background: #ffffff;
  direction: rtl;
  font-family: 'Cairo', sans-serif;
}

.terms-container {
  max-width: 900px;
  margin: auto;
}

.terms-title {
  font-size: 28px;
  color: #0a2540;
  margin-bottom: 10px;
  text-align: right;
}

.terms-intro {
  font-size: 14px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.8;
}

.terms-item {
  margin-bottom: 28px;
}

.terms-item h3 {
  font-size: 20px;
  color: #0a2540;
  margin-bottom: 10px;
}

.terms-item p,
.terms-item li {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
}

.terms-item ul {
  padding-right: 18px;
  margin: 0;
}

/* 📱 موبايل */
@media (max-width: 768px) {
  .terms-title {
    font-size: 24px;
  }

  .terms-item h3 {
    font-size: 18px;
  }
}
/*  */

.faq-section {
  max-width: 800px;
  margin: 40px auto;
  padding: 15px;
  direction: rtl;
  font-family: 'Cairo', sans-serif;
}

.faq-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 10px;
}

.faq-desc {
  text-align: center;
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
}

.faq-item {
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: #f9f9f9;
  border: none;
  padding: 15px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question .arrow {
  width: 10px;
  height: 10px;
  border-left: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #fff;
  padding: 0 15px;
  font-size: 14px;
  color: #676767;
}

.faq-item.active .faq-answer {
  padding: 15px;
  max-height: 300px;
}

/* موبايل */
@media (max-width: 600px) {
  .faq-title {
    font-size: 20px;
  }

  .faq-question {
    font-size: 14px;
  }

  .faq-answer {
    font-size: 13px;
  }
}
.menu-dropdown .submenu {
  display: none !important;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fdfeff;
  min-width: 220px;
  padding: 8px 0;
  border-radius: 8px;
  list-style: none;
  margin: 0;
  z-index: 9999;
}

.menu-dropdown:hover > .submenu {
  display: block !important;
}
.notice-box {
  max-width: 700px;
  margin: 20px auto;
  padding: 12px 16px;
  background-color: #fff3cd;
  border: 1px solid #ffeeba;
  border-radius: 6px;
  color: #856404;
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
  direction: rtl;
}

/* تحسين للموبايل */
@media (max-width: 576px) {
  .notice-box {
    font-size: 13px;
    padding: 10px 12px;
  }
}









/* تثبيت مكان قائمة "المزيد" */
.menu-dropdown {
  position: relative;
}

/* القايمة الفرعية تظهر تحت كلمة المزيد */
.menu-dropdown .submenu {
  position: absolute;
  top: 100%;
  right: 0;
    max-width: 160px;

}

/* إخفاء على الكمبيوتر */
.mobile-bottom-nav {
  display: none;
}

/* يظهر في الموبايل فقط */
@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    background: #fff;
    border-top: 1px solid #eee;
    justify-content: space-around;
    align-items: center;
    padding: 6px 0;
    z-index: 9999;
  }

  .mobile-bottom-nav a {
    text-decoration: none;
    color: #555;
    font-size: 11px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
  }

  .mobile-bottom-nav i {
    font-size: 18px;
  }

  .mobile-bottom-nav a.active,
  .mobile-bottom-nav a:hover {
    color: #0d6efd;
  }

  /* علشان المحتوى ميدخلش تحت الناف */
  body {
    padding-bottom: 65px;
  }
}



.phone-btn{
  background-color: #46c03b;
  border-radius: 50%;
  padding: 10px;
  font-size: 35px;
  color: white;
}
.phone-btn :hover{
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.15);
}
.cal-hov{
  position: fixed;
  left: 20px;
  bottom: 100px;
}
.cal-hov :hover{
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.15);
}


/* ================= FOOTER ================= */
.site-footer {
  background: #1f2d5c;
  color: #ffffff;
  text-align: center;
  padding: 25px 15px;
  font-size: 14px;
}

.site-footer a {
  color: #ffffff;
  text-decoration: none;
  display: block;
  margin-top: 8px;
}

