/* ========================================
   SERVICE SECTION - EXPERIENCE
   ======================================== */

.service-experience-section {
    padding: 100px 0;
    background-image: url('../../image/bg/wall.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: #0f0f0f;
    position: relative;
}

.service-experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Service Image */
.service-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    z-index: -1;
}

.service-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.6s ease;
}

.service-image-wrapper:hover .service-image {
    transform: scale(1.02);
}

/* Service Content */
.service-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-primary);
    width: fit-content;
}

.service-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.service-description {
    font-size: 1.05rem;
    color: var(--text-light-soft);
    line-height: 1.8;
    font-weight: 400;
}

/* Service Features */
.service-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.service-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.95rem;
    color: var(--text-light-soft);
    font-weight: 500;
    padding: 12px 0;
    transition: transform 0.3s ease;
}

.service-features .feature-item:hover {
    transform: translateX(5px);
}

.service-features .feature-item i {
    font-size: 1.2rem;
    color: var(--accent-primary);
    margin-top: 2px;
    flex-shrink: 0;
}

/* ========================================
   RESPONSIVE SERVICE SECTION
   ======================================== */

@media (max-width: 1024px) {
    .service-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .service-content {
        text-align: center;
        align-items: center;
    }

    .service-title {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
    }

    .service-features {
        align-items: center;
    }

    .service-features .feature-item {
        justify-content: center;
    }

    .service-image-wrapper::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .service-experience-section {
        padding: 60px 0;
    }

    .service-container {
        gap: 40px;
    }

    .service-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
    }

    .service-description {
        font-size: 1rem;
    }

    .service-features .feature-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .service-experience-section {
        padding: 40px 0;
    }

    .service-container {
        padding: 0 4%;
        gap: 30px;
    }

    .service-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
    }

    .service-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .service-features .feature-item:hover {
        transform: none;
    }
}
