/* Contact Page specific styles */

.contact-section {
  padding: 6rem 0;
  background-color: var(--color-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  background: var(--color-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper {
  padding: 4rem;
}

.contact-info-wrapper {
  padding: 4rem;
  background-color: var(--color-warm);
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h2,
.contact-info h2 {
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

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

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

.form-label {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-text);
}

.form-input,
.form-select,
.form-textarea {
  padding: 1rem 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--color-white);
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.1);
}

.form-textarea {
  resize: vertical;
}

.custom-select-wrapper {
  position: relative;
}

.custom-select-wrapper::after {
  content: "▼";
  font-size: 0.8rem;
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--color-text-muted);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
}

.contact-form .btn {
  margin-top: 1rem;
  align-self: flex-start;
}

/* Contact Info Styles */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-block {
  display: flex;
  gap: 1.5rem;
}

.info-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.info-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.info-content p {
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

.info-content a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s;
}

.info-content a:hover {
  color: var(--color-forest);
  text-decoration: underline;
}

/* Map Section */
.map-section {
  width: 100%;
  line-height: 0;
}

.map-embed {
  width: 100%;
  height: 500px;
  filter: grayscale(20%) contrast(1.1);
}

/* Responsive */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .contact-info-wrapper {
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
}

@media (max-width: 768px) {
  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 2.5rem 1.5rem;
  }
  
  .map-embed {
    height: 400px;
  }
}
