/* Business Hosting Page Specific Styles */

.business-hero {
    background: linear-gradient(135deg, rgb(103, 61, 230) 0%, rgb(66, 133, 244) 100%);
    padding: 6rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.business-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(46.33% 46.11% at 50% 50%, rgba(182, 178, 255, 0.8) 0%, rgba(235, 234, 255, 0.22) 49.5%, rgba(255, 255, 255, 0));
    background-size: 100% 100%;
}

.business-hero .hero-content {
    position: relative;
    z-index: 2;
}

.business-hero .hero-features {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.business-hero .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.business-hero .feature-item i {
    color: rgb(255, 255, 255);
    font-size: 1.2rem;
}

/* Business Features Section */
.business-features-section {
    padding: 5rem 0;
    background: rgb(250, 251, 255);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(29, 30, 32, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(250, 251, 255, 0.8), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgb(103, 61, 230);
    box-shadow: 0 20px 40px rgba(103, 61, 230, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgb(103, 61, 230), rgb(66, 133, 244));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(103, 61, 230, 0.3);
}

.feature-card h4 {
    color: rgb(29, 30, 32);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.feature-card p {
    color: rgb(109, 112, 129);
    line-height: 1.6;
    font-size: 1rem;
}

/* Enhanced Plan Cards for Business Page */
.hosting-plans-section .plan-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(29, 30, 32, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.hosting-plans-section .plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: rgb(216, 218, 224);
}

.hosting-plans-section .plan-card.featured {
    border-color: rgb(103, 61, 230);
    transform: scale(1.05);
    background: rgb(255, 255, 255);
}

.hosting-plans-section .plan-card.featured::before {
    background: rgb(103, 61, 230);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(103, 61, 230);
    color: rgb(255, 255, 255);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(103, 61, 230, 0.3);
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgb(29, 30, 32);
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.plan-price .currency {
    font-size: 1.5rem;
    color: rgb(103, 61, 230);
    font-weight: 700;
}

.plan-price .price {
    font-size: 3rem;
    font-weight: 800;
    color: rgb(103, 61, 230);
}

.plan-price .period {
    font-size: 1rem;
    color: rgb(109, 112, 129);
    font-weight: 400;
}

.plan-features {
    margin: 2rem 0;
}

.plan-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    color: rgb(109, 112, 129);
    border-bottom: 1px solid rgb(216, 218, 224);
}

.plan-features .feature-item:last-child {
    border-bottom: none;
}

.plan-features .feature-item i {
    color: rgb(0, 131, 97);
    font-size: 1rem;
    width: 20px;
}

.expand-btn {
    background: none;
    border: 2px solid rgb(216, 218, 224);
    color: rgb(103, 61, 230);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    margin: 1rem 0;
}

.expand-btn:hover {
    background: rgb(103, 61, 230);
    color: white;
    border-color: rgb(103, 61, 230);
}

.additional-features {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid rgb(216, 218, 224);
}

.plan-btn {
    width: 100%;
    justify-content: center;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: rgb(250, 251, 255);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid rgb(103, 61, 230);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(29, 30, 32, 0.05);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(29, 30, 32, 0.1);
}

.faq-item h4 {
    color: rgb(29, 30, 32);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.faq-item p {
    color: rgb(109, 112, 129);
    line-height: 1.6;
    font-size: 1rem;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.billing-label {
    font-weight: 600;
    color: rgb(29, 30, 32);
    font-size: 1.1rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 35px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(216, 218, 224);
    transition: 0.3s;
    border-radius: 20px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 27px;
    width: 27px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(29, 30, 32, 0.2);
}

input:checked + .slider {
    background-color: rgb(103, 61, 230);
}

input:checked + .slider:before {
    transform: translateX(35px);
}

.save-badge {
    background: rgb(0, 131, 97);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: rgb(29, 30, 32);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgb(109, 112, 129);
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .business-hero {
        padding: 4rem 0;
    }
    
    .business-hero .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .business-hero .hero-features {
        justify-content: center;
        gap: 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hosting-plans {
        grid-template-columns: 1fr;
    }
    
    .hosting-plans-section .plan-card.featured {
        transform: none;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .billing-toggle {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .business-hero .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .plan-price .price {
        font-size: 2.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .faq-item {
        padding: 2rem;
    }
}

