@charset "UTF-8";

.wjs-service-banner {
    padding: 150px 0 80px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.wjs-service-banner-top {
    margin-bottom: 20px;
}

.wjs-service-banner-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #ff9800;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.wjs-service-banner-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.wjs-service-banner-content p {
    font-size: 16px;
    color: #666;
}

.wjs-service-cards {
    padding: 80px 0;
    background: #ffffff;
}

.wjs-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.wjs-service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.wjs-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.wjs-service-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.wjs-service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wjs-service-card:hover .wjs-service-card-image img {
    transform: scale(1.05);
}

.wjs-service-card-content {
    padding: 25px;
}

.wjs-service-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.wjs-service-card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.wjs-service-card-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 152, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.wjs-service-card:hover .wjs-service-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.wjs-service-features {
    padding: 80px 0;
    background: #f8f9fa;
}

.wjs-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.wjs-section-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #ff9800;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.wjs-section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.wjs-section-title p {
    font-size: 16px;
    color: #666;
}

.wjs-service-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.wjs-service-feature-item {
    text-align: center;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.wjs-service-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wjs-service-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    margin: 0 auto 20px;
}

.wjs-service-feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.wjs-service-feature-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.wjs-service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.wjs-service-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wjs-service-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.wjs-service-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.wjs-service-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    color: #666;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.wjs-service-modal-close:hover {
    background: #ff9800;
    color: #ffffff;
}

.wjs-service-modal-body {
    padding: 40px;
}

.wjs-service-modal-body h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.wjs-service-modal-body p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.wjs-service-modal-body h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.wjs-service-modal-body ul {
    list-style: none;
    padding: 0;
}

.wjs-service-modal-body li {
    padding: 10px 0;
    font-size: 15px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.wjs-service-modal-body li:last-child {
    border-bottom: none;
}

.wjs-service-modal-body li i {
    color: #3949ab;
    margin-right: 12px;
}

.wjs-service-modal-contact {
    background: linear-gradient(135deg, #1a237e, #3949ab);
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
    text-align: center;
}

.wjs-service-modal-contact h3 {
    color: #ffffff;
    margin-top: 0;
}

.wjs-service-modal-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.wjs-service-modal-contact a {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: #ff9800;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.wjs-service-modal-contact a:hover {
    background: #f57c00;
}

.wjs-service-modal-contact a i {
    margin-right: 10px;
}

@media (max-width: 1024px) {
    .wjs-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wjs-service-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.wjs-service-process {
    padding: 80px 0;
    background: #f8f9fa;
}

.wjs-process-header {
    text-align: center;
    margin-bottom: 50px;
}

.wjs-process-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #ff9800;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.wjs-process-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.wjs-process-header p {
    font-size: 16px;
    color: #666;
}

.wjs-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.wjs-process-step {
    text-align: center;
}

.wjs-process-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}

.wjs-process-step:hover .wjs-process-icon {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.4);
}

.wjs-process-step h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.wjs-process-step p {
    font-size: 14px;
    color: #666;
}

.wjs-process-tips {
    background: rgba(26, 35, 126, 0.05);
    border: 1px dashed #1a237e;
    border-radius: 8px;
    padding: 25px 30px;
    text-align: center;
}

.wjs-process-tips p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .wjs-service-banner-content h1 {
        font-size: 32px;
    }
    
    .wjs-service-grid {
        grid-template-columns: 1fr;
    }
    
    .wjs-service-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wjs-service-card-image {
        height: 180px;
    }
    
    .wjs-service-modal-content {
        width: 95%;
        padding: 30px;
    }
}

