body,
html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
}

.container {
  background: #000;
  display: flex;
  height: 100vh;
  width: 100vw;
}

.left-section {
  color: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 40px;
  min-width: 350px;
}

.logo {
  margin-bottom: 40px;
}

.logo-container {
  display: flex;
  align-items: stretch; /* Ensures children fill the container's height */
}

.logo-bar {
  width: 40px;
  background: #fff;
  margin-right: 18px;
  flex-shrink: 0;
  border-radius: 2px;
}

.logo-main {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.logo-the {
  display: block;
  letter-spacing: 0.1em;
}

.logo-runway {
  display: block;
  background: #fff;
  color: #000;
  padding: 0 10px;
  /* margin: 4px 0 0 0; */
  letter-spacing: 0.1em;
}

.logo-company {
  display: block;
  letter-spacing: 0.1em;
}

.tagline {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-top: 8px;
  border-top: 2px solid #fff;
  padding-top: 8px;
  color: #bbb;
}

.description {
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 50px;
  margin-top: 20px;
  line-height: 1.4;
}

.note {
  font-size: 0.9rem;
  color: #bbb;
  margin-bottom: 30px;
}

#contact-btn {
  background: #fff;
  color: #222;
  border: none;
  border-radius: 25px;
  padding: 14px 38px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

#contact-btn:hover {
  background: #ccc;
}

.right-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 350px;
}

.factory-img {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  filter: grayscale(100%) contrast(1.2);
  /* Use your own image or a placeholder */
}

.contact-form-section {
  padding: 48px 0;
  display: flex;
  justify-content: center;
}

.contact-form {
  background: #181818;
  padding: 36px 28px;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
  color: #fff;
  min-width: 320px;
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.05em;
}

.contact-form label {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.contact-form input[type='text'],
.contact-form input[type='email'],
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #333;
  border-radius: 6px;
  background: #222;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 8px;
  resize: vertical;
  box-sizing: border-box;
}

.contact-form textarea {
  min-height: 100px;
  max-height: 300px;
}

.contact-form button[type='submit'] {
  background: #fff;
  color: #222;
  border: none;
  border-radius: 25px;
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
  width: 100%;
}

.contact-form button[type='submit']:hover {
  background: #ccc;
}

.required-asterisk {
  color: #e53935;
  font-size: 1em;
  margin-left: 2px;
  vertical-align: middle;
}

.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border: 2.5px solid #bbb;
  border-top: 2.5px solid #555;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
}

.toast {
  visibility: hidden;
  min-width: 220px;
  max-width: 90vw;
  background-color: #222;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 16px 24px;
  position: fixed;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  z-index: 9999;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s, background-color 0.3s;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.18);
}

.toast-success {
  background-color: #2e7d32;
  color: #fff;
}

.toast-error {
  background-color: #d32f2f;
  color: #fff;
}

.toast.show {
  visibility: visible;
  opacity: 1;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .container {
    flex-direction: initial;
    height: auto;
    min-height: 100vh;
  }
  .left-section {
    min-width: unset;
    width: 100%;
    padding: 24px 16px;
    box-sizing: border-box;
  }
  .right-section {
    display: none;
  }
  .logo-bar {
    width: 28px;
    margin-right: 10px;
  }
  .logo-main {
    font-size: 2rem;
  }
  .description {
    font-size: 1rem;
    margin-top: 14px;
    margin-bottom: 36px;
  }
  .note {
    font-size: 0.85rem;
    margin-bottom: 18px;
  }
  #contact-btn {
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
  }
  .right-section {
    min-height: 180px;
    padding: 16px 0;
  }
  .factory-img {
    max-width: 100%;
    max-height: 40vh;
  }
  .contact-form-section {
    padding: 24px 0px 0px 0px;
  }
  .contact-form {
    border-radius: initial;
    padding: 18px 16px;
    min-width: unset;
  }
}
