/* Active nav link styling */

.nav-links a.active-link {
  border-bottom: 2px solid #00c6ff;
}

/* FAQ Section */
.faq-container {
  max-width: 700px;
  margin: 2rem auto;
  text-align: left;
}

.faq {
  border: 1px solid #ddd;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  padding: 1rem;
  text-align: left;
  background: #f1f5f9;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #e2e8f0;
}

.faq-answer {
  display: none;
  padding: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

/* Bluescope Email Contact */
.section.light a[href^="mailto:"] {
  color: #0a2540;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.section.light a[href^="mailto:"]:hover {
  color: #005f99;
}

/* Contact Form Fields */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit; /* makes textarea use the same font as input */
  font-size: 1rem; /* ensures same size */
  font-weight: 400;
  color: #0a2540;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: vertical; /* optional: allow vertical resize only */
  min-height: 120px; /* optional: default height */
}

/* Contact Form Submit Button */
.contact-form .btn-send {
  background-color: rgba(10, 37, 64, 0.9); /* bright cyan for contrast */
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.8rem 1.2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form .btn-send:hover {
  background-color: #00384a; /* slightly darker on hover */
  transform: scale(1.02);
}