.wjs-detail-banner {
    padding: 150px 0 80px;
    background: linear-gradient(180deg, #1a237e 0%, #3949ab 100%);
    text-align: center;
}

.wjs-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wjs-btn i {
    margin-right: 12px;
    font-size: 18px;
}

.wjs-btn-primary {
    background: #ff9800;
    color: #ffffff;
    border: none;
}

.wjs-btn-primary:hover {
    background: #f57c00;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.4);
}

.wjs-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.wjs-btn-secondary:hover {
    background: #ffffff;
    color: #1a237e;
}

.wjs-detail-breadcrumb-section {
    padding: 20px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.wjs-detail-breadcrumb {
    font-size: 14px;
    color: #666;
}

.wjs-detail-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wjs-detail-breadcrumb a:hover {
    color: #1a237e;
}

.wjs-detail-breadcrumb span {
    margin: 0 8px;
    color: #999;
}

.wjs-detail-banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.wjs-detail-banner-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.wjs-detail-banner-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.wjs-detail-banner-buttons .wjs-btn {
    padding: 15px 40px;
    font-size: 16px;
}

.wjs-detail-intro {
    padding: 80px 0;
    background: #ffffff;
}

.wjs-detail-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.wjs-detail-intro-left h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.wjs-detail-intro-left p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.wjs-detail-intro-list {
    list-style: none;
    padding: 0;
}

.wjs-detail-intro-list li {
    font-size: 16px;
    color: #666;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.wjs-detail-intro-list li i {
    position: absolute;
    left: 0;
    color: #1a237e;
}

.wjs-detail-intro-right img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 30px;
}

.wjs-detail-intro-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.wjs-detail-stat-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    flex: 1;
}

.wjs-detail-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 5px;
}

.wjs-detail-stat-label {
    font-size: 14px;
    color: #666;
}

.wjs-detail-features {
    padding: 80px 0;
    background: #f8f9fa;
}

.wjs-detail-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.wjs-detail-feature-item {
    text-align: center;
    padding: 30px;
    background: #ffffff;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.wjs-detail-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wjs-detail-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    margin: 0 auto 20px;
}

.wjs-detail-feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.wjs-detail-feature-item p {
    font-size: 14px;
    color: #666;
}

.wjs-detail-process {
    padding: 80px 0;
    background: #ffffff;
}

.wjs-detail-process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.wjs-detail-process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.wjs-detail-process-step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.wjs-detail-process-step h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.wjs-detail-process-step p {
    font-size: 14px;
    color: #666;
}

.wjs-detail-process-arrow {
    color: #ccc;
    font-size: 24px;
    margin: 0 10px;
}

.wjs-detail-contact {
    padding: 80px 0;
    background: #ffffff;
}

.wjs-detail-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.wjs-detail-contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.wjs-detail-contact-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.wjs-detail-contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
    flex-shrink: 0;
}

.wjs-detail-contact-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.wjs-detail-contact-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.wjs-detail-contact-item a {
    color: #1a237e;
    text-decoration: none;
    font-weight: 600;
}

.wjs-detail-contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 16px;
}

.wjs-detail-form-group {
    margin-bottom: 20px;
}

.wjs-detail-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.wjs-detail-form-group input,
.wjs-detail-form-group select,
.wjs-detail-form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background: #ffffff;
    transition: border-color 0.3s ease;
}

.wjs-detail-form-group input:focus,
.wjs-detail-form-group select:focus,
.wjs-detail-form-group textarea:focus {
    outline: none;
    border-color: #1a237e;
}

.wjs-detail-form-group textarea {
    height: 100px;
    resize: vertical;
}

@media (max-width: 768px) {
    .wjs-service-banner-content h1 {
        font-size: 32px;
    }
    
    .wjs-service-grid {
        grid-template-columns: 1fr;
    }
    
    .wjs-service-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .wjs-service-card-image {
        height: 180px;
    }
    
    .wjs-service-modal-content {
        width: 95%;
        padding: 30px;
    }

    .wjs-detail-banner-content h1 {
        font-size: 32px;
    }

    .wjs-detail-banner-buttons {
        flex-direction: column;
        align-items: center;
    }

    .wjs-detail-intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wjs-detail-intro-stats {
        flex-direction: column;
    }

    .wjs-detail-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wjs-detail-process-steps {
        flex-direction: column;
    }

    .wjs-detail-process-arrow {
        display: none;
    }

    .wjs-detail-contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .wjs-service-features-grid {
        grid-template-columns: 1fr;
    }
    
    .wjs-service-banner-content h1 {
        font-size: 26px;
    }
    
    .wjs-service-card-image {
        height: 150px;
    }
    
    .wjs-service-card-content {
        padding: 20px;
    }
}