/* ================= ROOT COLORS ================= */
:root {
  --primary-green: #0b5d1e;
  --secondary-gold: #c88a1a;
  --accent-gold: #ffd36a;
  --text-light: #ffffff;
  --text-muted: rgba(255,255,255,0.85);
  --border-light: rgba(255,255,255,0.25);
  --social-bg: rgba(255,255,255,0.15);
}
/* ================= FOOTER ================= */
.footer-premium {
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-gold));
  color: var(--text-light);
  padding: 90px 8% 30px;
  font-size: 14px;
  direction: rtl;
}
/* ================= INNER GRID ================= */
.footer-inner {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
}
/* ================= BRAND ================= */
.footer-logo img {
  max-width: 140px;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 15px;
  line-height: 1.9;
  opacity: 0.9;
  max-width: 360px;
  margin-bottom: 20px;
}
/* ================= SOCIAL ================= */
.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: var(--social-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-light);
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: var(--accent-gold);
  color: #000;
  transform: translateY(-3px);
}

/* ================= TITLES ================= */
.footer-premium h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
}

.footer-premium h4::after {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--accent-gold);
  display: block;
  margin-top: 8px;
  border-radius: 2px;
}

/* ================= LINKS ================= */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-right: 6px;
}

/* ================= CONTACT ================= */
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 14px;
  transition: 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: var(--accent-gold);
  color: #000;
  transform: scale(1.1);
}

.footer-contact a {
  color: var(--text-muted);
  text-decoration: none;
  transition: 0.3s ease;
}
.footer-contact a:hover {
  color: var(--accent-gold);
}

/* ================= BOTTOM ================= */





/* ================= FEATURES BAR ================= */
.features-bar {
  background: #f9f6ef;
  padding: 60px 8%;
}

.features-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.feature-item i {
  font-size: 38px;
  color: var(--primary-green);
  margin-bottom: 15px;
}

.feature-item h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #222;
}

.feature-item p {
  font-size: 14px;
  color: #666;
}

.feature-item:hover {
  transform: translateY(-6px);
  transition: 0.3s ease;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .features-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .features-container {
    grid-template-columns: 1fr;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-premium h4::after {
    margin: 8px auto 0;
  }
}
.footer-bottom {
  width: 100%;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.3);
  margin-top: 60px;
}

.footer-bottom-inner {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.footer-bottom-inner p {
  margin: 6px 0;
}
