/* contact.css – Contact page specific styles */

.contact-hero {
  /* background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%); */
  /* padding: 3rem 0 2rem 0; */
  /* min-height: 55vh; */
  padding: 5rem 0;
  /*background: linear-gradient(120deg, #0a0a0a 0%, #1a1a1a 100%);*/
  background: radial-gradient(circle at 150% 50%, rgba(0, 0, 0, 0.69) 0%, #000000 60%);
}

.contact-hero h1,
.contact-hero p {
  color: #dedede;
}

.contact-info-card,
.contact-form-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-card:hover,
.contact-form-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05) !important;
}

.detail-item .icon-box {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 205, 2, 0.1);
  border-radius: 50%;
  transition: 0.2s;
}

.detail-item:hover .icon-box {
  background: #04cd02;
}

.detail-item:hover .icon-box i {
  color: white !important;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f0f0f0;
  border-radius: 50%;
  color: #333;
  font-size: 1.2rem;
  transition: all 0.2s;
}

.social-icon:hover {
  background: #04cd02;
  color: white;
  transform: translateY(-3px);
}

.contact-input {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 16px;
  font-family: "Poppins", sans-serif;
  transition: 0.2s;
}

.contact-input:focus {
  border-color: #04cd02;
  box-shadow: 0 0 0 3px rgba(4, 205, 2, 0.1);
  outline: none;
}

.btn-premium-pill {
  background: #000;
  color: #fff;
  border-radius: 40px;
  padding: 12px 32px;
  font-weight: 600;
  transition: 0.2s;
}

.btn-premium-pill:hover {
  background: #04cd02;
  color: #000;
  transform: translateY(-2px);
}

.whatsapp-float-btn {
  position: fixed;
  bottom: 30px;
  right: 20px;
  background: #25d366;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: 0.2s;
}

.whatsapp-float-btn:hover {
  transform: scale(1.05);
  background: #20b359;
}

@media (max-width: 768px) {
  .whatsapp-float-btn {
    bottom: 80px;
  }
}

.contact-map-section iframe {
  filter: grayscale(0.2) contrast(1.05);
  transition: filter 0.4s ease;
}

.contact-map-section iframe:hover {
  filter: grayscale(0);
}