/* ========================================
   Jasa Instalasi VPS Page
   Professional service design inspired by IDSysadmin
   ======================================== */

/* Base imports from home-v2 for consistency */
@import url('./home-v2.css');

/* Page Specific Styles */
.page-hero-instalasi {
    background: linear-gradient(135deg, #2E5CFF 0%, #1a4acc 100%);
    min-height: 600px;
    padding: 120px 0 100px;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: -90px;
}

.page-hero-instalasi::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero-instalasi::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(46, 92, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.service-pricing-section {
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
    padding: 100px 0;
}

.pricing-card-instalasi {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(46, 92, 255, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: visible;
}

.pricing-card-instalasi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2E5CFF, #1a4acc);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card-instalasi:hover::before {
    opacity: 1;
}

.pricing-card-instalasi:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(46, 92, 255, 0.2);
    border-color: #2E5CFF;
}

.pricing-card-instalasi.featured {
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
    border: 3px solid #2E5CFF;
    transform: scale(1.03);
    z-index: 2;
    margin-top: 15px;
    margin-bottom: 15px;
}

.pricing-card-instalasi.featured::before {
    opacity: 1;
}

.pricing-card-instalasi.featured:hover {
    transform: translateY(-15px) scale(1.05);
}

.badge-expert {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
    z-index: 10;
    animation: glow 2s infinite;
    white-space: nowrap;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
    }
    50% {
        box-shadow: 0 6px 30px rgba(243, 156, 18, 0.6);
    }
}

.price-display-instalasi {
    text-align: center;
    padding: 2.5rem 0;
    position: relative;
}

.price-amount-instalasi {
    font-size: 4rem;
    font-weight: 800;
    color: #2E5CFF;
    line-height: 1;
}

.price-currency-instalasi {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2E5CFF;
    vertical-align: super;
}

.price-period-instalasi {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
}

