/* ===================================
   Contact Template Styles
   =================================== */

   .contact-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8faf9 0%, #ffffff 100%);
    overflow: hidden;
  }
  
  /* Grid Layout */
  .contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
  }
  
  /* Form Wrapper */
  .contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  }
  
  .contact-form-header {
    margin-bottom: 40px;
  }
  
  /* Aktualisierter Grünton #6da036 */
  .contact-badge {
    display: inline-block;
    padding: 8px 16px;
    background: #e8f5e9;
    color: #7cb342;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 16px;
  }
  
  .contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.2;
  }
  
  .contact-subtitle {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.6;
  }
  
  /* Form Styles */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #7cb342;
    background: white;
    box-shadow: 0 0 0 4px rgba(124, 179, 66, 0.1);
  }
  
  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  /* Checkbox Group */
  .checkbox-group {
    margin-top: 8px;
  }
  
  .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.875rem;
    color: #666;
  }
  
  .checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
  }
  
  .checkbox-label a {
    color: #7cb342;
    text-decoration: underline;
  }
  
  .checkbox-label a:hover {
    color: #689f38;
  }
  
  /* Submit Button */
  .btn-contact-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #7cb342 0%, #689f38 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
    margin-top: 12px;
  }
  
  .btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 179, 66, 0.4);
  }
  
  .btn-contact-submit svg {
    transition: transform 0.3s ease;
  }
  
  .btn-contact-submit:hover svg {
    transform: translateX(4px);
  }
  
  /* Contact Info Wrapper */
  .contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  /* Contact Info Cards */
  .contact-info-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Horizontal layout: Icon links, Text rechts */
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }
  
  .contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  }
  
  .contact-info-icon {
    /* Kleineres Icon, flex-shrink verhindert Schrumpfen */
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e8f5e9 0%, #d4ecc5 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  
  .contact-info-icon svg {
    color: #7cb342;
    width: 28px;
    height: 28px;
  }
  
  /* Text-Container für rechte Seite */
  .contact-info-content {
    flex: 1;
  }
  
  .contact-info-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
  }
  
  .contact-info-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
  }
  
  /* CTA Box */
  .contact-cta-box {
    background: linear-gradient(135deg, #7cb342 0%, #689f38 100%);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 25px rgba(124, 179, 66, 0.3);
  }
  
  .contact-cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }
  
  .contact-cta-icon svg {
    color: white;
  }
  
  .contact-cta-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
  }
  
  .contact-cta-box p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.95;
  }
  
  .btn-cta-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: white;
    color: #7cb342;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .btn-cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  
    .contact-form-wrapper {
      padding: 40px;
    }
  }
  
  @media (max-width: 768px) {
    .contact-section {
      padding: 60px 0;
    }
  
    .contact-form-wrapper {
      padding: 30px 20px;
    }
  
    .contact-title {
      font-size: 2rem;
    }
  
    .form-row {
      grid-template-columns: 1fr;
      gap: 16px;
    }
  
    .contact-leaf {
      opacity: 0.08;
    }
  
    .contact-leaf-left {
      width: 200px;
    }
  
    .contact-leaf-right {
      width: 180px;
    }
  
    /* Mobile Stack-Layout für Cards */
    .contact-info-card {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .contact-info-icon {
      margin-bottom: 16px;
    }
  }
  