/* ============================================
   NETWORK SETUP PAGE SPECIFIC STYLES
   WiFiHapa - Network Configuration Services
   ============================================ */
   /* 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 */
.network-hero {
    background: linear-gradient(145deg, #edf4ff 0%, #ffffff 100%);
    padding: 3rem 2rem;
    border-radius: 48px;
    margin: 1.5rem 0 2.5rem;
    border: 1px solid rgba(13, 110, 253, 0.05);
    transition: var(--transition, all 0.3s ease);
}

body.dark .network-hero {
    background: var(--hero-bg, linear-gradient(145deg, #111827 0%, #1e2538 100%));
}

.hero-badge {
    display: inline-block;
    background: #0d6efd;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tech-badge {
    background: rgba(13, 110, 253, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #0d6efd;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    background: var(--card-bg, white);
    padding: 1.5rem;
    border-radius: 32px;
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0,0,0,0.04));
}

body.dark .hero-stats {
    background: var(--card-bg, #1e2538);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #0d6efd;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary, #5e6f7d);
}

/* Service Cards */
.service-card {
    background: var(--card-bg, white);
    border-radius: 28px;
    padding: 1.8rem;
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0,0,0,0.04));
    border: 1px solid var(--border-light, rgba(0,0,0,0.05));
    transition: var(--transition, all 0.3s ease);
    height: 100%;
    position: relative;
}

body.dark .service-card {
    background: var(--card-bg, #1e2538);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg, 0 12px 30px rgba(13,110,253,0.1));
    border-color: rgba(13, 110, 253, 0.3);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #d4a11e;
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.service-badge.premium {
    background: #dc3545;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e8f1ff, #fff3d6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

body.dark .service-icon {
    background: #2a3448;
}

.service-icon i {
    font-size: 1.8rem;
    color: #0d6efd;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary, #0a2c3d);
    margin: 0.8rem 0;
}

.service-price small {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-secondary, #6c757d);
}

.service-meta {
    display: flex;
    gap: 1rem;
    margin: 0.8rem 0;
    font-size: 0.7rem;
    color: var(--text-secondary, #5e6f7d);
}

.service-meta i {
    margin-right: 0.3rem;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0.8rem 0;
}

.feature-list li {
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-secondary, #5e6f7d);
    border-bottom: 1px dashed var(--border-light, rgba(0,0,0,0.05));
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: #28a745;
    font-size: 0.7rem;
}

/* Buttons */
.btn-service {
    width: 100%;
    background: #0d6efd;
    border: none;
    border-radius: 50px;
    padding: 0.6rem;
    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);
    cursor: pointer;
}

.btn-service:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}

.btn-service.outline {
    background: transparent;
    border: 1.5px solid #0d6efd;
    color: #0d6efd;
}

.btn-service.outline:hover {
    background: #0d6efd;
    color: white;
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary, #0a2c3d);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary, #5e6f7d);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }
    .section-subtitle {
        font-size: 0.9rem;
    }
}

/* Tech Cards */
.tech-card {
    background: var(--card-bg, white);
    border-radius: 20px;
    padding: 1rem;
    text-align: center;
    transition: var(--transition, all 0.2s ease);
    border: 1px solid var(--border-light, rgba(0,0,0,0.05));
    position: relative;
    height: 100%;
}

body.dark .tech-card {
    background: var(--card-bg, #1e2538);
}

.tech-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md, 0 8px 20px rgba(0,0,0,0.06));
}

.certified-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 0.7rem;
    color: #28a745;
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-bg, white);
    border-radius: 24px;
    border: 1px solid var(--border-light, rgba(0,0,0,0.05));
    height: 100%;
}

body.dark .process-step {
    background: var(--card-bg, #1e2538);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #0d6efd;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
}

.step-icon {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

.process-step h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.8rem;
    color: var(--text-secondary, #5e6f7d);
}

/* Audit & Training Cards */
.audit-card, .training-card {
    background: var(--card-bg, white);
    border-radius: 28px;
    padding: 1.8rem;
    border: 1px solid var(--border-light, rgba(0,0,0,0.05));
    height: 100%;
    transition: var(--transition, all 0.2s ease);
}

body.dark .audit-card,
body.dark .training-card {
    background: var(--card-bg, #1e2538);
}

.audit-card:hover, .training-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md, 0 8px 20px rgba(0,0,0,0.06));
}

.audit-icon, .training-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.audit-icon {
    background: #e4edff;
    color: #0d6efd;
    font-size: 1.8rem;
}

.training-icon {
    background: #fff3d6;
    color: #d4a11e;
    font-size: 1.8rem;
}

.audit-price, .training-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary, #0a2c3d);
    margin-top: 1rem;
}

/* Booking Form */
.booking-form {
    background: var(--card-bg, white);
    border-radius: 28px;
    padding: 2rem;
    border: 1px solid var(--border-light, rgba(0,0,0,0.05));
}

body.dark .booking-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;
}

.price-summary {
    background: var(--badge-light-bg, #f0f3fa);
    padding: 1rem;
    border-radius: 16px;
}

body.dark .price-summary {
    background: var(--badge-light-bg, #2a3448);
}

.btn-submit {
    width: 100%;
    background: #d4a11e;
    border: none;
    border-radius: 50px;
    padding: 0.9rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    transition: var(--transition, all 0.2s ease);
    cursor: pointer;
}

.btn-submit:hover {
    background: #b3881a;
    transform: scale(0.98);
}

/* FAQ Section */
.faq-item {
    background: var(--card-bg, white);
    border-radius: 20px;
    padding: 1.2rem;
    border: 1px solid var(--border-light, rgba(0,0,0,0.05));
    height: 100%;
}

body.dark .faq-item {
    background: var(--card-bg, #1e2538);
}

.faq-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.faq-item p {
    font-size: 0.8rem;
    color: var(--text-secondary, #5e6f7d);
    margin: 0;
}

/* 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: 28px;
    padding: 2rem;
    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: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .network-hero {
        padding: 1.5rem;
        text-align: center;
    }
    
    .hero-stats {
        margin-top: 1.5rem;
    }
    
    .service-card {
        padding: 1.2rem;
    }
    
    .booking-form {
        padding: 1.2rem;
    }
    
    .process-step {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .network-hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}