
/* Kontakt Styles */
.contact-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.contact-header .section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-header .section-subtitle {
  font-size: 1.125rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

.breadcrumb a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #f8fafc;
}

.breadcrumb-separator {
  color: #64748b;
}

.breadcrumb-current {
  color: #f8fafc;
  font-weight: 500;
}

/* Contact Grid */
.contact-content {
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Contact Form */
.contact-form-section {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.form-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 1.5rem;
}

.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;
  color: #f8fafc;
  font-size: 0.875rem;
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #f8fafc;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  background: #ef4444;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.form-submit:hover {
  background: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(239, 68, 68, 0.3);
}

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

.info-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 1rem;
}

.contact-card {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  color: #ef4444;
  font-size: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.contact-details h3 {
  color: #f8fafc;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: #94a3b8;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

/* FAQ Section */
.faq-section {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.faq-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f8fafc;
  margin-bottom: 1.5rem;
}

.faq-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #334155;
}

.faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.faq-item h4 {
  color: #f8fafc;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.faq-item p {
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-header .section-title {
    font-size: 2.5rem;
  }
  
  .contact-form-section,
  .contact-card,
  .faq-section {
    padding: 1.5rem;
  }
  
  .contact-grid {
    gap: 1.5rem;
  }
  
  .breadcrumb {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .contact-header {
    padding: 1rem 0;
    margin-bottom: 2rem;
  }
  
  .contact-header .section-title {
    font-size: 2rem;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .contact-icon {
    margin-top: 0;
  }
  
  .form-submit {
    padding: 1rem 1.5rem;
  }
}
