/**
 * Web Hosting Service Page Styles
 * Complete CSS for hosting-service-page template
 */

/* ============================================
   Variables
============================================ */
:root {
    --hs-primary: #0066FF;
    --hs-secondary: #00D4AA;
    --hs-dark: #1a1a2e;
    --hs-text: #555;
    --hs-light-bg: #f8fafc;
    --hs-border: #e8ecf1;
    --hs-white: #ffffff;
    --hs-success: #10B981;
    --hs-radius: 16px;
    --hs-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* ============================================
   Base Page Styles
============================================ */
.hosting-service-page {
    background: var(--hs-white);
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

.hosting-service-page .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Hero Section
============================================ */
.hosting-service-page .hosting-hero {
    background: linear-gradient(135deg, var(--hero-from, #0066FF) 0%, var(--hero-to, #00D4AA) 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.hosting-service-page .hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
    pointer-events: none;
}

.hosting-service-page .hosting-hero .container {
    position: relative;
    z-index: 1;
}

.hosting-service-page .hosting-hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: center;
}

.hosting-service-page .hero-content {
    color: #ffffff;
}

.hosting-service-page .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #ffffff;
}

.hosting-service-page .hero-badge svg {
    width: 20px;
    height: 20px;
}

.hosting-service-page .hosting-hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 20px 0;
    color: #ffffff;
}

.hosting-service-page .hero-description {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
    margin: 0 0 28px 0;
    max-width: 560px;
    color: #ffffff;
}

.hosting-service-page .hero-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hosting-service-page .hero-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
}

.hosting-service-page .hero-features-list svg {
    color: #FFD700;
    flex-shrink: 0;
}

/* Hero Promo Card */
.hosting-service-page .hero-promo-card {
    background: #ffffff;
    color: var(--hs-dark);
    padding: 40px 32px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.hosting-service-page .promo-label {
    display: inline-block;
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hosting-service-page .promo-discount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.hosting-service-page .promo-discount .prefix {
    font-size: 32px;
    font-weight: 700;
    color: var(--hs-dark);
}

.hosting-service-page .promo-discount .value {
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    color: var(--hs-dark);
}

.hosting-service-page .promo-suffix {
    font-size: 20px;
    font-weight: 700;
    color: var(--hs-dark);
    margin-bottom: 16px;
}

.hosting-service-page .promo-note {
    font-size: 14px;
    color: #666;
    margin: 0 0 24px 0;
}

/* ============================================
   Buttons
============================================ */
.hosting-service-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-family: inherit;
}

.hosting-service-page .btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.hosting-service-page .btn-block {
    display: flex;
    width: 100%;
}

.hosting-service-page .btn-white {
    background: #ffffff;
    color: var(--hs-dark);
    border-color: #ffffff;
}

.hosting-service-page .btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.hosting-service-page .btn-dark {
    background: var(--hs-dark);
    color: #ffffff;
    border-color: var(--hs-dark);
}

.hosting-service-page .btn-dark:hover {
    background: #0a0a1a;
    transform: translateY(-2px);
}

.hosting-service-page .btn-primary {
    background: linear-gradient(135deg, var(--hs-primary) 0%, #0052CC 100%);
    color: #ffffff;
    border-color: var(--hs-primary);
}

.hosting-service-page .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.35);
}

.hosting-service-page .btn-outline-primary {
    background: transparent;
    border-color: var(--hs-primary);
    color: var(--hs-primary);
}

.hosting-service-page .btn-outline-primary:hover {
    background: var(--hs-primary);
    color: #ffffff;
}

.hosting-service-page .btn-outline-dark {
    background: transparent;
    border-color: var(--hs-dark);
    color: var(--hs-dark);
}

.hosting-service-page .btn-outline-dark:hover {
    background: var(--hs-dark);
    color: #ffffff;
}

.hosting-service-page .btn-outline-white {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.hosting-service-page .btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
}

