/* DayTronX — contact.css */

.contact-page {
  background: var(--dt-dark);
  color: var(--dt-white);
  min-height: calc(100vh - 64px);
  padding: 70px 40px 90px;
  position: relative;
  overflow: hidden;
}
.contact-page::before {
  content: '';
  position: absolute;
  width: 520px; height: 520px;
  top: -200px; right: -180px;
  border-radius: 50%;
  border: 1px solid rgba(77, 191, 200, 0.08);
  pointer-events: none;
}
.contact-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  z-index: 1;
}

/* LEFT side */
.contact-left h1 {
  font-family: 'Figtree', sans-serif;
  font-weight: 800;
  font-size: 34px;
  color: var(--dt-white);
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.contact-sub {
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  margin-bottom: 22px;
  max-width: 480px;
}
.contact-intro {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}
.contact-details {
  list-style: none;
  margin: 28px 0;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}
.contact-details i {
  font-size: 20px;
  color: var(--dt-teal);
  flex-shrink: 0;
}
.contact-quote {
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--dt-teal);
  padding: 18px 22px;
  font-size: 15px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 28px 0;
  max-width: 480px;
}
.contact-what-next h3 {
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--dt-white);
  margin-bottom: 12px;
  margin-top: 30px;
  letter-spacing: 0.2px;
}
.contact-what-next p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 480px;
}
.contact-response-note {
  margin-top: 22px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* RIGHT side — form */
.contact-form-wrap {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 36px;
}
.contact-form-wrap h2 {
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--dt-white);
  margin-bottom: 22px;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--dt-white);
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  padding: 13px 14px;
  border-radius: 4px;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  font-family: 'Manrope', sans-serif;
  margin-bottom: 16px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.32);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--dt-teal);
  background: rgba(255, 255, 255, 0.12);
}
.contact-form button {
  background: var(--dt-teal);
  color: var(--dt-white);
  border: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  transition: background 0.18s ease;
}
.contact-form button:hover {
  background: var(--dt-teal-dark);
}
.contact-form button:disabled {
  opacity: 0.7;
  cursor: wait;
}

/* Inline submission status (fetch handler in main.js drives this) */
.contact-form-status {
  margin-top: 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px;
  line-height: 1.5;
  min-height: 0;
}
.contact-form-status.is-success {
  color: var(--dt-teal);
  background: rgba(77, 191, 200, 0.10);
  border-left: 3px solid var(--dt-teal);
  padding: 14px 18px;
  border-radius: 4px;
}
.contact-form-status.is-error {
  color: #ff9a97;
  background: rgba(217, 83, 79, 0.16);
  border-left: 3px solid var(--dt-danger);
  padding: 14px 18px;
  border-radius: 4px;
}
.contact-recaptcha-notice {
  margin-top: 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.35);
}
.contact-recaptcha-notice a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
}
.contact-recaptcha-notice a:hover {
  color: var(--dt-teal);
}

/* Social icons under the phone / email / map cluster on the left column.
   Same 36x36 rounded-square treatment as the footer; teal-tinted at rest,
   brand color on hover. */
.contact-socials {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}
.contact-socials a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(77, 191, 200, 0.14);
  border: 1px solid rgba(77, 191, 200, 0.30);
  color: var(--dt-teal);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.contact-socials a i {
  font-size: 22px;
  line-height: 1;
}
.contact-socials a.dt-social-linkedin:hover {
  background: #0077B5;
  border-color: #0077B5;
  color: #fff;
}
.contact-socials a.dt-social-facebook:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #fff;
}

@media (max-width: 900px) {
  .contact-page { padding: 50px 24px 70px; }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-left h1 { font-size: 28px; }
  .contact-form-wrap { padding: 26px; }
}
@media (max-width: 540px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}
