/* ========== الأساسيات العامة ========== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: "Cairo", sans-serif;
  background-color: #ffffff;
  color: #111827;
  direction: rtl;
  text-align: right;
}

/* تعويض الهيدر الثابت */
body {
  scroll-padding-top: 80px;
}

/* حاوية عامة */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ========== الهيدر ========== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 768px) {
  .header-inner {
    height: 5rem;
  }
}

.header-logo h1 {
  font-size: 1.05rem;
  color: #1e3a8a;
}

@media (min-width: 768px) {
  .header-logo h1 {
    font-size: 1.4rem;
  }
}

.header-nav {
  display: none;
  align-items: center;
  gap: 1.25rem;
}

.header-nav button {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.95rem;
  color: #111827;
  cursor: pointer;
  transition: color 0.15s ease;
}

.header-nav button:hover {
  color: #1e3a8a;
}

.header-cta {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.btn-icon {
  padding: 0.4rem 0.5rem;
  border-radius: 0.5rem;
  color: #ffffff;
  font-size: 0.8rem;
  text-decoration: none;
}

/* تكبير أيقونة فيسبوك في الهيدر */
.btn-icon.facebook {
  background-color: #1877f2;
  font-size: 1.3rem;      /* تكبير حرف f */
  padding: 0.6rem 0.9rem; /* تكبير مساحة الزر */
}

.btn-icon.facebook:hover {
  background-color: #166fe5;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  border-radius: 0.6rem;
  font-size: 0.9rem;
  text-decoration: none;
  color: #ffffff;
  transition: background-color 0.15s ease;
}

.btn-call {
  background-color: #1e3a8a;
}
.btn-call:hover {
  background-color: #1e40af;
}

.btn-wa {
  background-color: #10b981;
}
.btn-wa:hover {
  background-color: #059669;
}

.btn-fb {
  background-color: #1877f2;
}
.btn-fb:hover {
  background-color: #166fe5;
}

@media (min-width: 1024px) {
  .header-nav {
    display: flex;
  }
  .header-cta {
    display: flex;
  }
}

/* زر منيو الموبايل */

.header-menu-toggle {
  background: none;
  border: none;
  padding: 0.4rem;
  font-size: 1.4rem;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .header-menu-toggle {
    display: none;
  }
}

/* منيو الموبايل */

.mobile-menu {
  display: none;
  border-top: 1px solid #e5e7eb;
  background-color: #ffffff;
}

.mobile-menu.open {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.75rem 1rem 0.25rem;
}

.mobile-nav button {
  background: none;
  border: none;
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: #111827;
  cursor: pointer;
  text-align: right;
  transition: color 0.15s ease;
}

.mobile-nav button:hover {
  color: #1e3a8a;
}

.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.75rem 1rem 1rem;
}

.full-width {
  width: 100%;
  text-align: center;
}

/* ========== سكشن الهيرو ========== */

.hero-section {
  position: relative;
  padding-top: 5rem;
}

.hero-bg {
  position: relative;
  min-height: 500px;
  background: linear-gradient(135deg, #1e3a8a, #1e40af);
  display: flex;
  align-items: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-bg {
    min-height: 600px;
  }
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
}

.hero-text {
  max-width: 800px;
  color: #ffffff;
}

.hero-text h1 {
  font-size: 1.9rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-text h1 {
    font-size: 2.3rem;
  }
  .hero-text p {
    font-size: 1.15rem;
  }
}
@media (min-width: 1024px) {
  .hero-text h1 {
    font-size: 2.6rem;
  }
}

/* badges */

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.5rem;
  margin-bottom: 1.5rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  background-color: #10b981;
  font-size: 0.8rem;
}

/* CTA buttons */

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 600px) {
  .hero-cta {
    max-width: 420px;
  }
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 0.7rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.4);
  transition: background-color 0.15s, box-shadow 0.15s, transform 0.08s;
}

