.contact-card-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.contact-scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
}

.contact-card-hover:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
}

.form-input:focus {
  transform: translateY(-2px);
}

.clients-map-section-fullwidth {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

.clients-map-wrapper {
  position: relative;
  height: 100vh;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  background: #e0f2fe;
}

.clients-map {
  width: 100%;
  height: 100%;
}

.clients-map-panel {
  position: absolute;
  inset-inline-start: 10px;
  top: 10px;
  z-index: 2;
  background: #fff;
  padding: 12px;
  border-radius: 12px;
  max-width: 280px;
  max-height: calc(100% - 20px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.clients-map-panel-title {
  font-weight: 700;
  color: #1d4ed8;
  margin-bottom: 8px;
}

.clients-map-list {
  overflow-y: auto;
}

.clients-map-item {
  display: block;
  width: 100%;
  text-align: start;
  padding: 8px 6px;
  border: 0;
  border-bottom: 1px solid #e5e7eb;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.clients-map-item:hover {
  background: #f3f4f6;
}

.clients-map-item:last-child {
  border-bottom: 0;
}

.clients-map-empty {
  font-size: 0.875rem;
  color: #6b7280;
  padding: 6px;
}

.clients-map-info {
  width: 260px;
  max-height: 320px;
  display: flex;
  flex-direction: column;
}

.clients-map-info-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 40%;
  flex: 0 0 40%;
  min-height: 0;
  margin-bottom: 8px;
  overflow: hidden;
}

.clients-map-info-logo {
  max-height: 100%;
  max-width: 50% !important;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.gm-style .clients-map-info-logo {
  max-width: 50% !important;
  max-height: 100% !important;
}

.clients-map-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.clients-map-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #f59e0b;
}

.clients-map-rating .clients-map-star {
  color: #f59e0b;
}

.clients-map-reviews {
  font-size: 0.8rem;
  color: #64748b;
}

.clients-map-description {
  margin-bottom: 8px;
  color: #475569;
  font-size: 0.85rem;
  line-height: 1.35;
}

.clients-map-info h3 {
  font-weight: 700;
  margin-bottom: 6px;
}

.clients-map-info p {
  margin-bottom: 4px;
  color: #4b5563;
  font-size: 0.875rem;
}

.clients-map-directions-btn {
  margin-top: 8px;
  background: #2563eb;
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 0.875rem;
}

.clients-map-directions-btn:hover {
  background: #1d4ed8;
}

@media (max-width: 640px) {
  .clients-map-panel {
    max-width: calc(100% - 20px);
    max-height: 40%;
  }
}

.input-container {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  transition: color 0.3s ease;
}

.form-input:focus+.input-icon {
  color: #0ea5e9;
}

.form-input.with-icon {
  padding-left: 3rem;
}

.contact-section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #0ea5e9, transparent);
  margin: 3rem auto;
  max-width: 300px;
}