/* Hosting Page - Mobile First */

/* Hosting Hero */
.hosting-hero {
    margin-top: 50px;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
}

.hosting-hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.hosting-hero-title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    word-wrap: break-word;
}

.hosting-hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hosting-features-quick {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.quick-feature {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.quick-feature:active {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(0.95);
}

/* Hosting Packages */
.hosting-packages {
    padding: 2rem 1rem;
    background: white;
}

/* What's Included */
.whats-included {
    padding: 2rem 1rem;
    background: var(--light);
}

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

.included-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.included-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.included-item:active {
    transform: scale(0.98);
}

.included-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.included-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.included-item p {
    color: var(--gray);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Hosting Contact */
.hosting-contact {
    padding: 2rem 1rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    color: white;
}

/* Tablet (768px+) */
@media (min-width: 768px) {
    .hosting-hero {
        padding: 3rem 2rem;
    }
    
    .hosting-hero-title {
        font-size: 3rem;
    }
    
    .hosting-hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .hosting-features-quick {
        gap: 1rem;
    }
    
    .quick-feature {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
    
    .hosting-packages {
        padding: 3rem 2rem;
    }
    
    .whats-included {
        padding: 3rem 2rem;
    }
    
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .included-item {
        padding: 2rem;
    }
    
    .included-icon {
        font-size: 3rem;
        margin-bottom: 1.25rem;
    }
    
    .included-item h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .included-item p {
        font-size: 0.95rem;
    }
    
    .hosting-contact {
        padding: 3rem 2rem;
    }
}

/* Desktop (968px+) */
@media (min-width: 968px) {
    .hosting-hero {
        padding: var(--spacing-xl) 2rem;
    }
    
    .hosting-hero-title {
        font-size: 4rem;
        margin-bottom: 1.5rem;
    }
    
    .hosting-hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 3rem;
    }
    
    .hosting-features-quick {
        gap: 1.5rem;
    }
    
    .quick-feature {
        font-size: 0.95rem;
        padding: 1rem 2rem;
    }
    
    .quick-feature:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-3px);
    }
    
    .hosting-packages {
        padding: var(--spacing-xl) 2rem;
    }
    
    .whats-included {
        padding: var(--spacing-xl) 2rem;
    }
    
    .included-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .included-item {
        padding: 2.5rem;
    }
    
    .included-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        border-color: var(--primary);
    }
    
    .included-icon {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }
    
    .included-item h3 {
        font-size: 1.3rem;
    }
    
    .included-item p {
        font-size: 1rem;
    }
    
    .hosting-contact {
        padding: var(--spacing-xl) 2rem;
    }
}

/* Package Card Enhancements */
.hosting-packages .package-card {
    position: relative;
    overflow: hidden;
}

.feature-highlight {
    color: var(--primary) !important;
    font-weight: 600 !important;
    padding-top: 1rem !important;
    border-top: 2px dashed rgba(0, 0, 0, 0.1) !important;
}

@media (hover: hover) {
    .hosting-packages .package-card::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 210, 63, 0.1) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    
    .hosting-packages .package-card:hover::after {
        opacity: 1;
        animation: rotate 20s linear infinite;
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
