/* Success Stories Detail Page */
.success-stories-detail-page {
    color: #333;
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: #fff;
}

.success-stories-detail-page .container-box {
    width: 100%;
    margin: 0 auto;
}

.success-stories-detail-page .container-padding {
    padding: 0 150px;
}

/* Banner Section */
.detail-banner {
    width: 100%;
    height: 47vw;
    position: relative;
    overflow: hidden;
}

.detail-banner .banner-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Content Wrapper */
.detail-content-wrapper {
    padding: 30px 0 60px;
    padding-top: 10px;
}

/* Breadcrumb */
.product-breadcrumb-section {
    padding: 20px 0;
    padding-top: 0;
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
    padding: 12px 0;
    border-bottom: 1px solid #DEDEDE;
    padding: 20px 0;
}

.product-breadcrumb-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-right: 4px;
}

.product-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.product-breadcrumb a:hover {
    color: #333;
}

.product-breadcrumb .separator {
    color: #999;
}

.product-breadcrumb .current {
    color: #333;
    font-weight: bold;
}

/* Gallery Swiper */
.detail-gallery {
    margin-bottom: 20px;
}

.gallery-container {
    position: relative;
}

.detail-gallery-swiper {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.detail-gallery-swiper .swiper-slide {
    width: 100%;
    height: 700px;
}

.detail-gallery-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.detail-gallery-swiper .swiper-button-prev,
.detail-gallery-swiper .swiper-button-next {
    width: 44px;
    height: 44px;
    background: #CBCBAD;
    border-radius: 50%;
    color: #fff;
    transition: background 0.2s;
}

.detail-gallery-swiper .swiper-button-prev:hover,
.detail-gallery-swiper .swiper-button-next:hover {
    background: #7a7a57;
}

.detail-gallery-swiper .swiper-button-prev::after,
.detail-gallery-swiper .swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
}

/* Gallery Thumbnails */
.gallery-thumbs-wrapper {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 10;
    background: #000000;
    border: 1px solid #F8F8F5;
    padding: 10px;
}

.gallery-thumbs-swiper {
    width: auto;
    max-width: 400px;
}

