

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

body {
  background-color: #f8fafc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  padding-top: 50px;
}

/* ===== Header Section ===== */
header {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.company-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e3a8a;
  letter-spacing: 0.5px;
}


.logo-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0px 20px;
}

.logo {
  width: 40px;
  height: 40px;
}


/* ===== Contact Form Section ===== */
.contact-container {
  background: #fff;
  padding: 40px;
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-container h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: #111827;
}

.contact-container p {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 6px;
  font-weight: 500;
  color: #111827;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #2563eb;
}

.full-width {
  width: 100%;
}

.submit-btn {
  background-color: #2563eb;
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
  transition: all 0.2s ease-in-out;
}

.submit-btn:hover {
  background-color: #1e40af;
  transform: translateY(-2px);
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }

  .contact-container {
    padding: 25px;
  }

  .company-name {
    font-size: 1.5rem;
  }
}




/* form status  */
.status {
  position: fixed;
  bottom: 25px;
  right: 25px;
  padding: 12px 18px;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: #fff;
  display: none;
  z-index: 9999;
}

.status.loading { background: #2563eb; }   /* blue */
.status.success { background: #16a34a; }   /* green */
.status.error   { background: #dc2626; }   /* red */