/* ========================================
   شركة سماء للمحاماة - صفحة التواصل
   Namespace: smaa-contact-*
   كل الكلاسات مسبوقة بـ smaa-contact-
   لتجنب التعارض مع باقي ستايلات الموقع
======================================== */

/* Reset ضروري عشان margin الـ browser مش يأثر */
html.contact-wrapper, body.contact-wrapper {
  margin: 0 !important;
  padding: 0 !important;
  height: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* ========================================
   Page Background - تغطي الصفحة كاملة
======================================== */
.smaa-contact-body {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/breadcrumb-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  overflow-y: auto;
  overflow-x: hidden;
}

/* طبقة داكنة فوق الصورة */
.smaa-contact-body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.65);
  z-index: 0;
}

/* ========================================
   Card Wrapper - الكارت في المنتصف
======================================== */
.smaa-contact-wrapper {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  animation: smaa-fade-up 0.5s ease forwards;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  direction: rtl;
}

@keyframes smaa-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   Logo
======================================== */
.smaa-contact-logo {
  max-width: 200px;
  width: 100%;
  margin-bottom: 24px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   Badge
======================================== */
.smaa-contact-badge {
  display: inline-block;
  background: #f3ae63;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

/* ========================================
   Title
======================================== */
.smaa-contact-title {
  color: #0d1f3c;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* ========================================
   Divider
======================================== */
.smaa-contact-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to left, #8B6914, #c9a227);
  border-radius: 3px;
  margin: 14px auto;
}

/* ========================================
   Phone Number
======================================== */
.smaa-contact-phone {
  margin-top: 12px;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.smaa-contact-phone a {
  color: #f3ae63;
  text-decoration: none;
  direction: ltr;
  display: inline-block;
  transition: color 0.2s ease;
}

.smaa-contact-phone a:hover {
  color: #c9a227;
}

/* ========================================
   Description
======================================== */
.smaa-contact-desc {
  color: #4a5568;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 28px;
}

/* ========================================
   Contact Info Items
======================================== */
.smaa-contact-info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #2d3748;
  font-size: 16px;
  margin-bottom: 14px;
  background: #f8f9fc;
  border: 1px solid #e8ecf2;
  border-radius: 12px;
  padding: 14px 20px;
  line-height: 1.7;
  transition: background 0.2s ease, border-color 0.2s ease;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
}

.smaa-contact-info-item:hover {
  background: #f0f4ff;
  border-color: #c9a227;
}

.smaa-contact-info-item i {
  color: #f3ae63;
  font-size: 17px;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 3px;
}

/* ========================================
   Social Icons
======================================== */
.smaa-contact-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.smaa-contact-social a {
  text-decoration: none;
  font-size: 1.3rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: #f3ae63;
}


/* ========================================
   Responsive
======================================== */
@media (max-width: 480px) {
  .smaa-contact-body {
    padding: 24px 16px;
    align-items: center;
  }

  .smaa-contact-wrapper {
    padding: 32px 20px;
  }

  .smaa-contact-title {
    font-size: 17px;
  }

  .smaa-contact-phone {
    font-size: 24px;
  }

  .smaa-contact-logo {
    max-width: 160px;
  }

  .smaa-contact-info-item {
    font-size: 13px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}