.hero-btn-call {
  background-color: #f97316;
}
.hero-btn-call:hover {
  background-color: #ea580c;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.5);
}

.hero-btn-wa {
  background-color: #10b981;
}
.hero-btn-wa:hover {
  background-color: #059669;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.5);
}

/* بطاقات الكلمات المفتاحية */

.hero-keywords-card {
  position: relative;
  z-index: 2;
  margin-top: -2.5rem;
}

@media (min-width: 768px) {
  .hero-keywords-card {
    margin-top: -3rem;
  }
}

.hero-keywords-grid {
  background-color: #ffffff;
  border-radius: 0.9rem;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.18);
  padding: 1rem;
  margin: 0 1rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .hero-keywords-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .hero-keywords-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.hero-keyword {
  text-align: center;
  padding: 0.7rem;
  border-radius: 0.75rem;
  background-color: #f9fafb;
}

.hero-keyword h3 {
  font-size: 0.95rem;
  color: #1e3a8a;
  margin-bottom: 0.3rem;
}

.hero-keyword p {
  font-size: 0.8rem;
  color: #4b5563;
}

/* ========== سكشن الخدمات ========== */

.services-section {
  padding: 3rem 0;
  background-color: #f9fafb;
}

.services-header,
.whyus-header,
.how-header,
.portfolio-header,
.neigh-header,
.testimonials-header,
.faq-header,
.contact-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.services-header h2,
.whyus-header h2,
.how-header h2,
.portfolio-header h2,
.neigh-header h2,
.testimonials-header h2,
.faq-header h2,
.contact-header h2 {
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 0.75rem;
}

.services-header p,
.whyus-header p,
.how-header p,
.portfolio-header p,
.neigh-header p,
.testimonials-header p,
.faq-header p,
.contact-header p {
  font-size: 1.05rem;
  color: #4b5563;
  max-width: 700px;
  margin: 0 auto;
}

/* شبكة الخدمات */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.service-card {
  background-color: #ffffff;
  border-radius: 0.9rem;
  padding: 1.1rem 1.2rem 1.3rem;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
  transition: box-shadow 0.18s, transform 0.18s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.14);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: #1e3a8a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 0.9rem;
}

.service-card h3 {
  font-size: 1.1rem;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.8;
}

/* ========== لماذا نحن ========== */

.whyus-section {
  padding: 3rem 0;
  background-color: #ffffff;
}

.whyus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .whyus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .whyus-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.whyus-card {
  display: flex;
  gap: 0.8rem;
  padding: 1.1rem 1.2rem;
  border-radius: 0.9rem;
  background-color: #f9fafb;
  transition: background-color 0.18s;
}

.whyus-card:hover {
  background-color: #f3f4f6;
}

.whyus-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: #f97316;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
}

.whyus-card h3 {
  font-size: 1.05rem;
  color: #1e3a8a;
  margin-bottom: 0.3rem;
}

.whyus-card p {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.8;
}

/* ========== كيف يعمل ========== */

.how-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #1e3a8a, #1e40af);
  color: #ffffff;
}

/* جعل عنوان سكشن كيف يعمل أبيض */
.how-header h2 {
  color: #ffffff;
}

.how-header p {
  color: rgba(255, 255, 255, 0.9);
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .how-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.how-step {
  text-align: center;
}

.how-icon-wrap {
  position: relative;
  margin-bottom: 1.25rem;
  display: inline-block;
}

.how-icon-circle {
  width: 5rem;
  height: 5rem;
  border-radius: 999px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.25);
}

@media (min-width: 768px) {
  .how-icon-circle {
    width: 6rem;
    height: 6rem;
  }
}

.how-icon-symbol {
  font-size: 1.8rem;
  color: #1e3a8a;
}

.how-step-number {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background-color: #f97316;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.35);
}

.how-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.how-step p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.how-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.how-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.5rem;
  border-radius: 0.8rem;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  background-color: #f97316;
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.4);
  transition: background-color 0.15s, box-shadow 0.15s, transform 0.08s;
}

