/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: white;
  color: #000;
}

/* Header Title */
.contact-title {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 2rem 2rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-title .dot {
  width: 1.8rem;
  height: 1.8rem;
  background-color: #008ca5;
  border-radius: 50%;
}

/* Main Container */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  min-height: 80vh;
}

.form-section {
  background-color: #008ca5;
  padding: 3rem 2rem;
  color: #000;
}

.form-section h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: bold;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  border: none;
  border-bottom: 1px solid black;
  background: transparent;
  padding: 0.5rem;
  font-size: 1rem;
  color: black;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  background: black;
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  font-weight: bold;
  width: 120px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #333;
}

/* Right Info */
.info-section {
  display: flex;
  flex-direction: column;
}

.info-block {
  padding: 2rem;
  flex: 1;
}

.info-block.black {
  background-color: #000;
  color: white;
}

.info-block.black p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.info-block.white {
  background-color: white;
  color: black;
}

.small-dot {
  width: 0.75rem;
  height: 0.75rem;
  display: inline-block;
  background-color: #008ca5;
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 0.3rem;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .info-section {
    flex-direction: column;
  }

  .contact-title {
    padding: 1.5rem 1rem;
    font-size: 1.5rem;
  }

  .form-section,
  .info-block {
    padding: 2rem 1rem;
  }

  .contact-form button {
    width: 100px;
    align-self: flex-start;
  }
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: white;
  opacity: 1; /* ensures it's solid white, not faded */
}
