/* HolyCloud V2 - Network Page Premium Styles */

.network-map-wrapper {
    position: relative;
    background: #fff;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.network-map-img {
    width: 100%;
    height: auto;
}

.network-content {
    padding-left: 30px;
}

.network-label {
    display: inline-block;
    color: var(--hc-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.network-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--hc-dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

.network-desc {
    font-size: 1.1rem;
    color: var(--hc-text-muted);
    line-height: 1.7;
}

.network-keypoint-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
}

.network-keypoint-card:hover {
    transform: translateY(-8px);
    border-color: var(--hc-primary);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

.network-keypoint-icon {
    width: 50px;
    height: 50px;
    background: #eff6ff;
    color: var(--hc-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.network-keypoint-card:hover .network-keypoint-icon {
    background: var(--hc-primary);
    color: #fff;
}

.network-keypoint-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--hc-dark);
    margin-bottom: 5px;
}

.network-keypoint-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--hc-text-muted);
}

.network-cisco-section {
    background: linear-gradient(135deg, #162E62 0%, #1e40af 100%);
    padding: 80px 0;
    color: #fff;
}

.network-cisco-icon span {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px;
}

.network-cisco-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff !important;
}

.network-cisco-desc {
    color: #cbd5e1;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Location Cards Reused */
.location-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    height: 100%;
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.location-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.location-campus-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--hc-primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
}

.location-card-title {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.location-card-body {
    padding: 25px;
}

.location-card-city {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2px;
}

.location-card-country {
    color: var(--hc-text-muted);
    font-size: 0.9rem;
}