/* Footer Base */
.modern-footer {
  background: rgb(214, 212, 212);
  padding: 50px 20px;
  font-family: "Segoe UI", sans-serif;
  color: #333;
  box-shadow: inset 0 4px 20px rgba(0,0,0,0.05);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  justify-content: space-between;
}

/* Profile Column */
.footer-profile {
  flex: 1 1 250px;
  text-align: center;
}

.footer-property-img {
  max-width: 110px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.footer-manager-name {
  font-weight: bold;
  margin: 12px 0;
  font-size: 1.1rem;
}

.footer-brand-logo {
  max-width: 130px;
  margin-top: 12px;
}

/* About Column */
.footer-about {
  flex: 2 1 350px;
}

.footer-about p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-link-highlight {
  color: #2d6ef8;
  text-decoration: none;
  font-weight: 500;
}

.footer-link-highlight:hover {
  text-decoration: underline;
}

.footer-about h5 {
  margin-top: 10px;
  font-size: 17px;
  color: #021d7d;
}

.footer-about ul {
  list-style: none;
  padding: 0;
}

.footer-about li {
  margin: 6px 0;
}

.footer-about a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-about a:hover {
  color: #031476;
}

/* Contact Column */
.footer-contact {
  flex: 1 1 280px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.footer-contact h5 {
  color:  #021d7d;
  margin-bottom: 15px;
  text-align: center;
}

.footer-contact form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact input,
.footer-contact textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  transition: border 0.3s ease;
}

.footer-contact input:focus,
.footer-contact textarea:focus {
  border-color: #12036a;
  outline: none;
}

.footer-contact button {
  background-color:  #021d7d;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.footer-contact button:hover {
  background-color: #e05500;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  .footer-about {
    text-align: center;
  }
}