/* === Footer Base === */
.footer {
  position: relative;
  overflow: hidden;
  background-color: #f0f0f0;
  color: #f0f0f0;
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #D4AF37 0%, #096B68 50%, #096B68 100%);
  opacity: 0.95;
  z-index: 0;
}

.footer-container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: auto;
}

/* === Brand === */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.brand-logo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(to bottom right, #f9b234, #ff6b00);
  padding: 2px;
  box-shadow: 0 4px 10px rgba(255, 191, 0, 0.2);
}

.brand-inner {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-inner span {
  font-size: 28px;
  font-weight: bold;
  background: linear-gradient(to bottom right, #f9b234, #ff6b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-desc {
  color: #f0f0f0;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* === Contact Cards === */
.footer-contacts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 50px;
}

.contact-card {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 16px;
  padding: 20px;
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: #f9b234;
  box-shadow: 0 5px 15px rgba(255, 191, 0, 0.1);
}

.contact-icon {
  font-size: 26px;
  margin-bottom: 10px;
}

.contact-label {
  color: #f0f0f0;
  font-size: 12px;
  margin-bottom: 4px;
}

.contact-value {
  font-weight: 600;
  font-size: 15px;
  color: #fff;
}

/* === Divider === */
.footer-divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, #f9b234, transparent);
  margin: 50px 0;
}

/* === Address Section === */
.footer-address {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.footer-address h4 {
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.footer-address p {
  color: #f0f0f0;
  font-size: 14px;
  line-height: 1.6;
}

/* === Bottom Section === */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  border-top: 1px solid #222;
  padding-top: 20px;
}

.footer-info p {
  margin: 5px 0;
  font-size: 14px;
  color: #f0f0f0;
}

.footer-info a {
  color: #f9b234;
  text-decoration: none;
  font-weight: 500;
}

.footer-info a:hover {
  text-decoration: underline;
}

/* === Social Icons === */
.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #1a1a1a;
  border: 1px solid #333;
  font-size: 20px;
  transition: 0.3s;
}

.footer-socials a:hover {
  border-color: #f9b234;
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(255, 191, 0, 0.1);
}

/* === Responsive === */
@media (min-width: 768px) {
  .footer-contacts {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-address {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}