/* Hosting Page Styles */

/* Header adjustments for hosting page */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Active nav link styling */
.nav-link.active {
    color: #673de6 !important;
    font-weight: 600;
}

/* Hero Section */
.hero-hosting {
    background: linear-gradient(135deg, #673de6 0%, #7c3aed 100%);
    color: white;
    padding: 160px 0 80px;
    text-align: center;
    margin-top: 0;
}

.hero-hosting h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-hosting p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-badges .badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.hero-badges .badge span {
    color: #10b981;
    margin-right: 0.5rem;
}

/* Pricing Comparison */
.pricing-comparison {
    padding: 80px 0;
    background: #f8fafc;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 3px solid #673de6;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.featured-badge {
    background: linear-gradient(135deg, #673de6, #7c3aed);
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.card-header p {
    color: #64748b;
    margin-bottom: 2rem;
}

.pricing-card .price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.pricing-card .currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: #673de6;
}

.pricing-card .amount {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
}

.pricing-card .period {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.card-features {
    padding: 0 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list .check {
    color: #10b981;
    font-weight: 600;
    margin-right: 0.75rem;
    min-width: 20px;
}

.feature-list .cross {
    color: #ef4444;
    font-weight: 600;
    margin-right: 0.75rem;
    min-width: 20px;
}

.card-footer {
    padding: 1.5rem 2rem 2rem;
}

/* Features Table */
.features-table {
    padding: 80px 0;
    background: white;
}

.comparison-table {
    margin-top: 3rem;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.comparison-table th {
    background: #673de6;
    color: white;
    padding: 1.5rem 1rem;
    font-weight: 600;
    text-align: left;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-table th:first-child {
    width: 30%;
}

.comparison-table td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.comparison-table tbody tr:hover {
    background: #f8fafc;
}

.comparison-table .check {
    color: #10b981;
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table .cross {
    color: #ef4444;
    font-weight: 600;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: #1e293b;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Email Services Section */
.email-services-section {
    padding: 80px 0;
    background: #f1f5f9;
}

.email-info {
    margin-top: 3rem;
    text-align: center;
}

.email-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.email-info p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* SSL Certificates Section */
.ssl-section {
    padding: 80px 0;
    background: white;
}

.ssl-info {
    margin-top: 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-item {
    text-align: center;
    padding: 1.5rem;
}

.info-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.info-item p {
    color: #64748b;
    line-height: 1.6;
}

/* SiteLock Section */
.sitelock-section {
    padding: 80px 0;
    background: #f8fafc;
}

.emergency-section {
    margin-top: 3rem;
}

.emergency-card {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px -5px rgba(220, 38, 38, 0.3);
}

.emergency-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.emergency-card p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.emergency-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.emergency-features .feature {
    font-size: 0.95rem;
    font-weight: 500;
}

.emergency-price {
    margin: 1.5rem 0;
}

.emergency-price .price {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.emergency-price .period {
    font-size: 0.9rem;
    opacity: 0.8;
}

.btn-emergency {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-emergency:hover {
    background: white;
    color: #dc2626;
}

.sitelock-info {
    margin-top: 3rem;
}

/* Services Navigation */
.services-nav {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 0;
    position: sticky;
    top: 80px;
    z-index: 100;
}

.nav-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 0 1rem;
}

.nav-tab {
    padding: 1rem 2rem;
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-tab:hover {
    color: #673de6;
    text-decoration: none;
}

.nav-tab.active {
    color: #673de6;
    border-bottom-color: #673de6;
    font-weight: 600;
}

/* Active nav link */
.nav-links a.active {
    color: #673de6;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-hosting h1 {
        font-size: 2.5rem;
    }
    
    .hero-hosting p {
        font-size: 1.1rem;
    }
    
    .hero-badges {
        gap: 1rem;
    }
    
    .pricing-table {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .comparison-table {
        font-size: 0.875rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.75rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    /* Navigation tabs responsive */
    .nav-tabs {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-tab {
        padding: 0.75rem 1rem;
        text-align: center;
        border-bottom: 1px solid #e2e8f0;
        border-right: none;
    }
    
    .nav-tab.active {
        border-bottom-color: #673de6;
        background: #f8fafc;
    }
    
    /* Emergency section responsive */
    .emergency-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .emergency-card {
        padding: 1.5rem;
    }
    
    .emergency-price .price {
        font-size: 1.5rem;
    }
    
    /* Info grid responsive */
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-hosting {
        padding: 100px 0 60px;
    }
    
    .pricing-comparison,
    .features-table,
    .faq-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .card-header,
    .card-features,
    .card-footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}