.gallery-thumbs-swiper .swiper-slide {
    width: 80px;
    height: 60px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.gallery-thumbs-swiper .swiper-slide-thumb-active {
    opacity: 1;
}

.gallery-thumbs-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Project Header */
.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.project-title {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin: 0;
}

.btn-inquiry-project {
    display: inline-block;
    padding: 10px 20px;
    background: #ABAD64;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-inquiry-project:hover {
    color: #fff;
    transform: translateY(-1px);
}

/* Project Section */
.project-section {
    margin-bottom: 30px;
}

.project-section .section-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.project-section .section-label .label-bar {
    width: 8px;
    height: 42px;
    background: #929269;
    flex-shrink: 0;
}

.project-section .section-label .label-text {
    flex: 1;
    background: #EEEEE8;
    color: #5B5B47;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 20px;
    letter-spacing: 0.5px;
}

/* Project Info List */
.project-info-list {
    padding: 0 5px;
}

.project-info-list .info-item {
    display: flex;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.project-info-list .info-label {
    font-weight: bold;
    color: #333;
    min-width: 140px;
    flex-shrink: 0;
}

.project-info-list .info-value {
    color: #333;
    font-weight: 500;
}

/* Application Tags */
.application-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0 5px;
}

.application-tags .app-tag {
    font-size: 14px;
    color: #333;
    font-weight: 400;
}

/* Related Projects */
.related-projects-section {
    margin-top: 40px;
}

.related-projects-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.related-project-card {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.related-project-card:hover {
    transform: translateY(-4px);
    text-decoration: none;
}

.related-project-image {
    width: 302px;
    height: 208px;
    overflow: hidden;
    margin-bottom: 12px;
}

.related-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.related-project-card:hover .related-project-image img {
    transform: scale(1.05);
}

.related-project-info {
    padding: 0 5px;
}

.related-project-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0 0 5px 0;
    line-height: 1.4;
}

.related-project-location {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .success-stories-detail-page .container-padding {
        padding: 0 40px;
    }
    
    .detail-banner {
        height: 50vw;
    }
    
    .detail-gallery-swiper .swiper-slide {
        height: 400px;
    }
    
    .gallery-thumbs-wrapper {
        right: 15px;
        bottom: 15px;
        padding: 8px;
    }
    
    .gallery-thumbs-swiper .swiper-slide {
        width: 60px;
        height: 45px;
    }
    
    .related-projects-grid {
        gap: 25px;
    }
    
    .related-project-image {
        width: 100%;
        height: 180px;
    }
    
    .project-info-list .info-label {
        min-width: 120px;
    }
}

@media (max-width: 767px) {
    .success-stories-detail-page .container-padding {
        padding: 0 15px;
    }
    
    .detail-banner {
        height: 60vw;
    }
    
    .detail-content-wrapper {
        padding: 20px 0 40px;
        padding-top: 0;
    }
    
    .product-breadcrumb-section {
        padding: 15px 0;
    }
    
    .product-breadcrumb {
        font-size: 12px;
        gap: 6px;
        padding: 12px 0;
    }
    
    .product-breadcrumb-icon {
        width: 14px;
        height: 14px;
    }
    
    .detail-gallery-swiper .swiper-slide {
        height: 220px;
    }
    
    .detail-gallery-swiper .swiper-button-prev,
    .detail-gallery-swiper .swiper-button-next {
        width: 32px;
        height: 32px;
    }
    
    .detail-gallery-swiper .swiper-button-prev::after,
    .detail-gallery-swiper .swiper-button-next::after {
        font-size: 12px;
    }
    
    .gallery-thumbs-wrapper {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 10px;
        padding: 8px;
    }
    
    .gallery-thumbs-swiper {
        max-width: 100%;
    }
    
    .gallery-thumbs-swiper .swiper-slide {
        width: 60px;
        height: 45px;
    }
    
    .project-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 15px;
    }
    
    .project-title {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .btn-inquiry-project {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
    
    .project-section {
        margin-bottom: 20px;
    }
    
    .project-section .section-label {
        margin-bottom: 15px;
    }
    
    .project-section .section-label .label-bar {
        width: 6px;
        height: 32px;
    }
    
    .project-section .section-label .label-text {
        font-size: 13px;
        padding: 10px 15px;
    }
    
    .project-info-list .info-item {
        flex-direction: column;
        margin-bottom: 10px;
    }
    
    .project-info-list .info-label {
        min-width: auto;
        margin-bottom: 2px;
        font-size: 13px;
    }
    
    .project-info-list .info-value {
        font-size: 13px;
    }
    
    .application-tags {
        gap: 8px;
    }
    
    .application-tags .app-tag {
        font-size: 12px;
    }
    
    .related-projects-grid {
        gap: 15px;
    }
    
    .related-project-image {
        width: 100%;
        height: 140px;
    }
    
    .related-project-title {
        font-size: 13px;
    }
    
    .related-project-location {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .detail-banner {
        height: 65vw;
    }
    
    .product-breadcrumb {
        font-size: 11px;
        flex-wrap: wrap;
    }
    
    .detail-gallery-swiper .swiper-slide {
        height: 180px;
    }
    
    .gallery-thumbs-swiper .swiper-slide {
        width: 50px;
        height: 38px;
    }
    
    .project-title {
        font-size: 14px;
    }
    
    .project-section .section-label .label-bar {
        width: 5px;
        height: 28px;
    }
    
    .project-section .section-label .label-text {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .related-project-card {
        flex: 0 0 calc(50% - 8px);
    }
    
    .related-project-image {
        height: 120px;
    }
    
    .related-project-title {
        font-size: 12px;
    }
    
    .related-project-location {
        font-size: 11px;
    }
}
