.footer-group {
  background: linear-gradient(135deg, #092c5c, #0c366d, #133d85);
  color: #fefefe;
  padding: 50px 20px 40px;
  font-size: 1.1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  box-shadow: 0 -8px 30px rgba(9, 44, 92, 0.7);
  user-select: none;
  position: relative;
  overflow: hidden;
}

.wave-top {
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 60px;
  background:
    radial-gradient(circle at top center, #0c366d 15%, transparent 70%),
    linear-gradient(to top, #092c5c 40%, transparent 100%);
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  z-index: 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.footer-section {
  flex: 1 1 280px;
  min-width: 260px;
  background-color: #0c366d;
  border-radius: 24px;
  padding: 24px 30px;
  box-shadow: 0 4px 12px rgba(19, 61, 133, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.footer-section:hover,
.footer-section:focus-within {
  transform: scale(1.04);
  box-shadow: 0 8px 20px rgba(19, 61, 133, 0.9);
}

.section-title {
  color: #ffcc00;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 24px;
  user-select: none;
  border-bottom: 2px solid #ffcc00;
  padding-bottom: 6px;
}

.contact-info {
  color: #e0e6f0;
  line-height: 1.7;
  font-weight: 600;
}

.contact-info p {
  margin: 12px 0;
}

.icon {
  color: #ffcc00;
  margin-right: 10px;
  vertical-align: middle;
}

.email-link {
  color: #fefefe;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
  font-weight: 600;
}
.email-link:hover,
.email-link:focus {
  color: #ffd966;
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 18px;
  margin-top: 8px;
}

.social-link {
  color: #ffcc00;
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
  outline: none;
  margin-right: 18px;
}
.social-link:hover,
.social-link:focus {
  color: #ffd966;
  transform: scale(1.2);
}

.footer-map {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(19, 61, 133, 0.6);
  border: 3px solid #ffcc00;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.footer-map:hover,
.footer-map:focus-within {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.9);
}

.explore-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.explore-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #092c5c;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  color: #ffcc00;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.25s ease;
  text-decoration: none;
}
.explore-item:hover,
.explore-item:focus {
  background-color: #ffcc00;
  color: #092c5c;
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(255, 204, 0, 0.8);
}
.explore-item .icon {
  font-size: 1.2rem;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  font-size: 0.95rem;
  color: #fefefe;
  user-select: none;
  position: relative;
  z-index: 1;
}

.footer-bottom-link {
  color: #ffcc00;
  text-decoration: none;
  cursor: pointer;
  transition: text-decoration 0.3s ease;
  outline: none;
  font-weight: 600;
}
.footer-bottom-link:hover,
.footer-bottom-link:focus {
  text-decoration: underline;
  color: #ffd966;
}

/* Responsive */
@media (max-width: 700px) {
  .footer-grid {
    flex-direction: column;
  }
  .footer-section {
    min-width: unset;
    width: 100%;
  }
  .explore-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
