.modal {
  display: none;
  position: fixed;
  z-index: 9999 !important; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}

.modal.active {
  display: block;
}

.modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 24px;
  border-radius: 10px;
  width: 30%;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}

.contact-title {
  font-size: 32px;
  font-weight: 1200;
  text-align: center;
  color: #333;
  margin-bottom:0.5rem;
}

.contact-desc{
  font-size: 16px;
  text-align: center;
  color: #333;
}
.contact-desc-bottom{
  font-size: 14px;
  text-align: center;
  color: #b7b7b7;
  padding: 1rem;
}

.contact-info {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  background-color: #D1E3FF;
  padding:0.5rem 1rem 0.5rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  color:rgb(var(--textgray));
}
.contact-item .label {
  font-weight: 600;
}


@media (max-width: 1600px) {
  .modal-content {
    width: 60%;
  }
}

@media (max-width: 1200px) {
  .modal-content {
    width: 90%;
  }
}