/* 
******************************
******************************
Contact Heading CSS
******************************
******************************
*/
.contact-heading {
  height: 256px;
  background-color: black;
}

.contact-heading h1 {
  font-size: 56px;
  text-align: center;
  padding-top: 149px;
  font-weight: 550;
  letter-spacing: 4px;
  color:#fff;
}

/* 
******************************
******************************
Contact Form CSS
******************************
******************************
*/

.form-container {
  width: 100%;
  max-width: 836px;
  margin: 0 auto;
  padding: 44px 10px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

label {
  font-size: 14px;
  margin-bottom: 8px;
  color: white;
  font-weight: 100;
}

.required {
  color: white;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  height: 37px;
  background: #000;
  border: 1px solid white;
  border-radius: 0;
  padding: 0 15px;
  color: white;
  font-size: 16px;
  outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  border-color: #6cc5f5;
}

input::placeholder {
  color: #9ca3af;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  cursor: pointer;
}

select option {
  background-color: #1f2937;
  color: white;
}

textarea {
  height: 100px;
  padding: 15px;
  resize: vertical;
  font-family: inherit;
}

.location-input {
  color: #9ca3af;
}

.submit-btn {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 25px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .form-grid,
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  body {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select,
  textarea {
    height: 45px;
    font-size: 14px;
  }

  label {
    font-size: 14px;
  }

  .submit-btn {
    font-size: 16px;
    padding: 12px 30px;
  }
}
