/* ───────────────────────────────────────────────────────────
   public_html/form/quotation/styles.css
   Standalone CSS for “Project Quotation Request” form:
   - Black header with logo + divider + white text
   - Light-gray inputs
   - Checkbox container in light-gray box
   - Neon-green full-width submit button
   - Dark-green footer
────────────────────────────────────────────────────────── */

/* 1) Base Reset & Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  min-height: 100%;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #f5f5f5;
  color: #333;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

/* 2) Container Card */
.container {
  max-width: 600px;
  margin: 40px auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
}

/* 3) Quotation Form Header */
.form-header-quote {
  background-color: #000; /* solid black */
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.form-header-quote img.logo {
  height: 40px;
  width: auto;
}

.form-header-quote .divider {
  width: 1px;
  height: 50px;
  background: #fff;
  opacity: 0.3;
}

.form-header-quote .title-section {
  color: #fff;
}

.form-header-quote .title-section h1 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-header-quote .title-section p {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.8;
}

/* 4) Form Body */
form {
  padding: 20px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 0.95rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f2f2f2;
  transition: border-color 0.2s, background 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #acff03; /* neon green on focus */
  background: #fff;
}

/* Placeholder text slightly darker gray */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888;
}

/* Required asterisk styling */
.form-group label span.required-star {
  color: #e74c3c;
}

/* 5) Checkbox Container */
.checkbox-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 12px;
  background: #f2f2f2;
}

.checkbox-container label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #222;
  flex: 1 1 45%;
}

.checkbox-container input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #0b1e0c; /* dark green checkmark */
}

/* 6) Submit Button */
.btn-submit {
  display: block;
  width: 100%;
  padding: 14px 0;
  background-color: #acff03; /* neon green */
  color: #0b1e0c;             /* dark green text */
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s;
  text-align: center;
}

.btn-submit:hover {
  background-color: #98e603;
}

/* 7) Footer */
.form-footer {
  background-color: #0b1e0c; /* dark green */
  color: #fff;
  text-align: center;
  padding: 14px 20px;
  font-size: 0.9rem;
}

.form-footer p {
  line-height: 1.4;
}

/* 8) Responsive Tweaks */
@media (max-width: 480px) {
  .form-header-quote {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .form-header-quote .divider {
    display: none;
  }

  .form-header-quote img.logo {
    height: 36px;
  }

  .form-header-quote .title-section h1 {
    font-size: 1.5rem;
  }

  .btn-submit {
    font-size: 1rem;
    padding: 12px 0;
  }

  .container {
    margin: 20px 10px;
  }
}
