/* 
 * Network Section - Clean & Simple Design
 * No animations, no gradients, just clean professional layout
 */

.network-section {
    padding: 80px 0 0 0;
    background: #ffffff;
    text-align: center;
}

.network-section .section-header {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.network-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 20px;
    line-height: 1.2;
}

.network-section .section-header p {
    font-size: 1.125rem;
    color: #6c7b8a;
    line-height: 1.6;
    margin: 0;
}

/* Statistics Row */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e1e7ed;
    min-width: 200px;
    flex: 1;
    max-width: 250px;
}

.stat-item:hover {
    border-color: #d4822a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #d4822a;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #556068;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Locations Row */
.locations-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.location-box {
    padding: 25px;
    background: #f4f6f8;
    border-radius: 8px;
    border: 1px solid #e1e7ed;
    text-align: left;
}

.location-box:hover {
    background: #ffffff;
    border-color: #d4822a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.location-box h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-box h4 i {
    color: #d4822a;
    font-size: 1rem;
}

.location-box p {
    font-size: 0.875rem;
    color: #6c7b8a;
    line-height: 1.5;
    margin: 0;
}

/* CTA Section - DISABLED FOR PRODUCTS PAGE */
.network-section .cta-section {
    background: #f8f9fa;
    padding: 50px 40px;
    border-radius: 16px;
    border: 1px solid #e1e7ed;
    max-width: 600px;
    margin: 0 auto 0 auto;
}

.cta-section h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1rem;
    color: #6c7b8a;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #d4822a;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 2px solid #d4822a;
}

.contact-btn:hover {
    background: #b86f21;
    border-color: #b86f21;
    text-decoration: none;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 130, 42, 0.3);
}

.contact-btn i {
    transition: transform 0.2s ease;
}

.contact-btn:hover i {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .network-section {
        padding: 60px 0;
    }
    
    .network-section .section-header {
        margin-bottom: 40px;
    }
    
    .network-section .section-header h2 {
        font-size: 2rem;
    }
    
    .network-section .section-header p {
        font-size: 1rem;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 60px;
        align-items: center;
    }
    
    .stat-item {
        max-width: 300px;
        width: 100%;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .locations-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .location-box {
        padding: 20px;
    }
    
    .cta-section {
        padding: 30px 25px;
    }
    
    .cta-section h3 {
        font-size: 1.5rem;
    }
    
    .contact-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   DARK MODE STYLES
   ============================================ */

[data-theme="dark"] .network-section {
  background: #0f1419;
  color: #f8fafc;
}

[data-theme="dark"] .network-section .section-header h2 {
  color: #f8fafc;
}

[data-theme="dark"] .network-section .section-header p {
  color: #cbd5e1;
}

[data-theme="dark"] .stat-item {
  background: #1e2936;
  border-color: #334155;
}

[data-theme="dark"] .stat-item:hover {
  border-color: #d4822a;
  background: #2a3441;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .stat-number {
  color: #d4822a;
}

[data-theme="dark"] .stat-text {
  color: #94a3b8;
}

[data-theme="dark"] .location-box {
  background: #1e2936;
  border-color: #334155;
}

[data-theme="dark"] .location-box:hover {
  background: #2a3441;
  border-color: #d4822a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .location-box h4 {
  color: #f8fafc;
}

[data-theme="dark"] .location-box h4 i {
  color: #d4822a;
}

[data-theme="dark"] .location-box p {
  color: #cbd5e1;
}

[data-theme="dark"] .cta-section {
  background: #1e2936;
  border-color: #334155;
}

[data-theme="dark"] .cta-section h3 {
  color: #f8fafc;
}

[data-theme="dark"] .cta-section p {
  color: #cbd5e1;
}

[data-theme="dark"] .contact-btn {
  background: #d4822a;
  border-color: #d4822a;
  color: #ffffff;
}

[data-theme="dark"] .contact-btn:hover {
  background: #b86f21;
  border-color: #b86f21;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(212, 130, 42, 0.4);
}

/* High Contrast Mode for Dark Theme */
@media (prefers-contrast: high) {
  [data-theme="dark"] .network-section .section-header h2 {
    color: #ffffff;
  }
  
  [data-theme="dark"] .stat-item,
  [data-theme="dark"] .location-box,
  [data-theme="dark"] .cta-section {
    border-width: 2px;
  }
  
  [data-theme="dark"] .stat-number {
    color: #fbbf24;
  }
}

@media (max-width: 480px) {
    .network-section {
        padding: 40px 0;
    }
    
    .stats-row {
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .locations-row {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .location-box {
        padding: 15px;
    }
    
    .location-box h4 {
        font-size: 1rem;
    }
    
    .cta-section {
        padding: 25px 20px;
    }
    
    .cta-section h3 {
        font-size: 1.25rem;
    }
    
    .cta-section p {
        font-size: 0.875rem;
    }
    
    .contact-btn {
        width: 100%;
        justify-content: center;
    }
}
