/* ===========================
   Contact Section
   =========================== */
.contact-section {
  padding: 5rem 0;
  background-color: #fff;
}

/* Contact Intro Content */
.contact-intro-content {
  margin-bottom: 3rem;
}

.contact-intro-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
  text-align: left;
}

.contact-intro-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #666;
  max-width: 900px;
  margin: 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  /* margin: 0 auto; */
}

/* Contact Form */
.contact-form-wrapper {
  background-color: #f5f5f5;
  border-radius: 5px;
  padding: 2.5rem;
  border: 1px solid #e5e5e5;
}

.contact-title {
  font-size: 2rem;
  font-weight: 700;
  color: #382a25;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 1px solid #d5d5d5;
  border-radius: 5px;
  font-size: 0.95rem;
  font-family: inherit;
  background-color: white;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(163, 133, 101, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #666;
  cursor: pointer;
}

.contact-submit {
  padding: 0.875rem 2.5rem;
  background-color: var(--primary-color);
  color: white;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  box-shadow: 0 4px 12px rgba(163, 133, 101, 0.2);
}

.contact-submit:hover {
  background-color: #8b7355;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(163, 133, 101, 0.3);
}

/* Contact Info */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-map {
  background-color: #e5e5e5;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #d5d5d5;
  min-height: 300px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
}

.map-placeholder h3 {
  font-size: 1.25rem;
  color: #666;
  font-weight: 500;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  width: 100%;
  background-color: #fafafa;
  border-radius: 5px;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}

.contact-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-item svg {
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #999;
  margin: 0 0 0.25rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  font-size: 0.95rem;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-content {
    gap: 2.5rem;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-intro-content {
    margin-bottom: 2.5rem;
  }

  .contact-intro-title {
    font-size: 2rem;
  }

  .contact-intro-description {
    font-size: 1rem;
  }

  .contact-section {
    padding: 4rem 0;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-title {
    font-size: 1.75rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-map {
    min-height: 250px;
  }

  .map-placeholder {
    min-height: 250px;
  }
}

@media (max-width: 600px) {
  .contact-intro-content {
    margin-bottom: 2rem;
  }

  .contact-intro-title {
    font-size: 1.75rem;
  }

  .contact-intro-description {
    font-size: 0.95rem;
  }

  .contact-section {
    padding: 3rem 0;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .contact-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .contact-form {
    gap: 1rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  .contact-submit {
    width: 100%;
  }

  .contact-item {
    padding: 0.875rem;
  }

  .contact-map {
    min-height: 200px;
  }

  .map-placeholder {
    min-height: 200px;
  }

  .map-placeholder h3 {
    font-size: 1.1rem;
  }
}
