body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background: #fff9f9;
  color: #121212;
}

/* Container split */
.contact-container {
  display: flex;
  max-width: 1760px;
  margin: 80px auto;
  padding: 0 80px;
  gap: 64px;
}

.contact-left {
  flex: 1;
}

.contact-right {
  flex: 1;
}

.contact-map {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* Title */
.contact-title {
  font-family: 'Domine', serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}
.contact-title .highlight {
  color: #0267B1;
}
.contact-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  border: none;
  border-bottom: 1px solid #8e8e8e;
  padding: 12px 0 12px 20px;
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 500;
  outline: none;
  width: 100%;
  color: #121212;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8e8e8e;
  font-weight: 500;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Checkbox */
.form-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #121212;
  margin-top: 8px;
  width: 100%;
}
.form-check-input {
  margin: 0;              /* removes weird extra gap */
  width: 16px;
  height: 16px;
  appearance: auto;
  -webkit-appearance: auto;
  cursor: pointer;
}

/* Button */
.submit-btn {
  margin-top: 20px;
  background-color: #ffcc29;
  color: #121212;
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 100%; /* full width */
  transition: all 0.3s ease;
}
.submit-btn:hover {
  background-color: #ffcc29;
  color: transparent;
  -webkit-text-stroke: 1px #121212;
}

/* Contact Info Row */
.contact-info {
  display: flex;
  justify-content: flex-start; /* left aligned */
  gap: 40px;
  padding-left: 60px;
  margin: 10px 80px; /* same horizontal padding as form */
  max-width: 1760px;
  font-size: 18px;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Manrope', sans-serif;
}
.info-item .icon {
  font-size: 22px;
}
.info-item a {
  color: #0267B1;
  text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .contact-container {
    padding: 0 40px;
    gap: 48px;
  }
  .contact-info {
    margin: 40px 40px;
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
    padding: 0 32px;
    gap: 40px;
  }
  .contact-info {
    flex-direction: column;
    gap: 24px;
    margin: 40px 32px;
  }
}

@media (max-width: 767px) {
  .contact-container {
    flex-direction: column;
    padding: 0 20px;   /* ✅ EXACTLY 20px left & right */
    gap: 32px;
  }

  .contact-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin: 40px 20px; /* ✅ Matches container padding */
  }

  .contact-title {
    font-size: 36px;
    text-align: center;
  }

  .contact-subtitle {
    font-size: 18px;
    text-align: center;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 18px;
  }

  .submit-btn {
    font-size: 18px;
    padding: 14px 24px;
  }
}

@media (max-width: 480px) {
  .contact-container {
    padding: 0 20px; /* ✅ still 20px for very small screens */
  }
  .contact-info {
    margin: 32px 20px;
  }
  .contact-title {
    font-size: 30px;
  }
}

/* ==========================
   CHECKBOX ALIGNMENT FIX
   ========================== */

.checkbox-container {
  display: flex;
  align-items: center;      /* ✅ centers vertically */
  justify-content: flex-start;
  gap: 10px;                /* space between checkbox and text */
  margin-top: 10px;
  line-height: 1.4;
}

.checkbox-container input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: #0267B1;
  cursor: pointer;
  margin: 0;                /* remove weird spacing from browsers */
}

.checkbox-container label {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #121212;
  cursor: pointer;
  user-select: none;
}

/* Mobile tweaks */
@media (max-width: 767px) {
  .checkbox-container {
    gap: 8px;
  }

  .checkbox-container input[type="checkbox"] {
    width: 16px;
    height: 16px;
  }

  .checkbox-container label {
    font-size: 16px;
  }
}
