/* Hosting Page Specific Styles */

/* Hosting Packages Section */
.hosting-packages-section {
    background: #f9fafb;
    padding: 0px 40px 100px 40px;
}

.hosting-packages-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hosting-packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
}

.hosting-package-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: center;
}

.hosting-package-card:hover {
    border-color: #00D9FF;
    box-shadow: 0 12px 32px rgba(0, 217, 255, 0.15);
    transform: translateY(-6px);
}

.hosting-package-card.featured {
    border: 2px solid #00D9FF;
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.1);
    transform: scale(1.05);
}

.hosting-package-card.featured:hover {
    transform: scale(1.05) translateY(-6px);
}

.hosting-package-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #00D9FF;
    color: #0A0E27;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hosting-package-header {
    margin-bottom: 24px;
}

.hosting-package-name {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.hosting-package-tagline {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.hosting-package-price {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f3f4f6;
}

.hosting-package-price .price-amount {
    font-size: 3rem;
    font-weight: 500;
    color: #0A0E27;
    line-height: 1;
}

.hosting-package-price .price-period {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.hosting-package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    text-align: left;
    flex-grow: 1;
}

.hosting-package-features li {
    font-size: 0.95rem;
    color: #4b5563;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hosting-package-features li:last-child {
    border-bottom: none;
}

.hosting-package-btn {
    display: block;
    background: #0A0E27;
    color: white !important;
    padding: 16px 28px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.hosting-package-btn:hover {
    background: #00D9FF;
    color: #0A0E27 !important;
    transform: translateY(-2px);
}

.hosting-package-card.featured .hosting-package-btn {
    background: #00D9FF;
    color: #0A0E27 !important;
}

.hosting-package-card.featured .hosting-package-btn:hover {
    background: #0A0E27;
    color: white !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .hosting-package-card.featured {
        transform: scale(1);
    }
    
    .hosting-package-card.featured:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 900px) {
    .hosting-packages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .hosting-package-card.featured {
        order: -1;
    }
}

@media (max-width: 480px) {
    .hosting-packages-section {
        padding: 50px 20px 70px 20px;
    }
    
    .hosting-package-card {
        padding: 32px 24px;
    }
    
    .hosting-package-price .price-amount {
        font-size: 2.5rem;
    }
    
    .hosting-package-btn {
        padding: 14px 24px;
    }
}