.how-btn:hover {
  background-color: #ea580c;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.45);
}
.how-btn:active {
  transform: translateY(1px);
}

/* ========== البورتفوليو ========== */

.portfolio-section {
  padding: 3rem 0;
  background-color: #f9fafb;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.portfolio-card {
  background-color: #ffffff;
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
  transition: box-shadow 0.2s, transform 0.2s;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.14);
}

.portfolio-image-wrap {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .portfolio-image-wrap {
    height: 16rem;
  }
}

.portfolio-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.portfolio-card:hover .portfolio-image-wrap img {
  transform: scale(1.08);
}

.portfolio-body {
  padding: 0.9rem 1rem 1.1rem;
}

.portfolio-body h3 {
  font-size: 0.95rem;
  color: #1e3a8a;
}

/* ========== الأحياء ========== */

.neigh-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #f9fafb, #ffffff);
}

.neigh-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .neigh-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .neigh-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.neigh-card {
  background-color: #ffffff;
  border-radius: 0.9rem;
  padding: 1rem 1.1rem 1.2rem;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.neigh-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
  border-color: #1e3a8a;
}

.neigh-card-top {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.neigh-icon {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  background-color: #e5edff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #1e3a8a;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.neigh-card h3 {
  font-size: 1.05rem;
  color: #1e3a8a;
  margin-bottom: 0.25rem;
}

.neigh-card p {
  font-size: 0.85rem;
  color: #4b5563;
  line-height: 1.7;
}

.neigh-btn {
  margin-top: 0.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.55rem 1rem;
  border-radius: 0.65rem;
  background-color: #f97316;
  color: #ffffff;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.2);
  transition: background-color 0.15s, box-shadow 0.15s;
}

.neigh-btn:hover {
  background-color: #ea580c;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.25);
}

/* CTA سفلي للأحياء */

.neigh-cta {
  margin-top: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  background-color: #1e3a8a;
  border-radius: 1.3rem;
  padding: 1.8rem 1.5rem;
  text-align: center;
  color: #ffffff;
}

.neigh-cta h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.neigh-cta p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.4rem;
  line-height: 1.8;
}

.neigh-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.4rem;
  border-radius: 0.9rem;
  background-color: #f97316;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.4);
  transition: background-color 0.15s, box-shadow 0.15s, transform 0.08s;
}

.neigh-cta-btn:hover {
  background-color: #ea580c;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.45);
}
.neigh-cta-btn:active {
  transform: translateY(1px);
}

/* ========== الشهادات ========== */

.testimonials-section {
  padding: 3rem 0;
  background-color: #ffffff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.testimonial-card {
  background-color: #f9fafb;
  border-radius: 0.9rem;
  padding: 1.1rem 1.2rem 1.3rem;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
  transition: box-shadow 0.18s;
}

.testimonial-card:hover {
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.14);
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.9rem;
}

.testimonial-stars span {
  color: #f97316;
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-top: 0.7rem;
  border-top: 1px solid #e5e7eb;
}

.testimonial-avatar {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  background-color: #1e3a8a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.testimonial-footer h4 {
  font-size: 0.95rem;
  color: #1e3a8a;
}

.testimonial-footer p {
  font-size: 0.8rem;
  color: #6b7280;
}

/* ========== FAQ ========== */

.faq-section {
  padding: 3rem 0;
  background-color: #f9fafb;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  border: none;
  cursor: pointer;
  text-align: right;
  transition: background-color 0.15s;
}

.faq-question:hover {
  background-color: #f9fafb;
}

.faq-question h3 {
  font-size: 1.05rem;
  color: #1e3a8a;
  margin: 0;
}

