/* Fast Web Hosting Package Cards Styling */

.fast-web-hosting-section {
    padding: 2rem 0;
}

.fast-hosting-title {
    color: #17a2b8;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.fast-hosting-subtitle {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hosting-package-card-new {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.hosting-package-card-new:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.hosting-package-card-new.selected {
    border: 2px solid #17a2b8;
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.2);
    background: #f8f9fa;
}

/* Category Tabs Styling */
.hosting-category-tabs {
    margin-bottom: 2rem;
}

.hosting-category-tabs .nav-pills {
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5rem;
}

.hosting-category-tabs .nav-pills .nav-link {
    color: #666;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    margin-right: 0.5rem;
    border-radius: 8px 8px 0 0;
    border: none;
    background: transparent;
    transition: all 0.3s ease;
}

.hosting-category-tabs .nav-pills .nav-link:hover {
    color: #17a2b8;
    background: #f8f9fa;
}

.hosting-category-tabs .nav-pills .nav-link.active {
    color: #17a2b8;
    background: #fff;
    border-bottom: 3px solid #17a2b8;
    position: relative;
}

.hosting-category-tabs .nav-pills .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: #17a2b8;
}

/* Tab Content */
#hostingCategoryTabContent {
    min-height: 400px;
}

#hostingCategoryTabContent .tab-pane {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.package-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-label .label-text {
    color: #666;
}

.package-label i {
    font-size: 1rem;
}

.package-name {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.package-pricing {
    margin-bottom: 1.5rem;
}

.savings-badge {
    display: inline-block;
    background: #d1ecf1;
    color: #0c5460;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 1.1rem;
    font-weight: 500;
}

.current-price {
    color: #000;
    font-size: 1.5rem;
    font-weight: 700;
}

.package-features {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: #333;
}

.feature-item i.fa-check {
    color: #28a745;
    font-size: 0.875rem;
}

.feature-item i.fa-info-circle {
    color: #6c757d;
    cursor: help;
}

.package-action {
    margin-top: auto;
}

.btn-get-started {
    width: 100%;
    background: #6c757d;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-get-started:hover {
    background: #5a6268;
    color: #fff;
}

.btn-added {
    width: 100%;
    background: #e9ecef;
    color: #6c757d;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fast-hosting-title {
        font-size: 2rem;
    }
    
    .fast-hosting-subtitle {
        font-size: 1rem;
    }
    
    .package-name {
        font-size: 1.75rem;
    }
    
    .hosting-package-card-new {
        margin-bottom: 1.5rem;
    }
}

