/* Service Page Styles */

/* Service Hero Section */
.service-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 100px;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.service-hero .container {
    position: relative;
    z-index: 2;
}

/* Background images for each service */
.percetakan-hero {
    background: url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.digital-printing-hero {
    background: url('https://images.unsplash.com/photo-1566150905458-1bf1fc113f0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.atk-hero {
    background: url('https://images.unsplash.com/photo-1513475382585-d06e58bcb0e0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.it-solution-hero {
    background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

/* Breadcrumb */
.breadcrumb {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 50px;
    display: inline-block;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Service Stats */
.service-stats .stat-item {
    padding: 15px;
}

.service-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e63946;
    margin-bottom: 5px;
}

.service-stats .stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    color: #e63946;
}

/* Process Steps */
.process-steps {
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(to right, #e63946, #0077b6);
    z-index: 1;
}

@media (max-width: 992px) {
    .process-steps::before {
        display: none;
    }
}

.process-step {
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #e63946;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid #e63946;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

@media (max-width: 992px) {
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

.pricing-header {
    background: linear-gradient(135deg, #e63946 0%, #d32f2f 100%);
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
}

.pricing-header h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.badge.bg-danger {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    background-color: #dc3545 !important;
}

.pricing-body {
    padding: 30px;
}

.pricing-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.pricing-body ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.pricing-body ul li:last-child {
    border-bottom: none;
}

/* Service Contact Form */
.service-contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
    .service-contact-form {
        padding: 25px;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 60px 0;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .service-hero {
        min-height: 60vh;
    }
    
    .service-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-stats .stat-number {
        font-size: 2rem;
    }
    
    .price {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .service-hero {
        min-height: 50vh;
        padding-top: 80px;
    }
    
    .service-hero h1.display-3 {
        font-size: 2rem !important;
    }
    
    .cta-section .btn {
        width: 100%;
        margin-top: 15px;
    }
}

/* Fix untuk Bootstrap classes yang mungkin conflict */
.section-padding {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #e63946;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.bg-light {
    background-color: #f8f9fa !important;
}

/* Navbar fix untuk halaman service */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.navbar-light .navbar-nav .nav-link.active {
    color: #e63946 !important;
    font-weight: 600;
}

/* Footer fix */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 80px 0 30px;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: white;
}

/* Button styles */
.btn-danger {
    background-color: #e63946;
    border-color: #e63946;
}

.btn-danger:hover {
    background-color: #d32f2f;
    border-color: #d32f2f;
}

.btn-outline-primary {
    color: #0077b6;
    border-color: #0077b6;
}

.btn-outline-primary:hover {
    background-color: #0077b6;
    border-color: #0077b6;
}

.rounded-pill {
    border-radius: 50rem !important;
}