/* ============================================
   WIRELESS SOLUTIONS PAGE SPECIFIC STYLES
   WiFiHapa - Wireless Network Solutions Styles
   ============================================ */
   /* 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 ----- */
.solutions-hero {
    background: linear-gradient(145deg, #edf4ff 0%, #ffffff 100%);
    padding: 2rem 1.5rem;
    border-radius: 32px;
    margin: 1.5rem 0 2rem;
    border: 1px solid rgba(13, 110, 253, 0.05);
    transition: var(--transition, all 0.3s ease);
}

body.dark .solutions-hero {
    background: var(--hero-bg, linear-gradient(145deg, #111827 0%, #1e2538 100%));
}

/* ----- SOLUTION CARDS ----- */
.solution-card {
    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 .solution-card {
    background: var(--card-bg, #1e2538);
    border-color: var(--border-light, rgba(255, 255, 255, 0.05));
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(13, 110, 253, 0.12);
    border-color: rgba(13, 110, 253, 0.2);
}

.solution-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;
}

.solution-badge.premium {
    background: #dc3545;
}

.solution-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 .solution-icon {
    background: linear-gradient(135deg, #1a2a4a, #2a2a1c);
}

.solution-icon i {
    font-size: 1.5rem;
    color: #0d6efd;
}

.solution-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary, #0a2c3d);
    margin: 0.6rem 0;
}

.solution-price small {
    font-size: 0.7rem;
    font-weight: 500;
    color: #6c757d;
}

.feature-list-solution {
    list-style: none;
    padding: 0;
    margin: 0.8rem 0;
}

.feature-list-solution 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-solution li {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.feature-list-solution i {
    color: #28a745;
    width: 16px;
    font-size: 0.7rem;
}

/* ----- BUTTONS ----- */
.btn-solution {
    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-solution:hover {
    background: #0b5ed7;
    color: white;
    transform: scale(0.98);
}

.btn-solution.outline {
    background: white;
    border: 1.5px solid #0d6efd;
    color: #0d6efd;
}

body.dark .btn-solution.outline {
    background: transparent;
    color: #0d6efd;
}

.btn-solution.outline:hover {
    background: #0d6efd;
    color: white;
}

/* ----- TECH BADGE ----- */
.tech-badge {
    background: #f0f7fa;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--text-primary, #0a2c3d);
}

body.dark .tech-badge {
    background: #2a3448;
}

/* ----- SECTION TITLES ----- */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary, #0a2c3d);
}

/* ----- CONSULTATION FORM ----- */
.consultation-form {
    background: var(--card-bg, white);
    border-radius: 24px;
    padding: 1.2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

body.dark .consultation-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;
}

/* ----- 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) {
    .solutions-hero {
        padding: 1.2rem;
    }
    .solutions-hero h1 {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 1.3rem;
    }
    .consultation-form {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .solution-price {
        font-size: 1rem;
    }
    .btn-solution {
        padding: 0.4rem;
        font-size: 0.7rem;
    }
    .feature-list-solution li {
        font-size: 0.7rem;
    }
}