/* ============================================
   FOOTER STYLES
   ============================================ */

.footer {
  background: #2c3e50;
  color: #ecf0f1;
  margin-top: 80px;
}

.footer-content {
  padding: 60px 20px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-column h3 {
  color: #ff6b35;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #bdc3c7;
  margin-bottom: 1.5rem;
}

.footer-contact {
  margin-top: 1rem;
}

.footer-phone {
  display: inline-block;
  padding: 12px 25px;
  background: #ff6b35;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.footer-phone:hover {
  background: #ff8c42;
  transform: translateY(-2px);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1.05rem;
}

.footer-links a:hover {
  color: #ff6b35;
}

.whatsapp-yurt-link {
  color: #25d366 !important;
  font-weight: 600;
}

.whatsapp-yurt-link:hover {
  color: #1da851 !important;
}

.airbnb-link {
  color: #ff5a5f !important;
  font-weight: 600;
}

.airbnb-link:hover {
  color: #e0484e !important;
}

.instagram-yurt-link {
  color: #e4405f !important;
  font-weight: 600;
}

.instagram-yurt-link:hover {
  color: #c13584 !important;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 1.5rem;
}

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

.footer-social a:hover {
  background: #ff6b35;
  transform: translateY(-3px);
}

/* Footer Bottom Bar */
.footer-bottom {
  background: #1a252f;
  padding: 25px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.copyright {
  color: #95a5a6;
  font-size: 0.95rem;
  margin: 0;
}

.footer-legal {
  color: #95a5a6;
  font-size: 0.85rem;
  margin: 0.5rem 0 0 0;
}

.footer-legal a {
  color: #95a5a6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #ff6b35;
}

.footer-heart {
  color: #95a5a6;
  font-size: 0.95rem;
  margin: 0;
  font-style: italic;
}

.footer-heart:hover {
  color: #ff6b35;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-column {
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 1rem;
  }

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