/* ===== CONTACT PAGE - contact.css ===== */

.ct-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at top right, rgba(121, 241, 255, 0.2) 0%, transparent 50%);
}

.ct-form-card {
  background: #fff;
  border: 1px solid rgba(195, 198, 206, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ct-input {
  background: var(--rw-surface-container-low);
  border: 1px solid transparent;
  color: var(--rw-on-surface);
}

.ct-input:focus {
  border-color: var(--rw-secondary);
  box-shadow: none;
  background: #fff;
}

.ct-map-section {
  height: 500px;
  position: relative;
  background: var(--rw-primary-container);
  overflow: hidden;
}

.ct-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  mix-blend-mode: luminosity;
}

.ct-map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--rw-primary) 0%, transparent 50%, rgba(0, 21, 42, 0.2) 100%);
}

.ct-marker {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: help;
}

.ct-marker-dot {
  width: 12px;
  height: 12px;
  background: var(--rw-secondary);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 105, 113, 0.8);
  animation: pulse 2s infinite;
}

.ct-marker-label {
  margin-top: 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 105, 113, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 105, 113, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 105, 113, 0);
  }
}
