/* Contact Page Styles */

.contact-main {
  padding: 3rem 0;
  min-height: calc(100vh - 60px - 80px); /* Abzüglich Header und Footer */
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Contact Info Section */
.contact-info {
  padding: 2rem;
}

.contact-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 180, 216, 0.1);
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.contact-details p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.contact-details a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-details a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.contact-hours {
  font-size: 0.85rem;
  color: var(--color-text-lighter);
  margin-top: 0.25rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(0, 180, 216, 0.2);
  color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Form Section */
.contact-form-section {
  padding: 2rem;
}

.form-title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.form-control {
  padding: 0.75rem 1rem;
  border-radius: var(--rounded-lg);
  background: rgba(15, 23, 42, 0.3);
  border: 1px solid var(--glass-border);
  color: var(--color-text);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(0, 180, 216, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  flex-direction: row;
  align-items: flex-start;
}

.form-checkbox input {
  margin-top: 0.25rem;
  margin-right: 0.5rem;
}

.form-checkbox label {
  font-size: 0.9rem;
  line-height: 1.4;
}

.form-checkbox a {
  color: var(--color-primary);
  text-decoration: none;
}

.form-checkbox a:hover {
  text-decoration: underline;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.form-response {
  margin-top: 1.5rem;
}

.alert {
  padding: 1rem;
  border-radius: var(--rounded-lg);
  font-size: 0.95rem;
  line-height: 1.5;
}

.alert-success {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
}

.alert-error {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* FAQ Section */
.faq-section {
  padding: 2rem;
  margin-bottom: 2rem;
}

.faq-list {
  margin-top: 2rem;
}

.faq-item {
  border-bottom: 1px solid var(--glass-border);
}

.faq-question {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question h3 {
  font-size: 1.1rem;
  color: var(--color-text);
  margin: 0;
  transition: color 0.3s ease;
}

.faq-toggle {
  color: var(--color-primary);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-question h3 {
  color: var(--color-primary);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-light);
}

/* Map Section */
.map-section {
  padding: 2rem;
  margin-bottom: 2rem;
}

.map-container {
  margin-top: 2rem;
  border-radius: var(--rounded-lg);
  overflow: hidden;
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background: rgba(15, 23, 42, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-overlay {
  text-align: center;
  color: var(--color-text-lighter);
}

.map-overlay i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

/* Responsive */
@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 2rem;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .form-actions button {
    width: 100%;
  }
}
