/* Contact Section Styling */
.contact-section {
  background: #fff;
  display: flex;
  height: fit-content;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
}


.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    
    h1 {
        font-family: var(--primary-font);
        font-size: 52px;
    }

    p {
        font-family: var(--secondary-font);
        font-size: 20px;
        width: 50%;
        text-align: center;
    }
}

.contact-container {
  max-width: 900px;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  padding: 50px;
  border-radius: 10px;
}

.contact-header {
  text-align: left;
  margin-bottom: 40px;
}

.contact-header .sub-heading {
  color: #a27b5c;
  font-size: 20px;
  font-family: var(--secondary-font);
  margin-bottom: 5px;
}

.contact-header h2 {
    font-family: var(--primary-font);
  font-size: 28px;
  color: #111;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.contact-header .description {
  color: #666;
  font-size: 15px;
  font-family: var(--secondary-font);
  max-width: 500px;
}

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

.form-row {
  display: flex;
  gap: 20px;
}

.form-row input,
.form-row select {
  flex: 1;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  font-family: var(--secondary-font);
  outline: none;
  transition: border 0.3s;
}

textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  resize: none;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #000;
}

/* Button */
button {
  align-self: center;
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 35px;
  font-size: 14px;
  font-family: var(--secondary-font);
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

button:hover {
  background: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}
