.contact-section {
  padding: 80px 8%;
  background: #faf8f2;
  text-align: center;
}

.contact-section h2 {
  font-size: 42px;
  color: #8b5a00;
}

.contact-subtitle {
  color: #666;
  margin: 15px auto 60px;
  max-width: 700px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
  align-items: stretch;
}

.contact-box {
  background: #fff;
  padding: 35px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-box:hover {
  transform: translateY(-8px);
}

.contact-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.contact-box h3 {
  color: #8b5a00;
  margin-bottom: 15px;
}

.contact-box p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 8px;
}

.contact-btn {
  display: inline-block;
  margin-top: auto; /* Pushes button to the bottom */
  padding: 12px 28px;
  background: #8b5a00;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #d4a017;
}

/* social media buttons */

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.social-icons a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 24px;
  color: #fff;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: floatIcon 3s ease-in-out infinite;
}

/* Shine Effect */

.social-icons a::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -120%;
  width: 220%;
  height: 220%;
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(45deg);
  transition: 0.5s;
}

.social-icons a:hover::before {
  top: 100%;
  left: 100%;
}

/* Hover */

.social-icons a:hover {
  transform: translateY(-8px) scale(1.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* Brand Colors */

.facebook {
  background: #1877f2;
}

.instagram {
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
}

.twitter {
  background: #000;
}

.whatsapp {
  background: #25d366;
}

/* Floating Animation */

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}
/* map */

.contact-map {
  width: 100%;
  margin-top: 25px;
}

.contact-map iframe {
  width: 100%;
  height: 180px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
