/* Contact Page Inline CSS */

.contact-hero-section {
  padding: 8em 4em 6em 4em;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Top Header */
.contact-top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 2em;
}

.contact-stamp-group {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.contact-stamp-text {
  font-family: Comedik, Arial, sans-serif;
  font-size: 40px;
  line-height: 0.81;
  color: #748370;
  text-transform: uppercase;
}

.contact-stamp-icon {
  width: 50px;
  height: 56px;
  object-fit: contain;
}

/* Contact Hero Grid */
.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4em;
  align-items: start;
  margin-top: 1em;
}

.contact-hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.contact-hero-right {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.contact-main-heading {
  font-family: 'Schabo Condensed', Arial, sans-serif;
  font-size: 130px;
  line-height: 1.08;
  color: #FCFFDB;
  text-transform: uppercase;
  margin: 0;
}

.contact-subheading {
  font-family: Comedik, Arial, sans-serif;
  font-size: 38px;
  line-height: 1.1;
  color: #FF6316;
  text-transform: uppercase;
  margin: 0;
  text-shadow: -1px 2px 1px rgba(0, 0, 0, 0.66);
}

.honestly-text {
  color: #FF6316;
  font-family: Comedik, Arial, sans-serif;
  display: inline-block;
  margin-left: 5px;
}

.contact-headphones-img {
  width: 220px;
  height: auto;
  align-self: flex-start;
  margin-bottom: 0.5em;
}

.contact-description {
  font-family: 'Object Sans', Arial, sans-serif;
  font-size: 20px;
  line-height: 1.5;
  color: #FCFFDB;
  margin: 0;
  max-width: 580px;
}

/* Middle Row */
.contact-middle-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 4em;
  margin-bottom: 4em;
  padding-bottom: 2em;
  border-bottom: 1.5px dashed rgba(255, 99, 22, 0.3);
  gap: 4em;
}

.contact-middle-heading {
  font-family: Comedik, Arial, sans-serif;
  font-size: 45px;
  line-height: 1.1;
  color: #FF6316;
  text-transform: uppercase;
  margin: 0;
  flex: 1;
}

.contact-walkie-talkie-img {
  width: 175px;
  height: auto;
  flex-shrink: 0;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 3.5em;
  width: 100%;
}

.contact-form-row {
  display: flex;
  flex-direction: row;
  gap: 3em;
}

.contact-field-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end;
  border-bottom: 1.5px dashed rgba(255, 255, 255, 0.5);
  padding-bottom: 8px;
  transition: border-bottom-color var(--animation-primary);
}

.contact-field-container.half-width {
  flex: 1;
}

.contact-field-container:focus-within {
  border-bottom-color: #E2F533;
}

.contact-field-label {
  font-family: Comedik, Arial, sans-serif;
  font-size: 30px;
  color: #EEE0C6;
  margin-right: 15px;
  white-space: nowrap;
}

.contact-field-input {
  background: transparent;
  border: none;
  font-family: 'Object Sans', Arial, sans-serif;
  font-size: 24px;
  color: #FCFFDB;
  outline: none;
  flex: 1;
  padding: 0;
}

.contact-field-placeholder {
  font-family: Comedik, Arial, sans-serif;
  font-size: 24px;
  color: rgba(238, 224, 198, 0.3);
  margin-left: auto;
  white-space: nowrap;
}

.dropdown-arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid #EEE0C6;
  border-bottom: 2px solid #EEE0C6;
  transform: rotate(45deg);
  margin-bottom: 8px;
  margin-right: 8px;
  pointer-events: none;
  flex-shrink: 0;
}

/* Checkbox Style */
.contact-checkbox-label {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Object Sans', Arial, sans-serif;
  font-size: 26px;
  color: rgba(238, 224, 198, 0.78);
  cursor: pointer;
  user-select: none;
}

.contact-checkbox-input {
  display: none;
}

.contact-checkbox-custom {
  width: 26px;
  height: 26px;
  border: 2px solid #EEE0C6;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.2s, border-color 0.2s;
  background-color: transparent;
}

.contact-checkbox-input:checked + .contact-checkbox-custom {
  background-color: #EEE0C6;
}

.contact-checkbox-custom::after {
  content: '';
  width: 6px;
  height: 12px;
  border: solid #552200;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg) translate(-1px, -1px);
  display: none;
}

.contact-checkbox-input:checked + .contact-checkbox-custom::after {
  display: block;
}

/* Checkbox and submit row */
.contact-action-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2em;
  margin-top: 1em;
}

.contact-pill-submit-btn {
  background-color: #EEE0C6;
  border: none;
  border-radius: 40px;
  padding: 14px 36px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
}

.contact-pill-submit-btn:hover {
  background-color: #FCFFDB;
  transform: translateY(-2px);
}

.contact-pill-submit-btn-text {
  font-family: Comedik, Arial, sans-serif;
  font-size: 24px;
  color: #552200;
  text-transform: uppercase;
  margin: 0;
}

.contact-pill-submit-btn-icon {
  width: 22px;
  height: 22px;
  fill: #552200;
}

/* Bottom info row */
.contact-bottom-info-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
  gap: 3em;
  margin-top: 1.5em;
  border-top: 1.5px dashed rgba(255, 99, 22, 0.3);
  padding-top: 2.5em;
}

.contact-bottom-email-block {
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}

.contact-email-label {
  font-family: Comedik, Arial, sans-serif;
  font-size: 20px;
  color: #FF6316;
  text-transform: uppercase;
  margin: 0;
}

.contact-email-value {
  font-family: 'Object Sans', Arial, sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #FF6316;
  margin: 0;
  line-height: 1.1;
}

.contact-bottom-microcopy {
  font-family: Comedik, Arial, sans-serif;
  font-size: 30px;
  line-height: 1.2;
  color: #FF6316;
  max-width: 630px;
  margin: 0;
  text-transform: uppercase;
}

/* Submit status banner */
.contact-form-status {
  padding: 15px;
  border-radius: 12px;
  font-family: 'Object Sans', Arial, sans-serif;
  font-size: 18px;
  margin-top: 1em;
}
.contact-form-status.success {
  background-color: rgba(226, 245, 51, 0.2);
  color: #E2F533;
  border: 1px solid #E2F533;
}
.contact-form-status.error {
  background-color: rgba(255, 99, 22, 0.2);
  color: #FF6316;
  border: 1px solid #FF6316;
}

/* Responsive adjustments */
@media screen and (max-width: 991px) {
  .contact-hero-section {
    padding: 6em 2em 4em 2em;
  }
  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 3em;
  }
  .contact-main-heading {
    font-size: 90px;
  }
  .contact-subheading {
    font-size: 32px;
  }
  .contact-middle-heading {
    font-size: 35px;
  }
  .contact-bottom-info-row {
    flex-direction: column;
    gap: 2em;
  }
}

@media screen and (max-width: 767px) {
  .contact-form-row {
    flex-direction: column;
    gap: 3.5em;
  }
  .contact-main-heading {
    font-size: 65px;
  }
  .contact-middle-row {
    flex-direction: column;
    gap: 2em;
    align-items: flex-start;
  }
  .contact-action-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5em;
  }
  .contact-pill-submit-btn {
    width: 100%;
    justify-content: center;
  }
}
