.contact-us {
  position: relative;
  min-height: 100vh;
  padding-top: 100px; /* Account for header */
}

/* Hero section styling */
.contact-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-hero img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.contact-hero h1 {
  position: relative;
  z-index: 2;
  color: #f1d472;
  font-size: 3.5rem;
  text-align: center;
  margin: 0;
  padding: 20px;
  background: -webkit-radial-gradient(#f1d472, #b17a1a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Content section styling */
.contact-content {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: #000000e6;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Form styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  color: #f1d472;
  font-size: 1.1rem;
  text-align: left;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid rgba(241, 212, 114, 0.3);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.3);
  color: #f1d472;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #f1d472;
  background: rgba(0, 0, 0, 0.5);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

button {
  padding: 15px 30px;
  border: 1px solid #f1d472;
  border-radius: 5px;
  background: transparent;
  color: #f1d472;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: center;
  margin-top: 20px;
}

.search-form button {
  margin: 0;
}

button:hover {
  background: #f1d472;
  color: black;
}

/* Responsive design */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .content-wrapper {
    padding: 30px;
  }

  .form-group label {
    font-size: 1rem;
  }

  button {
    font-size: 1rem;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 2rem;
  }

  .content-wrapper {
    padding: 20px;
  }
}
