/* Footer Styling for RealEstateLHonor */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.site-footer {
  background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
  color: var(--gray-100);
  padding: 4rem 2rem 0;
  /* width: 100%; */
  margin-left: 0;
  box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.1);
  /*margin-top: 4rem;*/
}

.site-footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 2rem;
}

.site-footer-section {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.site-footer-brand h3 {
  /*font-family: 'Playfair Display', serif;*/
  font-family: serif;
  font-size: 1.75rem;
  color: var(--white);
  margin: 0 0 0.5rem;
  position: relative;
}

.site-footer-brand h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60%;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.site-footer-brand:hover h3::after {
  width: 100%;
}

.site-footer-brand p {
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.5;
}
.site-footer-contact{
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.site-footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray-300);
  font-size: 0.9rem;
  margin: 0;
}

.site-footer-contact p:hover {
  color: var(--white);
  transform: translateX(4px);
  transition: all 0.3s ease;
}

.site-footer-contact i {
  color: var(--primary);
}

.site-footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.site-footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s ease;
}

.site-footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.site-footer-section h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.site-footer-section h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.site-footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer-section li {
  margin-bottom: 0.75rem;
}

.site-footer-section a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  padding-left: 1.1rem;
  display: inline-block;
}

.site-footer-section a::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.site-footer-section a:hover {
  color: var(--white);
  transform: translateX(6px);
}

.site-footer-section a:hover::before {
  opacity: 1;
}

.newsletter-form .form-group {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: 1px solid var(--gray-700);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 6px;
  background: var(--primary);
  color: var(--white);
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.site-footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.15);
}

.site-footer-bottom-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
}

.site-footer-bottom p {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin: 0;
}

.site-footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.site-footer-bottom-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.site-footer-bottom-links a:hover {
  color: var(--white);
}

.site-footer-payment i {
  font-size: 1.5rem;
  color: var(--gray-400);
  transition: color 0.3s, transform 0.3s;
}

.site-footer-payment i:hover {
  color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .site-footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .site-footer-content {
    grid-template-columns: 1fr;
  }

  .site-footer-bottom-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer-bottom-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .site-footer-payment {
    justify-content: flex-start;
    gap: 1rem;
  }
}
