/* Contact Section - Split Screen Layout */
.contact-section {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: stretch;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: calc(100vh - var(--header-height));
}

/* Left Side - Contact Information */
.contact-info {
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 4rem);
}

.contact-info-content {
  max-width: 500px;
  width: 100%;
}

.contact-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #4a5d45;
  margin-bottom: 1rem;
}

.contact-main-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #4a5d45;
  margin-bottom: 3rem;
  line-height: 1.2;
}

.contact-detail {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-detail:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-icon {
  flex-shrink: 0;
  color: #4a5d45;
}

.contact-label {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0 0 0.5rem 0;
}

.contact-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: #4a5d45;
  text-decoration: none;
  display: block;
  line-height: 1.6;
}

.contact-value:hover {
  text-decoration: underline;
}

/* Right Side - Contact Form */
.contact-form-section {
  background: #4a5d45;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 4rem);
}

.contact-form-wrapper {
  max-width: 500px;
  width: 100%;
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 2.5rem;
  text-align: left;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-field {
  display: grid;
  gap: 0.5rem;
}

.form-field label {
  font-size: 0.95rem;
  font-weight: 500;
  color: white;
  display: none;
}

.input-wrapper {
  position: relative;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding: 0.75rem 2.5rem 0.75rem 0;
  color: white;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: white;
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.input-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
}

.form-field textarea + .input-icon {
  top: 1rem;
  transform: none;
}

.btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: transparent;
  border: 2px solid white;
  border-radius: 50px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.btn-submit:hover {
  background: white;
  color: #1e3a8a;
}

.form-checkbox {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 1rem;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  cursor: pointer;
}

.form-status {
  border-radius: 8px;
  padding: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.form-status[data-state="success"] {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-status[data-state="error"] {
  background: rgba(239, 68, 68, 0.2);
  color: #fecaca;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info {
    order: 2;
  }

  .contact-form-section {
    order: 1;
  }
}

@media (max-width: 768px) {
  .contact-section {
    min-height: auto;
  }

  .contact-container {
    min-height: auto;
  }

  .contact-info,
  .contact-form-section {
    padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2rem);
  }

  .contact-main-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .contact-detail {
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }

  .contact-icon svg {
    width: 32px;
    height: 32px;
  }

  .contact-form-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 640px) {
  .contact-eyebrow {
    font-size: 0.7rem;
  }

  .contact-main-title {
    font-size: 1.5rem;
  }

  .contact-value {
    font-size: 0.95rem;
  }

  .contact-form-title {
    font-size: 1.75rem;
  }

  .form-field input,
  .form-field textarea {
    font-size: 0.95rem;
  }

  .btn-submit {
    font-size: 0.9rem;
    padding: 0.875rem 1.5rem;
  }
}
