.contact-hero {
  background-image: url('assets/images/contact-banner.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 100px 20px;
  color: white;
  position: relative;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.contact-hero-text {
  position: relative;
  z-index: 1;
}

.contact-hero-text h1 {
  font-size: 40px;
  color: gold;
}

.contact-info {
  background: #f9f9f9;
  text-align: center;
  padding: 60px 20px;
}

.info-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.info-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  width: 280px;
}

.contact-form-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.contact-container {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  max-width: 700px;
  width: 100%;
}

.contact-container h2 {
  text-align: center;
  color: #004d99;
  margin-bottom: 30px;
}

.contact-form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.contact-form .btn {
  display: block;
  width: 100%;
  margin-top: 25px;
  background: gold;
  color: #004d99;
  border: none;
  padding: 12px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form .btn:hover {
  background: #004d99;
  color: white;
}

.success-message {
  background: #d4edda;
  color: #155724;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #c3e6cb;
  border-radius: 5px;
}

.error-message {
  background: #f8d7da;
  color: #721c24;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #f5c6cb;
  border-radius: 5px;
}
/* Make SELECT same style as normal inputs */
.contact-form select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: #fff;
    cursor: pointer;
    appearance: none; /* Remove default arrow look */
}

/* Make DATE input same style as other inputs */
.contact-form input[type="date"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: #fff;
}

/* Fix calendar icon alignment */
.contact-form input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    padding: 4px;
}

/* Make all elements equal height */
.contact-form input,
.contact-form textarea,
.contact-form select {
    box-sizing: border-box;
}

<style>
.category-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 15px;
}

.cat-option {
  background: #f0f7ff;
  padding: 10px 15px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cat-option:hover {
  background: #e2f0ff;
  border-color: #0078d7;
}

.cat-option input[type="radio"] {
  width: 18px;
  height: 18px;
}

.cat-option input[type="radio"]:checked + span {
  font-weight: bold;
  color: #0078d7;
}

</style>

