.elementor-854 .elementor-element.elementor-element-4132054{width:100%;max-width:100%;}.elementor-854 .elementor-element.elementor-element-4132054.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-4132054 *//* ── إعدادات الفوتر الأساسية ── */
#almiral-custom-footer {
  background: #11181f;
  color: #a0abb5;
  padding: 60px 20px 20px;
  font-family: inherit;
  perspective: 1000px; /* إضافة منظور 3D للحركة */
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  border-bottom: 1px solid #23313d;
  padding-bottom: 40px;
}

/* ── العمود الأول: اللوجو والنبذة (دوران كامل 360 درجة) ── */
.footer-brand .footer-logo {
  max-height: 100px; /* الحجم المطلوب */
  margin-bottom: 20px;
  filter: drop-shadow(0px 0px 5px rgba(255,255,255,0.1));
  
  /* إعدادات حركة الدوران 360 درجة كل ثانيتين */
  animation: full-spin 2s infinite linear;
  transform-style: preserve-3d;
}

/* حركة الدوران 360 درجة حول محور Y */
@keyframes full-spin {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}

.footer-brand p {
  line-height: 1.6;
  font-size: 15px;
  max-width: 350px;
}

/* ── إعدادات العناوين في الفوتر ── */
.footer-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #0F6E56;
}

/* ── العمود الثاني: الروابط السريعة ── */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #a0abb5;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #0F6E56;
  transform: translateX(5px);
}

/* ── العمود الثالث: بيانات التواصل ── */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-contact i {
  color: #0F6E56;
  font-size: 18px;
  margin-top: 3px;
}

.footer-contact a {
  color: #a0abb5;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #ffffff;
}

.contact-phones {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* ── شريط حقوق الملكية ── */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  font-size: 14px;
  color: #6c7c8c;
  flex-wrap: wrap;
}

.dev-credit strong {
  color: #0F6E56;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ── التوافق مع شاشات الموبايل ── */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-brand p {
    margin: 0 auto;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-contact li {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    justify-content: center;
  }
}/* End custom CSS */