.hero {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  padding: 25px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Soft floating glow effect */
.hero::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

.hero::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: auto;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-btn {
  display: inline-block;
  background: #fff;
  color: #16a34a;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #f0fdf4;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-btn:active {
  transform: translateY(0);
  box-shadow: none;
}


.contact-section {
  padding: 80px 20px;
  background: #f9fafb;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: start;
}

/* Section Titles */
.section-title {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #16a34a;
}

/* MAP */
.contact-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* CONTACT CARD */
.contact-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

/* CONTACT ITEMS */
.contact-item {
  margin-bottom: 25px;
}

.contact-item h4 {
  margin-bottom: 8px;
  font-size: 15px;
  color: #22c55e;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-item p,
.contact-item a {
  font-size: 16px;
  color: #333;
  text-decoration: none;
}

.contact-item a:hover {
  color: #22c55e;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 18px;
  margin-top: 20px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: #f0fdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #22c55e;
  transform: translateY(-4px);
}

.social-links img {
  width: 20px;
  height: 20px;
  transition: 0.3s;
}

.social-links a:hover img {
  /*filter: brightness(0) invert(1);*/
}

/* CONNECT TITLE */
.connect-title {
  margin-top: 30px;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-map iframe {
    height: 300px;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #16a34a;
  animation: none;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* Soft pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}
