.contact-section {
  display: flex;
  justify-content: space-between;
  padding: 4rem 2rem;
  background: url('./assets/img/contact-bg.jpg') no-repeat center center;
  background-size: cover;
  color: #fff;
}

.contact-left {
  flex: 1;
  max-width: 500px;
  padding-left: 4rem;
}

.contact-title {
  font-family: 'Alice', serif;
  font-size: 45px;
  letter-spacing: 2px;
  color: #E7BF71;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.contact-description {
  font-family: 'Alice', serif;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0.25px;
  color: #fff;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-family: 'Alice', serif;
  font-size: 13px;
  text-transform: uppercase;
  color: #ccc;
  margin-bottom: 0.3rem;
}

.input-group {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 0.6rem 1rem;
  border-radius: 6px;
}

.input-group .icon {
  margin-right: 0.5rem;
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
}

.input-group input {
  flex: 1;
  border: none;
  background: transparent;
  color: #fff;
  font-family: 'Alice', serif;
  font-size: 14px;
  outline: none;
}

textarea {
  padding: 0.75rem 1rem;
  border: none;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  resize: vertical;
  color: #fff;
  font-family: 'Alice', serif;
  font-size: 14px;
  outline: none;
}

button[type="submit"] {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #E7BF71;
  border: none;
  color: #000;
  font-family: 'Alice', serif;
  font-size: 15px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #d9a842;
}


@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
  }

  .contact-right {
    display: none;
  }

  .contact-left {
    max-width: 100%;
  }

    .contact-info-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    justify-content: center;
  }

  .contact-item {
    width: 100%;
    text-align: center !important;
  }
}

.input-group .icon {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-right: 0.5rem;
  font-size: 16px;
  color: #fff;
  white-space: nowrap;
  min-width: 70px; /* enough space for icon + +601 */
}

.contact-details {
  margin-top: 2rem;
  text-align: center;
  color: #fff;
  font-family: 'Alice', serif;
  font-size: 14px;
  line-height: 1.6;
}

.contact-details i {
  margin-right: 0.4rem;
  color: white;
}

.contact-details .contact-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

@media (min-width: 600px) {
  .contact-details .contact-row:first-child {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }

  .contact-details .contact-row:last-child {
    max-width: 700px;
    margin: 0 auto;
  }
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.social-icons img {
  width: 36px;
  height: 36px;
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.1); /* Optional: zoom effect on hover */
}
