/* Service Detail Page */
.service-detail-hero {
    margin-top: 105px;
    position: relative;
    height: 300px;
    overflow: hidden;
}

.service-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: center;
    color: white;
}

.breadcrumb {
    font-size: 12px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb span {
    margin: 0 8px;
}

.hero-overlay h1 {
    font-size: 32px;
    font-weight: 600;
    margin: 0;
}

.service-detail {
    padding: 60px 0;
    background: #f7fafc;
}

.detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.detail-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.detail-intro {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #edf2f7;
}

.lead {
    font-size: 15px;
    line-height: 1.8;
    color: #2c5282;
    font-weight: 500;
}

.detail-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a365d;
    margin: 30px 0 15px;
}

.detail-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #718096;
    margin-bottom: 15px;
}

.detail-list {
    list-style: none;
    margin: 20px 0;
}

.detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.6;
}

.detail-list i {
    color: #d97706;
    font-size: 16px;
    margin-top: 2px;
}

.detail-list strong {
    color: #1a365d;
}

.info-box {
    background: #fff5e6;
    border-left: 4px solid #d97706;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    display: flex;
    gap: 15px;
}

.info-box i {
    font-size: 24px;
    color: #d97706;
    flex-shrink: 0;
}

.info-box h3 {
    font-size: 15px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 8px;
}

.info-box p {
    font-size: 13px;
    color: #718096;
    margin: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.step {
    background: #f7fafc;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #edf2f7;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1a365d, #2c5282);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 15px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 8px;
}

.step p {
    font-size: 12px;
    color: #718096;
    margin: 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.advantage-card {
    background: #f7fafc;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #edf2f7;
}

.advantage-card i {
    font-size: 32px;
    color: #d97706;
    margin-bottom: 12px;
}

.advantage-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 8px;
}

.advantage-card p {
    font-size: 12px;
    color: #718096;
    margin: 0;
}

.cta-box {
    background: linear-gradient(135deg, #1a365d, #2c5282);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin: 30px 0;
}

.cta-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.cta-box p {
    font-size: 13px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sidebar */
.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.sidebar-widget h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid #edf2f7;
}

.service-list {
    list-style: none;
}

.service-list li {
    margin-bottom: 10px;
}

.service-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    color: #718096;
    text-decoration: none;
    font-size: 13px;
    border-radius: 6px;
    transition: all 0.3s;
}

.service-list a:hover {
    background: #f7fafc;
    color: #1a365d;
    padding-left: 15px;
}

.service-list i {
    font-size: 10px;
    color: #d97706;
}

.contact-widget {
    background: #f7fafc;
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-item i {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #1a365d, #2c5282);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 12px;
    color: #1a365d;
    margin-bottom: 3px;
}

.contact-item a,
.contact-item span {
    font-size: 12px;
    color: #718096;
    text-decoration: none;
}

.contact-item a:hover {
    color: #d97706;
}

.cta-widget {
    background: linear-gradient(135deg, #1a365d, #2c5282);
    color: white;
}

.cta-widget h3 {
    color: white;
    border-bottom-color: rgba(255,255,255,0.2);
}

.cta-widget p {
    font-size: 12px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.btn-sidebar {
    display: block;
    text-align: center;
    padding: 10px 20px;
    background: #d97706;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-sidebar:hover {
    background: #b45309;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .service-detail-hero {
        margin-top: 128px;
        height: 250px;
    }
    
    .hero-overlay h1 {
        font-size: 24px;
    }
    
    .detail-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .detail-content {
        padding: 25px;
    }
    
    .detail-content h2 {
        font-size: 20px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 25px 20px;
    }
    
    .cta-box h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .service-detail-hero {
        height: 200px;
    }
    
    .hero-overlay h1 {
        font-size: 20px;
    }
    
    .detail-content {
        padding: 20px;
    }
    
    .breadcrumb {
        font-size: 11px;
    }
}
