/* ========================================
   Business Service Page – business-service.css
   Schwarz, Gold, Weiß, Dunkelgrau
   ======================================== */

/* --- Hero --- */
.bs-hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(165deg, #0a0a0a 0%, #1a1a1a 40%, #0d0d0d 100%);
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.bs-hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}
.bs-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}
.bs-hero-text {
    font-size: 1.1rem;
    color: #a0a0a0;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}
.bs-hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-lg {
    padding: 1rem 2rem !important;
    font-size: 1rem !important;
}

/* --- Problems --- */
.bs-problems {
    padding: 5rem 0;
    background: #111;
}
.bs-problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
}
.bs-problem-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-left: 3px solid #ef4444;
    padding: 1.2rem 1.5rem;
    border-radius: 0.5rem;
    transition: transform 0.2s, border-color 0.2s;
}
.bs-problem-item:hover {
    transform: translateX(4px);
    border-left-color: #d4af37;
}
.bs-problem-item span {
    font-size: 1.5rem;
    flex-shrink: 0;
}
.bs-problem-item p {
    color: #ccc;
    font-size: 0.95rem;
}

/* --- Solutions --- */
.bs-solutions {
    padding: 5rem 0;
    background: #0a0a0a;
}
.section-subtitle {
    color: #888;
    font-size: 1.05rem;
    max-width: 650px;
    margin: 1rem auto 0;
    line-height: 1.7;
}
.bs-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.bs-solution-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s, border-color 0.3s, box-shadow 0.3s;
}
.bs-solution-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.08);
}
.bs-card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.bs-solution-card h3 {
    color: #d4af37;
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}
.bs-solution-card p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* --- Audience --- */
.bs-audience {
    padding: 4rem 0;
    background: #111;
}
.bs-audience-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2.5rem;
}
.bs-audience-tag {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #e8d48b;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s;
}
.bs-audience-tag:hover {
    background: rgba(212, 175, 55, 0.18);
}

/* --- Packages --- */
.bs-packages {
    padding: 5rem 0;
    background: #0a0a0a;
}
.bs-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.bs-package-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.2s, border-color 0.3s;
}
.bs-package-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.3);
}
.bs-package-featured {
    border-color: #d4af37 !important;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.1);
}
.bs-package-label {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}
.bs-package-featured .bs-package-label {
    background: #d4af37;
    color: #000;
}
.bs-package-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.bs-package-price {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1.5rem;
}
.bs-package-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #888;
}
.bs-package-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}
.bs-package-card ul li {
    padding: 0.5rem 0;
    color: #bbb;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.bs-package-card ul li::before {
    content: "✓ ";
    color: #d4af37;
    font-weight: 700;
}

/* One-off services */
.bs-oneoff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.bs-oneoff-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0.75rem;
    padding: 1.5rem 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.8rem;
    min-height: 130px;
}
.bs-oneoff-card h4 {
    color: #ddd;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}
.bs-oneoff-price {
    color: #d4af37;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    white-space: nowrap;
}
.bs-tax-note {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    margin-top: 2rem;
    font-style: italic;
}

/* --- Contact Form --- */
.bs-contact {
    padding: 5rem 0;
    background: #111;
}
.bs-form {
    max-width: 750px;
    margin: 2.5rem auto 0;
}
.bs-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
.bs-form-group {
    margin-bottom: 1rem;
}
.bs-form-group label {
    display: block;
    color: #ccc;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
}
.bs-form-group input,
.bs-form-group select,
.bs-form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.5rem;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}
.bs-form-group input:focus,
.bs-form-group select:focus,
.bs-form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}
.bs-form-group select {
    cursor: pointer;
}
.bs-form-group select option {
    background: #1a1a1a;
    color: #fff;
}
.bs-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}
.bs-checkbox {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #bbb;
    font-size: 0.9rem;
    cursor: pointer;
}
.bs-checkbox input[type="checkbox"] {
    width: auto;
    accent-color: #d4af37;
    cursor: pointer;
}
.bs-form-success {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 600px;
    margin: 2rem auto 0;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 1rem;
}
.bs-success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.bs-form-success h3 {
    color: #d4af37;
    margin-bottom: 0.75rem;
}
.bs-form-success p {
    color: #999;
}

/* --- Privacy --- */
.bs-privacy {
    padding: 3rem 0;
    background: #0a0a0a;
}
.bs-privacy-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-left: 3px solid #d4af37;
    border-radius: 0.5rem;
    padding: 2rem;
    max-width: 700px;
    margin: 0 auto;
}
.bs-privacy-box h3 {
    color: #d4af37;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}
.bs-privacy-box p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .bs-hero { padding: 6rem 0 3rem; }
    .bs-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .bs-hero-btns {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 1rem;
    }
    .bs-hero-btns .btn {
        width: 100%;
        justify-content: center;
    }
}
