/* ================= FOOTER CLEAN ================= */

.site_footer {
  background: #5f9ea0;
  color: #fff;
  padding: 50px 0 18px;
  margin-top: 60px;
}

/* grid */
.site_footer .footer_inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

/* titles */
.site_footer h3,
.site_footer h4 {
  margin-bottom: 12px;
  font-weight: 800;
}

.footer_logo {
  font-size: 20px;
}

/* text */
.site_footer p {
  line-height: 1.6;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* links */
.site_footer a {
  display: block;
  color: #fff;
  margin: 6px 0;
  font-size: 0.85rem;
  transition: 0.25s;
}

.site_footer a:hover {
  color: var(--accent);
  transform: translateX(-3px);
}

/* social */
.footer_social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer_social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: 0.25s;
}

.footer_social a:hover {
  background: #fff;
  color: var(--main-color);
}

/* copyright */
.footer_copy {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  opacity: 0.85;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 12px;
}

/* ================= FEATURES STRIP ================= */

.features_strip {
  background: #fffaf5;
  padding: 30px 0;
  border-top: 1px solid #f0e2d4;
  border-bottom: 1px solid #f0e2d4;
  margin-top: 30px;
}

.features_row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  text-align: center;
}

/* item */
.feature_item h3 {
  font-size: 0.95rem;
  margin-top: 10px;
  margin-bottom: 4px;
}

.feature_item p {
  font-size: 0.8rem;
  color: #777;
}

/* icon */
.feature_icon {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #f3d4a5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.feature_icon i {
  font-size: 28px;
  color: var(--main-color);
}

/* ===== animations (خفيفة) ===== */

.feature_offer i {
  animation: offerPulse 2s infinite ease-in-out;
}

@keyframes offerPulse {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.08); }
}

.feature_eye i {
  animation: eyeBlink 4s infinite;
}

@keyframes eyeBlink {
  0%,5%,95%,100% { transform: scaleY(1); }
  45%,55%        { transform: scaleY(0.2); }
}

.feature_truck i {
  animation: truckMove 3s infinite ease-in-out;
}

@keyframes truckMove {
  0%,100% { transform: translateX(0); }
  50%     { transform: translateX(-6px); }
}

.feature_sofa i {
  animation: sofaBounce 2.5s infinite ease-in-out;
}

@keyframes sofaBounce {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-3px); }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .site_footer {
    padding: 40px 0 15px;
  }

  .features_row {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .feature_icon {
    width: 60px;
    height: 60px;
  }

  .feature_icon i {
    font-size: 24px;
  }

}

@media (max-width: 480px) {

  .features_row {
    grid-template-columns: 1fr;
  }

  .site_footer p,
  .site_footer a {
    font-size: 0.8rem;
  }

}