/* ============================================
   Trust Bar
============================================ */
.hosting-service-page .trust-bar {
    padding: 24px 0;
    background: var(--hs-white);
    border-bottom: 1px solid var(--hs-border);
}

.hosting-service-page .trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hosting-service-page .trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hosting-service-page .trust-icon {
    display: flex;
    align-items: center;
}

.hosting-service-page .trust-text {
    display: flex;
    flex-direction: column;
}

.hosting-service-page .trust-label {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.hosting-service-page .trust-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--hs-dark);
}

.hosting-service-page .trust-number {
    font-size: 26px;
    font-weight: 800;
    color: var(--hs-dark);
    line-height: 1;
}

.hosting-service-page .trust-desc {
    font-size: 13px;
    color: #666;
}

/* ============================================
   Section Header
============================================ */
.hosting-service-page .section-header {
    margin-bottom: 48px;
}

.hosting-service-page .section-header.text-center {
    text-align: center;
}

.hosting-service-page .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--hs-dark);
    margin: 0 0 12px 0;
}

.hosting-service-page .section-header p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* ============================================
   Packages Section
============================================ */
.hosting-service-page .packages-section {
    padding: 80px 0;
    background: var(--hs-white);
}

.hosting-service-page .packages-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.hosting-service-page .package-card {
    background: var(--hs-white);
    border: 2px solid var(--hs-border);
    border-radius: 20px;
    padding: 32px 24px;
    position: relative;
    transition: all 0.3s ease;
}

.hosting-service-page .package-card:hover {
    border-color: var(--hs-primary);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.12);
    transform: translateY(-6px);
}

.hosting-service-page .package-card.featured {
    border-color: var(--hs-primary);
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
    box-shadow: 0 15px 50px rgba(0, 102, 255, 0.15);
}

.hosting-service-page .package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--hs-primary), var(--hs-secondary));
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.hosting-service-page .package-header {
    text-align: center;
    margin-bottom: 20px;
    padding-top: 8px;
}

.hosting-service-page .package-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--hs-dark);
    margin: 0;
}

.hosting-service-page .package-price {
    text-align: center;
    padding: 20px 0;
    margin-bottom: 20px;
    border-top: 1px solid var(--hs-border);
    border-bottom: 1px solid var(--hs-border);
}

.hosting-service-page .price-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--hs-dark);
}

.hosting-service-page .price-period {
    font-size: 16px;
    color: #888;
}

.hosting-service-page .price-note {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}

.hosting-service-page .package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.hosting-service-page .package-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--hs-text);
    border-bottom: 1px solid #f5f5f5;
}

.hosting-service-page .package-features li:last-child {
    border-bottom: none;
}

.hosting-service-page .package-features svg {
    color: var(--hs-success);
    flex-shrink: 0;
}

.hosting-service-page .package-extras {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
    font-size: 11px;
    color: #888;
}

.hosting-service-page .package-extras span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hosting-service-page .packages-cta {
    text-align: center;
}

/* ============================================
   Features Section
============================================ */
.hosting-service-page .features-section {
    padding: 80px 0;
    background: var(--hs-light-bg);
}

.hosting-service-page .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hosting-service-page .feature-item {
    background: var(--hs-white);
    padding: 32px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.hosting-service-page .feature-item:hover {
    box-shadow: var(--hs-shadow);
    transform: translateY(-6px);
}

.hosting-service-page .feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #ffffff;
}

.hosting-service-page .feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--hs-dark);
    margin: 0 0 10px 0;
}

.hosting-service-page .feature-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   Content Section
============================================ */
.hosting-service-page .content-section {
    padding: 60px 0;
    background: var(--hs-white);
}

.hosting-service-page .content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.hosting-service-page .content-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--hs-text);
    margin-bottom: 20px;
}

.hosting-service-page .content-wrapper h2,
.hosting-service-page .content-wrapper h3 {
    color: var(--hs-dark);
    margin-top: 32px;
    margin-bottom: 16px;
}

