.contact-page-info {
    text-align: center;
}

.contact-page-info h1 {
    text-align: left;
}

.contact-section {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 1rem;
}

/* LEFT CONTENT */
.info small {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 15px;
}

.icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e0e7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

/* FORM CARD */
.card {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  padding: 36px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  font-size: 0.8rem;
}

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  outline: none;
}

.phone-input {
  display: flex;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  overflow: hidden;
}

.phone-input select {
  border: none;
  border-radius: 0;
  padding: 0 5px;
  border-right: 1px solid #e5e7eb;;
  cursor: pointer;
  max-width: 45px;
}


.phone-input select:focus {
    border: 0;
    outline: 0;
  border-right: 1px solid #e5e7eb;;
}

input[type="tel"] {
    flex: 1;
    border: none;
}

textarea {
  resize: none;
  min-height: 100px;
}

input:focus, select:focus, textarea:focus {
  border-color: rgb(58, 128, 78);
}

button {
  float: right;
}

button:hover {
  opacity: 0.95;
}

/* RESPONSIVE */
@media screen and (max-width: 800px) {
  .contact-section {
    grid-template-columns: 100%;
    row-gap: 2rem;
  }

  .contact-page-info .col-6:first-child {
    display: none;
  }

  .contact-page-info {
    background: url("../images/contact.png"), linear-gradient(45deg, rgb(58, 128, 78) 50%, rgb(161, 247, 76));
    background-size: cover;
    background-blend-mode: soft-light;
  }
}