/* ============================================
   KONTAKT.CSS — Styles für kontakt.html
   
   Hero + Filial-Cards + Kontaktformular
   Inline-SVG-Icons
   ============================================ */

/* ============================================
   HERO (kompakt)
   ============================================ */

.kon-hero {
  position: relative;
  background: linear-gradient(135deg, #1a83a4 0%, #2BC4D8 100%);
  color: #fff;
  padding: 130px 0 70px 0;
  text-align: center;
  overflow: hidden;
}

@media (max-width: 768px) {
  .kon-hero {
    padding: 110px 0 50px 0;
  }
}

.kon-hero__content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.kon-hero__tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-transform: uppercase;
}

.kon-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #fff;
}

.kon-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

/* ============================================
   SECTIONS
   ============================================ */

.kon-section {
  padding: 4rem 0;
  background: #fff;
}

.kon-section--alt {
  background: #f8f9fa;
}

@media (max-width: 768px) {
  .kon-section {
    padding: 2.5rem 0;
  }
}

.kon-section-header {
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
  text-align: center;
}

.kon-section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.kon-section-subtitle {
  font-size: 1.05rem;
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   FILIAL-CARDS
   ============================================ */

.kon-filialen {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .kon-filialen {
    grid-template-columns: 1fr;
  }
}

.kon-filiale {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}

.kon-filiale:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(26, 131, 164, 0.12);
  border-color: #2BC4D8;
}

.kon-filiale__pin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1a83a4 0%, #2BC4D8 100%);
  border-radius: 12px;
  margin-bottom: 1.25rem;
  color: #fff;
  box-shadow: 0 4px 12px rgba(26, 131, 164, 0.25);
}

.kon-filiale__pin svg {
  width: 24px;
  height: 24px;
}

.kon-filiale__name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 0.25rem 0;
}

.kon-filiale__sub {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
}

.kon-filiale__info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.kon-info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.5;
}

.kon-info-row svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #1a83a4;
  margin-top: 2px;
}

.kon-info-row a {
  color: #495057;
  text-decoration: none;
  transition: color 0.2s;
}

.kon-info-row a:hover {
  color: #1a83a4;
}

.kon-filiale__hours {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
  font-size: 0.85rem;
  color: #6c757d;
  line-height: 1.7;
}

.kon-filiale__hours strong {
  display: block;
  color: #2c3e50;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.kon-filiale__cta {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.kon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 0.85rem;
  flex: 1;
}

.kon-btn--primary {
  background: #1a83a4;
  color: #fff;
}

.kon-btn--primary:hover {
  background: #2BC4D8;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 131, 164, 0.25);
}

.kon-btn--outline {
  background: #fff;
  color: #1a83a4;
  border: 2px solid #d4f0f4;
}

.kon-btn--outline:hover {
  background: #f0fbfc;
  color: #1a83a4;
  border-color: #2BC4D8;
}

.kon-btn--whatsapp {
  background: #25D366;
  color: #fff;
}

.kon-btn--whatsapp:hover {
  background: #1eb858;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.kon-btn svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   KONTAKTFORMULAR
   ============================================ */

.kon-form-wrapper {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.kon-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #1a83a4 0%, #2BC4D8 50%, #5BD5E0 100%);
}

@media (max-width: 768px) {
  .kon-form-wrapper {
    padding: 2rem 1.5rem;
  }
}

.kon-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.kon-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 575px) {
  .kon-form-row {
    grid-template-columns: 1fr;
  }
}

.kon-form-field {
  display: flex;
  flex-direction: column;
}

.kon-form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.kon-form-field input, .kon-form-field select, .kon-form-field textarea {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: #2c3e50;
  transition: all 0.2s;
  width: 100%;
  font-family: inherit;
}

.kon-form-field input:focus, .kon-form-field select:focus, .kon-form-field textarea:focus {
  outline: none;
  border-color: #2BC4D8;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(43, 196, 216, 0.1);
}

.kon-form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.kon-form-submit {
  background: linear-gradient(135deg, #1a83a4 0%, #2BC4D8 100%);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 0.5rem;
  box-shadow: 0 4px 14px rgba(26, 131, 164, 0.25);
}

.kon-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 131, 164, 0.35);
}

.kon-form-note {
  text-align: center;
  font-size: 0.85rem;
  color: #6c757d;
  margin-top: 0.5rem;
  line-height: 1.5;
}

.kon-form-note a {
  color: #1a83a4;
  text-decoration: underline;
}

