/* Hosting Page Specific Styles */

/* Hosting Hero */
.hosting-hero {
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hosting-hero .hero-title {
    font-size: 48px;
    margin-bottom: 20px;
}

.hosting-hero .hero-subtitle {
    font-size: 18px;
    max-width: 800px;
}

.hosting-hero .hero-subtitle strong {
    color: #FF6B35;
}

body.dark-mode .hosting-hero .hero-subtitle strong {
    color: #FF6B35;
}

/* Hosting Plans Section */
.hosting-plans-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(250, 250, 250, 0.5) 0%, rgba(255, 255, 255, 1) 100%);
}

body.dark-mode .hosting-plans-section {
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.5) 0%, rgba(10, 10, 10, 1) 100%);
}

.hosting-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

body.dark-mode .hosting-intro {
    color: #b0b0b0;
}

.hosting-plans-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.hosting-plan-card {
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 1) 100%);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 320px;
}

.hosting-plan-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.hosting-plan-card.featured {
    border-color: #FF6B35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 140, 90, 0.05) 100%);
}

.hosting-plan-card.featured:hover {
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.25);
}

body.dark-mode .hosting-plan-card {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(20, 20, 20, 1) 100%);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .hosting-plan-card.featured {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 90, 0.1) 100%);
}

.plan-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FF6B35, #ff8c5a);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.dark-mode .plan-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.plan-header h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #FF6B35, #ff8c5a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.dark-mode .plan-header h3 {
    background: linear-gradient(135deg, #FF6B35, #ff8c5a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}

.plan-price .currency {
    font-size: 20px;
    font-weight: 500;
    color: #FF6B35;
}

.plan-price .amount {
    font-size: 36px;
    font-weight: 700;
    color: #FF6B35;
    line-height: 1;
}

.plan-price .period {
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

body.dark-mode .plan-price .period {
    color: #b0b0b0;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.plan-features li {
    padding: 10px 0;
    font-size: 15px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body.dark-mode .plan-features li {
    color: #b0b0b0;
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: #FF6B35;
    font-size: 14px;
    width: 18px;
}

.plan-btn {
    width: 100%;
    padding: 14px 30px;
    background: linear-gradient(135deg, #FF6B35, #ff8c5a);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.plan-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.plan-btn:hover::before {
    width: 300px;
    height: 300px;
}

.plan-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.plan-btn:active {
    transform: translateY(-1px);
}

/* Features Section */
.hosting-features {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(250, 250, 250, 0.5) 100%);
}

body.dark-mode .hosting-features {
    background: linear-gradient(180deg, rgba(10, 10, 10, 1) 0%, rgba(20, 20, 20, 0.5) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 140, 90, 0.05) 100%);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

body.dark-mode .feature-item {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 90, 0.1) 100%);
}

.feature-item i {
    font-size: 36px;
    color: #FF6B35;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

body.dark-mode .feature-item h3 {
    color: #e0e0e0;
}

.feature-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

body.dark-mode .feature-item p {
    color: #b0b0b0;
}

.feature-item p strong {
    color: #FF6B35;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hosting-plans-grid {
        max-width: 100%;
    }
    
    .hosting-plan-card {
        max-width: calc(50% - 12.5px);
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .hosting-hero {
        padding: 120px 0 50px;
    }

    .hosting-hero .hero-title {
        font-size: 36px;
    }

    .hosting-plans-section,
    .hosting-features {
        padding: 60px 0;
    }

    .hosting-plans-grid {
        gap: 20px;
    }
    
    .hosting-plan-card {
        max-width: 100%;
        min-width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hosting-intro {
        font-size: 16px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .hosting-hero .hero-title {
        font-size: 28px;
    }

    .hosting-plan-card {
        padding: 25px;
    }

    .plan-header h3 {
        font-size: 24px;
    }

    .plan-price .amount {
        font-size: 32px;
    }
}