.service-features-instalasi {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.service-features-instalasi li {
    padding: 1rem 0;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.service-features-instalasi li:hover {
    color: #2E5CFF;
    padding-left: 0.5rem;
    background: #f0f9ff;
    border-radius: 8px;
    padding-left: 1rem;
    padding-right: 1rem;
}

.service-features-instalasi li::before {
    content: '✓';
    color: #2E5CFF;
    font-weight: 800;
    margin-right: 0.875rem;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.btn-primary-instalasi {
    background: linear-gradient(135deg, #2E5CFF 0%, #1a4acc 100%);
    border: none;
    color: white;
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(46, 92, 255, 0.3);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-primary-instalasi::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary-instalasi:hover::before {
    left: 100%;
}

.btn-primary-instalasi:hover {
    background: linear-gradient(135deg, #3d6bff 0%, #2E5CFF 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 92, 255, 0.4);
}

.btn-outline-instalasi {
    background: transparent;
    border: 2px solid #2E5CFF;
    color: #2E5CFF;
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-outline-instalasi:hover {
    background: #2E5CFF;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 92, 255, 0.3);
}

/* Service Process */
.process-section {
    padding: 100px 0;
    background: white;
}

.process-step {
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2E5CFF 0%, #1a4acc 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 30px rgba(46, 92, 255, 0.3);
    position: relative;
    z-index: 2;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    width: calc(100% + 4rem);
    height: 3px;
    background: linear-gradient(90deg, #2E5CFF, #1a4acc);
    z-index: 1;
}

.process-step:last-child::after {
    display: none;
}

.step-title {
    font-size: 1.5rem;
    color: #2E5CFF;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-description {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e9f4fc 100%);
    padding: 100px 0;
}

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 30px rgba(46, 92, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(46, 92, 255, 0.15);
    border-color: #2E5CFF;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2E5CFF 0%, #1a4acc 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(46, 92, 255, 0.3);
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(10deg);
}

.benefit-title {
    font-size: 1.35rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-description {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

/* Comparison Table */
.comparison-section-instalasi {
    padding: 100px 0;
    background: white;
}

.comparison-table-instalasi {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(46, 92, 255, 0.1);
}

.comparison-table-instalasi thead {
    background: linear-gradient(135deg, #2E5CFF 0%, #1a4acc 100%);
    color: white;
}

.comparison-table-instalasi th {
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    border: none;
}

.comparison-table-instalasi td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
}

.comparison-table-instalasi tbody tr:hover {
    background: #f0f9ff;
}

.comparison-table-instalasi tbody tr:last-child td {
    border-bottom: none;
}

.highlight-row {
    background: #f0f9ff !important;
    font-weight: 600;
}

.check-icon {
    color: #2ecc71;
    font-size: 1.5rem;
}

.cross-icon {
    color: #e74c3c;
    font-size: 1.5rem;
}

/* Testimonials */
.testimonials-instalasi {
    background: linear-gradient(135deg, #f0f9ff 0%, #e9f4fc 100%);
    padding: 100px 0;
}

.testimonial-card-instalasi {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(46, 92, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card-instalasi::before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 4rem;
    color: #2E5CFF;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card-instalasi:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(46, 92, 255, 0.15);
}

/* Guarantee Badge */
.guarantee-badge {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(243, 156, 18, 0.3);
    transition: all 0.3s ease;
}

.guarantee-badge:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(243, 156, 18, 0.4);
}

.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.guarantee-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.guarantee-text {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Responsive */
@media (max-width: 991px) {
    .page-hero-instalasi {
        padding: 100px 0 70px;
        min-height: 500px;
    }

    .page-hero-instalasi h1 {
        font-size: 2.5rem !important;
    }

    .page-hero-instalasi p {
        font-size: 1.1rem !important;
    }

    .price-amount-instalasi {
        font-size: 3.5rem;
    }

    .pricing-card-instalasi.featured {
        transform: scale(1);
    }

    .pricing-card-instalasi.featured:hover {
        transform: translateY(-10px) scale(1.02);
    }

    .badge-expert {
        font-size: 0.75rem;
        padding: 6px 16px;
        top: -12px;
    }

    .process-step::after {
        display: none;
    }

    .step-number {
        margin-bottom: 1.5rem;
    }

    /* Benefit Cards center alignment on tablet */
    .benefit-card {
        text-align: center;
    }

    .benefit-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .benefit-title {
        text-align: center;
    }

    .benefit-description {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .page-hero-instalasi {
        padding: 80px 0 50px;
        min-height: 450px;
    }

    .page-hero-instalasi h1 {
        font-size: 2rem !important;
    }

    .page-hero-instalasi p {
        font-size: 1rem !important;
    }

    .price-amount-instalasi {
        font-size: 2.5rem;
    }

    .price-currency-instalasi {
        font-size: 1.25rem;
    }

    .pricing-card-instalasi {
        padding: 2rem 1.5rem;
    }

    .pricing-card-instalasi:hover {
        transform: translateY(-8px) scale(1.01);
    }

    .badge-expert {
        font-size: 0.7rem;
        padding: 5px 14px;
        top: -10px;
        right: 15px;
    }

    .section-title {
        font-size: 1.75rem !important;
    }

    .section-subtitle {
        font-size: 0.95rem !important;
    }

    /* Process Steps */
    .process-step {
        padding: 2rem 1.5rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .step-title {
        font-size: 1.25rem;
    }

    .step-description {
        font-size: 0.95rem;
    }

    /* Benefit Cards */
    .benefit-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-left: auto;
        margin-right: auto;
    }

    .benefit-title {
        font-size: 1.15rem;
        text-align: center;
    }

    .benefit-description {
        font-size: 0.95rem;
        text-align: center;
    }

    /* Comparison Table */
    .comparison-table-instalasi {
        font-size: 0.75rem;
    }

    .comparison-table-instalasi th,
    .comparison-table-instalasi td {
        padding: 0.6rem 0.4rem;
    }

    /* Testimonials */
    .testimonial-card-instalasi {
        padding: 1.5rem;
    }

    /* Guarantee Badge */
    .guarantee-badge {
        padding: 2rem 1.5rem;
    }

    .guarantee-icon {
        font-size: 3rem;
    }

    .guarantee-title {
        font-size: 1.5rem;
    }

    .guarantee-text {
        font-size: 1rem;
    }

    /* Buttons */
    .btn-primary-instalasi,
    .btn-outline-instalasi {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    /* Features list */
    .service-features-instalasi li {
        font-size: 0.9rem;
        padding: 0.875rem 0;
    }
}
