/* ============================================
   BUSINESS SOLUTIONS PAGE SPECIFIC STYLES
   WiFiHapa - Business & Enterprise Solutions
   ============================================ */
/* Main Content */
.main-content {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* ----- HERO SECTION ----- */
.business-hero {
    background: linear-gradient(145deg, #0b2b40 0%, #1a4a60 100%);
    padding: 2rem 1.5rem;
    border-radius: 32px;
    margin: 1.5rem 0 2rem;
    position: relative;
    transition: var(--transition, all 0.3s ease);
}

/* ----- BUSINESS PLAN CARDS ----- */
.plan-card-business {
    background: var(--card-bg, white);
    border-radius: 24px;
    padding: 1.2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition, all 0.25s ease);
    height: 100%;
    position: relative;
}

body.dark .plan-card-business {
    background: var(--card-bg, #1e2538);
    border-color: var(--border-light, rgba(255, 255, 255, 0.05));
}

.plan-card-business:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(13, 110, 253, 0.12);
    border-color: #0d6efd;
}

.business-badge {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    background: #d4a11e;
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 700;
}

.business-badge.enterprise {
    background: #dc3545;
}

.business-badge.popular {
    background: #28a745;
}

.business-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #e8f1ff, #fff3d6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

body.dark .business-icon {
    background: linear-gradient(135deg, #1a2a4a, #2a2a1c);
}

.business-icon i {
    font-size: 1.5rem;
    color: #0d6efd;
}

.business-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary, #0a2c3d);
    margin: 0.6rem 0;
}

.business-price small {
    font-size: 0.7rem;
    font-weight: 500;
    color: #6c757d;
}

.sla-badge {
    background: #28a745;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 600;
    display: inline-block;
}

.feature-list-business {
    list-style: none;
    padding: 0;
    margin: 0.8rem 0;
}

.feature-list-business li {
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
    color: var(--text-secondary, #5e6f7d);
}

body.dark .feature-list-business li {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.feature-list-business i {
    color: #28a745;
    width: 16px;
    font-size: 0.7rem;
}

/* ----- BUTTONS ----- */
.btn-business {
    width: 100%;
    background: #0d6efd;
    border: none;
    border-radius: 50px;
    padding: 0.5rem;
    font-weight: 600;
    font-size: 0.8rem;
    color: white;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: var(--transition, all 0.2s ease);
}

.btn-business:hover {
    background: #0b5ed7;
    color: white;
    transform: scale(0.98);
}

.btn-business.outline {
    background: white;
    border: 1.5px solid #0d6efd;
    color: #0d6efd;
}

body.dark .btn-business.outline {
    background: transparent;
    color: #0d6efd;
}

.btn-business.outline:hover {
    background: #0d6efd;
    color: white;
}

/* ----- SECTION TITLES ----- */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary, #0a2c3d);
}

/* ----- QUOTE FORM ----- */
.quote-form {
    background: var(--card-bg, white);
    border-radius: 24px;
    padding: 1.2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

body.dark .quote-form {
    background: var(--card-bg, #1e2538);
}

.form-control-custom {
    border-radius: 12px;
    padding: 0.7rem 1rem;
    border: 1px solid #e9ecef;
    width: 100%;
    background: var(--input-bg, white);
    color: var(--text-primary, #0a2c3d);
}

body.dark .form-control-custom {
    background: var(--input-bg, #2d3748);
    border-color: var(--border-light, rgba(255, 255, 255, 0.05));
}

.form-control-custom:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.1);
    outline: none;
}

/* ----- CLIENT CARDS ----- */
.client-card {
    background: var(--card-bg, white);
    border-radius: 20px;
    padding: 1rem;
    text-align: center;
    transition: var(--transition, all 0.2s ease);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

body.dark .client-card {
    background: var(--card-bg, #1e2538);
}

.client-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

/* ----- SUCCESS MODAL ----- */
.modal-success {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal-success-content {
    background: var(--card-bg, white);
    max-width: 400px;
    width: 90%;
    border-radius: 24px;
    padding: 1.5rem;
    text-align: center;
    animation: slideDown 0.3s ease;
}

body.dark .modal-success-content {
    background: var(--card-bg, #1e2538);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 0.8rem;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 768px) {
    .business-hero {
        padding: 1.2rem;
    }

    .business-hero h1 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .business-price {
        font-size: 1.2rem;
    }

    .quote-form {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .btn-business {
        padding: 0.4rem;
        font-size: 0.7rem;
    }

    .feature-list-business li {
        font-size: 0.7rem;
    }

    .client-card {
        padding: 0.8rem;
    }
}