/* ============================================
   Comparison Section
============================================ */
.hosting-service-page .comparison-section {
    padding: 80px 0;
    background: var(--hs-white);
}

.hosting-service-page .comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--hs-radius);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.hosting-service-page .comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
    background: var(--hs-white);
}

.hosting-service-page .comparison-table th,
.hosting-service-page .comparison-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--hs-border);
}

.hosting-service-page .comparison-table th {
    background: var(--hs-light-bg);
    font-weight: 600;
    color: var(--hs-dark);
    font-size: 15px;
}

.hosting-service-page .comparison-table th.featured {
    background: linear-gradient(180deg, #f0f7ff 0%, #e8f4ff 100%);
    position: relative;
}

.hosting-service-page .th-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--hs-primary), var(--hs-secondary));
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
}

.hosting-service-page .comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--hs-dark);
}

.hosting-service-page .check-icon {
    color: var(--hs-success);
    font-size: 18px;
    font-weight: bold;
}

.hosting-service-page .dash-icon {
    color: #ccc;
}

/* ============================================
   FAQ Section
============================================ */
.hosting-service-page .faq-section {
    padding: 80px 0;
    background: var(--hs-light-bg);
}

.hosting-service-page .faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.hosting-service-page .faq-item {
    background: var(--hs-white);
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.hosting-service-page .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--hs-dark);
    cursor: pointer;
    transition: color 0.3s ease;
    font-family: inherit;
}

.hosting-service-page .faq-question:hover {
    color: var(--hs-primary);
}

.hosting-service-page .faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.hosting-service-page .faq-question[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.hosting-service-page .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.hosting-service-page .faq-answer > div {
    padding: 0 24px 20px;
    color: #666;
    line-height: 1.7;
}

.hosting-service-page .faq-item.active .faq-answer {
    max-height: 500px;
}

/* ============================================
   CTA Section
============================================ */
.hosting-service-page .cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cta-from, #0066FF) 0%, var(--cta-to, #00D4AA) 100%);
}

.hosting-service-page .cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hosting-service-page .cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.hosting-service-page .cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.hosting-service-page .cta-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ============================================
   Responsive - Tablet
============================================ */
@media (max-width: 1200px) {
    .hosting-service-page .packages-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hosting-service-page .hosting-hero {
        padding: 80px 0 60px;
    }
    
    .hosting-service-page .hosting-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hosting-service-page .hero-content {
        order: 1;
    }
    
    .hosting-service-page .hero-promo-card {
        order: 2;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hosting-service-page .hero-features-list {
        align-items: center;
    }
    
    .hosting-service-page .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hosting-service-page .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hosting-service-page .cta-box {
        flex-direction: column;
        text-align: center;
    }
    
    .hosting-service-page .cta-buttons {
        justify-content: center;
    }
}

/* ============================================
   Responsive - Mobile
============================================ */
@media (max-width: 768px) {
    .hosting-service-page .hosting-hero h1 {
        font-size: 32px;
    }
    
    .hosting-service-page .promo-discount .value {
        font-size: 60px;
    }
    
    .hosting-service-page .packages-grid-4,
    .hosting-service-page .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hosting-service-page .trust-items {
        flex-direction: column;
        gap: 24px;
    }
    
    .hosting-service-page .section-header h2 {
        font-size: 28px;
    }
    
    .hosting-service-page .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hosting-service-page .cta-buttons .btn {
        width: 100%;
    }
    
    .hosting-service-page .cta-content h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .hosting-service-page .hosting-hero h1 {
        font-size: 28px;
    }
    
    .hosting-service-page .hero-badge {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .hosting-service-page .hero-description {
        font-size: 16px;
    }
    
    .hosting-service-page .package-card {
        padding: 24px 20px;
    }
    
    .hosting-service-page .promo-discount .value {
        font-size: 50px;
    }
}

