.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 40px auto;
  max-width: 1100px;
}

.contact-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.6s ease;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
}

.contact-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
  color: #0066cc;
}

.finger-icon {
  display: block;
  margin: 0 auto 10px auto;
  width: 40px;
  height: 40px;
  animation: floatFinger 2s ease-in-out infinite;
}

@keyframes floatFinger {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.contact-card.pop-hover:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.section-headline {
  text-align: center;
  font-size: 28px;
  color: #0066cc;
  margin-bottom: 30px;
}

.hotline-section {
  width: 100%;
  margin: 40px auto;
}

.hotline-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.hotline-img {
  text-align: right;
}

.contact-image {
  width: 100%;
  max-width: 420px;
  border-radius: 15px;
}

.hotline-box .text-right {
  text-align: right;
}

.hotline-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #0066cc;
}

.hotline-box p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #444;
}

.hotline-box a {
  padding: 16px 28px;
  border-radius: 10px;
  background: #0066cc;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  display: inline-block;
}

.one-col {
  max-width: 100%;
  margin: 50px auto;
  text-align: center;
}

.one-col h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.one-col p {
  font-size: 16px;
  color: #444;
}

.one-col a {
  color: #0066cc;
  font-weight: bold;
  text-decoration: underline;
}

.map-section {
  margin-top: 40px;
  width: 100%;
  height: 500px;
}

.map-frame {
  width: 100%;
  height: 100%;
  border: 0;
}

@media screen and (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hotline-box {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hotline-box .text-right {
    text-align: center;
  }
}
