/* Server Stats Bar */
.server-stats-bar {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding: 24px 32px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 170, 0, 0.08) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    margin-bottom: 32px;
}

.server-stat {
    text-align: center;
}

.server-stat .stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.server-stat .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Badges */
.hosting-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-badge i {
    color: #ffd700;
}

/* Hosting Hero */
.hosting-hero {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 170, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 48px;
}

.hosting-hero-content {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 20px;
}

.hosting-hero-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffd700;
    flex-shrink: 0;
}

.hosting-hero-text h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #fff;
}

.hosting-hero-text p {
    margin: 0 0 12px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
}

.hosting-hero-text p:last-child {
    margin-bottom: 0;
}

.hosting-hero-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 12px;
    color: #5dd879;
    font-weight: 500;
}

.hosting-hero-highlight i {
    font-size: 1.3rem;
}

/* Section Headers */
.hosting-section {
    text-align: center;
    margin: 48px 0 24px;
}

#faq.hosting-section {
    margin-top: 65px;
    padding-top: 25px;
    padding-bottom: 25px;
}

.hosting-section .section-header-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
    color: #ffd700;
}

.hosting-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #fff;
}

.section-intro {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Hosting Grid */
.hosting-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

/* Hosting Card */
.hosting-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.hosting-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-4px);
}

.hosting-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.hosting-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #fff;
}

.hosting-card-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.hosting-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hosting-card-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hosting-card-features li i {
    color: #ffd700;
    font-size: 0.8rem;
}

/* Features List */
.hosting-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 48px;
}

.hosting-feature-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.hosting-feature-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.hosting-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 215, 0, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffd700;
    flex-shrink: 0;
}

.hosting-feature-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #fff;
}

.hosting-feature-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Overview List */
.hosting-overview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.hosting-overview-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
}

.hosting-overview-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #ffd700;
    flex-shrink: 0;
}

.hosting-overview-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 6px 0;
    color: #fff;
}

.hosting-overview-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* CTA Section */
.hosting-cta {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-bottom: 48px;
}

.hosting-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #fff;
}

.hosting-cta p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    margin: 0 0 24px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hosting-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #1a1a1a !important;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.hosting-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
    color: #1a1a1a !important;
}

/* Responsive */
@media (max-width: 991px) {
    .hosting-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hosting-overview {
        grid-template-columns: 1fr;
    }
    
    .server-stats-bar {
        gap: 24px;
        flex-wrap: wrap;
    }
    
    .server-stat .stat-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .hosting-hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hosting-grid {
        grid-template-columns: 1fr;
    }
    
    .hosting-feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hosting-overview-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hosting-cta {
        padding: 28px 20px;
    }
    
    .server-stats-bar {
        gap: 16px;
        padding: 20px;
    }
    
    .server-stat .stat-value {
        font-size: 1.3rem;
    }
    
    .server-stat .stat-label {
        font-size: 0.75rem;
    }
    
    .hosting-hero-badges {
        justify-content: center;
    }
    
    .hero-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* FAQ Styles */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 48px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.faq-item summary {
    padding: 16px 20px;
    cursor: pointer;
    color: #fff;
    font-weight: 500;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    color: #ffd700;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 20px 16px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}
