/* Service Pages Common Styles */

/* Banner Buttons Hover Effects */
.inline-btns a.btns.one:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.5) !important;
}

.inline-btns a.btns.two:hover {
    background: #3498db !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4) !important;
}

@media (max-width: 768px) {
    .inline-btns {
        flex-direction: column !important;
    }
    
    .inline-btns a.btns {
        width: 100%;
        justify-content: center !important;
    }
}

/* Colocation Package Card */
.colocation-package-card {
    background: white;
    border-radius: 24px;
    padding: 35px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
}

.colocation-package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(52, 152, 219, 0.15);
    border-color: rgba(52, 152, 219, 0.3);
}

.colocation-package-card.popular {
    border-color: #3498db;
    box-shadow: 0 15px 50px rgba(52, 152, 219, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.package-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f1f5f9;
}

.package-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
    flex-shrink: 0;
}

.package-icon i {
    font-size: 28px;
    color: white;
}

.package-title-group h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.package-subtitle {
    font-size: 13px;
    color: #64748b;
}

.package-price {
    text-align: center;
    margin-bottom: 30px;
}

.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: #3498db;
    line-height: 1;
    display: inline-block;
    transition: all 0.3s ease;
}

.price-period {
    font-size: 16px;
    color: #64748b;
    margin-left: 5px;
}

.package-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-row:hover {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05), rgba(41, 128, 185, 0.05));
    transform: translateX(5px);
}

.feature-row.highlight {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(41, 128, 185, 0.1));
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.feature-row>i {
    font-size: 20px;
    color: #28a745;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-row.highlight>i {
    color: #ffc107;
}

.feature-text {
    flex: 1;
}

.feature-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.feature-text span {
    font-size: 12px;
    color: #64748b;
}

.package-btn {
    display: block;
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.package-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    color: white;
}

/* Feature Boxes */
.colocation-feature-box {
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
    height: 100%;
}

.colocation-feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(52, 152, 219, 0.12);
    border-color: rgba(52, 152, 219, 0.2);
}

.feature-box-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.25);
}

.feature-box-icon i {
    font-size: 32px;
    color: white;
}

.colocation-feature-box h4 {
    font-size: 19px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.colocation-feature-box p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Banner List */
.banner-list.icon {
    list-style: none;
    padding: 0;
    margin: 0;
}

.banner-list.icon li {
    padding: 8px 0;
    font-size: 15px;
    color: #475569;
    display: flex;
    align-items: center;
}

.banner-list.icon li i {
    color: #3498db;
    margin-right: 10px;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 992px) {
    .colocation-package-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .package-header {
        flex-direction: column;
        text-align: center;
    }
    
    .package-icon {
        width: 50px;
        height: 50px;
    }
    
    .package-icon i {
        font-size: 24px;
    }
    
    .package-title-group h3 {
        font-size: 20px;
    }
    
    .price-amount {
        font-size: 32px;
    }
}