.faq-icon {
  font-size: 1.1rem;
  color: #1e3a8a;
  transition: transform 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.25rem 1rem;
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.8;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

@media (min-width: 768px) {
  .faq-header h2 {
    font-size: 2.3rem;
  }
  .faq-question h3 {
    font-size: 1.15rem;
  }
  .faq-answer {
    font-size: 1rem;
  }
}

/* ========== تواصل معنا ========== */

.contact-section {
  padding: 3rem 0;
  background-color: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* form */

.contact-form-card {
  background-color: #f9fafb;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.contact-form-card h3 {
  font-size: 1.3rem;
  color: #1e3a8a;
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  color: #374151;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  background-color: #ffffff;
  font-size: 0.95rem;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #1e3a8a;
}

.form-group textarea {
  resize: none;
}

.btn-whatsapp {
  width: 100%;
  padding: 0.85rem 1.5rem;
  margin-top: 0.5rem;
  border: none;
  border-radius: 0.75rem;
  background-color: #10b981;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 15px rgba(16, 185, 129, 0.35);
  transition: background-color 0.2s, transform 0.1s, box-shadow 0.2s;
}

.btn-whatsapp:hover {
  background-color: #059669;
}
.btn-whatsapp:active {
  transform: translateY(1px);
}

/* contact info - الأزرار */

.contact-info .info-block {
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #111827;
  background-color: #f9fafb;
}

.phone-block {
}
.whatsapp-block {
}
.facebook-block {
}

.info-block h4 {
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
  color: #111827;
}

/* الزرار الرئيسي (اتصال / واتساب / فيسبوك) */
.info-main,
.info-main-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.3rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.25);
  transition: background-color 0.15s, box-shadow 0.15s, transform 0.08s;
}

/* زر الاتصال */
.phone-block .info-main {
  background-color: #1e3a8a;
}
.phone-block .info-main:hover {
  background-color: #1e40af;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.3);
}

/* زر الواتساب */
.whatsapp-block .info-main {
  background-color: #10b981;
}
.whatsapp-block .info-main:hover {
  background-color: #059669;
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.35);
}

/* زر فيسبوك */
.facebook-block .info-main-small {
  background-color: #1877f2;
}
.facebook-block .info-main-small:hover {
  background-color: #166fe5;
  box-shadow: 0 12px 24px rgba(24, 119, 242, 0.35);
}

.info-sub {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: #4b5563;
  opacity: 0.95;
}

/* location */

.info-location {
  display: flex;
  gap: 0.8rem;
  background-color: #f9fafb;
  padding: 1.25rem;
  border-radius: 0.75rem;
  margin-top: 0.5rem;
}

.info-location-text h4 {
  color: #1e3a8a;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.info-location-text p {
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========== الفوتر ========== */

.footer {
  background-color: #1e3a8a;
  color: #ffffff;
  padding: 2.5rem 0;
}

.footer .container {
  max-width: 1100px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.footer-about h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.footer-about p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-links button {
  background: none;
  border: none;
  padding: 0;
  text-align: right;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: color 0.15s;
}
.footer-links button:hover {
  color: #f97316;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-contact-list a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-contact-list a:hover {
  color: #f97316;
}

.footer-social .social-icons {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer-social .social-icons a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background-color 0.15s;
}

.footer-social .social-icons a:first-child:hover {
  background-color: #1877f2;
}
.footer-social .social-icons a:nth-child(2):hover,
.footer-social .social-icons a:nth-child(3):hover {
  background-color: #f97316;
}

.footer-availability {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p + p {
  margin-top: 0.4rem;
}

/* ========== الأزرار العائمة ========== */

.floating-buttons {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .floating-buttons {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.15s, box-shadow 0.15s, padding-left 0.3s;
  overflow: hidden;
}

.floating-btn-whatsapp {
  background-color: #25d366;
}
.floating-btn-phone {
  background-color: #f97316;
}

.floating-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.4);
  padding-left: 1.5rem;
}

.floating-label {
  max-width: 0;
  white-space: nowrap;
  overflow: hidden;
  transition: max-width 0.3s;
  font-size: 0.95rem;
}

.floating-btn:hover .floating-label {
  max-width: 6rem;
}

.floating-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}
