/* /AOE_SA7/SA7_detail.css */
.sa7-detail-page {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.sa7-section-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.sa7-section-nav .btn {
    border-radius: 30px;
    font-weight: 500;
    padding: 0.375rem 1rem;
}

.list-group-item {
    border: none;
    padding: 0.75rem 0;
    background: transparent;
}

.list-group-item i {
    width: 24px;
    text-align: center;
}

.card {
    border-radius: 16px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.btn-primary {
    background: linear-gradient(135deg, #0a2942, #1d3a5c);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d3a5c, #2b4c6f);
}
/* Modal-Anpassungen für das erweiterte Formular */
.inquiry-modal select,
.inquiry-modal textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
}

.inquiry-modal select:focus,
.inquiry-modal textarea:focus {
    outline: none;
    border-color: #00c48c;
    box-shadow: 0 0 0 3px rgba(0,196,140,0.1);
}

#partner-field {
    margin-top: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

.inquiry-modal .form-group {
    margin-bottom: 1.2rem;
}

.inquiry-modal label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #333;
}

/* Modal Basis – versteckt standardmäßig */
.inquiry-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.inquiry-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
}

.inquiry-close {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
}

.inquiry-close:hover {
    color: #333;
}

.inquiry-modal h3 {
    margin-top: 0;
    color: #0a2942;
    border-bottom: 2px solid #00c48c;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}
