@charset "UTF-8";
/* CSS Document */

/* Navbar Section */
.navbar img,
.navbar .nav-item,
.navbar .btn-outside-popup,
.navbar-toggler {
    opacity: 1;
    animation: none !important;
}

/* Breadcrumb Section */
.breadcrumb {
    margin: 0;
    padding: var(--space-xxs) 0 0 var(--space-xl);
    background-color: var(--color-secondary-bg);
}

.breadcrumb-item a {
    color: var(--color-primary-text);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--color-primary);
}

.breadcrumb-item.active {
    color: var(--color-primary-text);
    text-decoration: underline;
    font-weight: bold;
}

.breadcrumb-container .breadcrumb-item + .breadcrumb-item::before {
    color: var(--color-primary-text);
}

@media screen and (max-width: 1199.98px) {

    .breadcrumb {
        padding-left: var(--space-l);
    }
}

@media screen and (max-width: 767.98px) {

    .breadcrumb {
        padding-left: var(--space-s);
        padding-right: var(--space-s);
    }
}

/* SWIT Section */
/* Section 1 */
.section-1 {
    margin-top: var(--space-s);
    margin-bottom: var(--space-xl);
}

.content-1 {
    background-color: var(--color-primary-bg);
    padding: var(--space-s);
    border-radius: var(--border-primary-radius);
}

.content-1 p {
    width: 80%;
}

.content-1 img {
    width: 300px;
    height: 300px;
    border-radius: var(--border-secondary-radius);
    box-shadow: var(--shadow-primary) var(--shadow-primary) var(--shadow-secondary) var(--color-shadows);
}

.content-1 p:nth-of-type(2) {
    font-size: var(--font-size-small);
}

.content-1 .container-fluid {
    margin-top: var(--space-l);
}

.content-1 .container-fluid a {
    color: var(--color-primary-text);
}

.content-1 .container-fluid a:hover {
    color: var(--color-primary);
}

.content-1 .container-fluid a > p {
    width: 100%;
}

@media screen and (min-width: 1561px) {
    
    .content-1 p {
        width: 45%;
    };
}

@media screen and (max-width: 1199.98px) {
    
    .section-1 {
        padding: 0 var(--space-l);
    }
}

@media screen and (max-width: 767.98px) {
    
    .section-1 {
        padding: 0 var(--space-s);
    }

    .content-1 p {
        width: 100%;
    }

    .content-1 img {
        width: 200px;
        height: 200px;
    }
}

/* Section 2 */
.section-2 {
    margin-bottom: var(--space-xl);
}

.content-2 {
    background-color: var(--color-primary-bg);
    padding: var(--space-s);
    border-radius: var(--border-primary-radius);
}

.content-2 p {
    width: 75%;
}

.content-2 .ratio {
    box-shadow: var(--shadow-primary) var(--shadow-primary) var(--shadow-secondary) var(--color-shadows);
}

@media screen and (max-width: 1199.98px) {

    .section-2 {
        padding: 0 var(--space-l);
    }

    .content-2 p {
        width: 100%;
    }
}

@media screen and (max-width: 767.98px) {
    
    .section-2 {
        padding: 0 var(--space-s);
    }
}

/* Section 3 */
.section-3 {
    margin-bottom: var(--space-xl);
}

.content-3 {
    background-color: var(--color-primary-bg);
    padding: var(--space-s);
    border-radius: var(--border-primary-radius);
    flex: 1;
}

.content-3 > p {
    font-size: var(--font-size-small);
}

.bento-content-3 {
    width: 100%;
    height: 600px;
    gap: var(--space-s);
}

.bento-content-3 .content-3-col:nth-of-type(1) {
    flex: 1 1 0;
    border-radius: var(--border-secondary-radius);
    background: var(--color-secondary-bg-gradient);
    box-shadow: var(--shadow-primary) var(--shadow-primary) var(--shadow-secondary) var(--color-shadows);
    color: var(--color-primary-text);
}

.bento-content-3 .content-3-col:nth-of-type(1) span {
    width: 100%;
    margin: var(--space-xs) 0;
    border: 1px solid var(--color-primary-text);
}

.bento-content-3 .content-3-col:nth-of-type(2) {
    flex: 2 2 0;
    gap: var(--space-s);
}

.bento-content-3 .content-3-col:nth-of-type(2) .content-3-row {
    flex: 1 1 0;
    gap: var(--space-s);
}

.bento-content-3 .content-3-col:nth-of-type(2) .content-3-row .inner-col {
    flex: 1 1 0;
    border-radius: var(--border-secondary-radius);
    box-shadow: var(--shadow-primary) var(--shadow-primary) var(--shadow-secondary) var(--color-shadows);
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

.bento-content-3 .content-3-col:nth-of-type(2) .content-3-row:nth-of-type(1) .inner-col:nth-of-type(1):hover,
.bento-content-3 .content-3-col:nth-of-type(2) .content-3-row:nth-of-type(2) .inner-col:nth-of-type(2):hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-secondary) var(--shadow-secondary) var(--shadow-tertiary) var(--color-shadows);
}

.bento-content-3 .content-3-col:nth-of-type(2) .content-3-row .inner-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.bento-content-3 .content-3-col:nth-of-type(2) .content-3-row:nth-of-type(1) .inner-col:nth-of-type(2) {
    background: var(--color-secondary-bg-gradient);
    color: var(--color-primary-text);
}

.bento-content-3 .content-3-col:nth-of-type(2) .content-3-row:nth-of-type(1) .inner-col:nth-of-type(2) span {
    width: 100%;
    margin: var(--space-xs) 0;
    border: 1px solid var(--color-primary-text);
}

.bento-content-3 .content-3-col:nth-of-type(2) .content-3-row:nth-of-type(2) .inner-col:nth-of-type(1) {
    background: var(--color-secondary-bg-gradient);
    color: var(--color-primary-text);
}

.bento-content-3 .content-3-col:nth-of-type(2) .content-3-row:nth-of-type(2) .inner-col:nth-of-type(1) span {
    width: 100%;
    margin: var(--space-xs) 0;
    border: 1px solid var(--color-primary-text);
}

@media screen and (max-width: 1199.98px) {

    .section-3 {
        padding: 0 var(--space-l);
    }

    .bento-content-3 {
        height: 550px;
    }
}

@media screen and (max-width: 991.98px) {
    
    .bento-content-3 {
        height: 700px;
        flex-direction: column !important;
    }

    .bento-content-3 .content-3-col:nth-of-type(1) {
        flex: 4 4 0;
    }
    
    .bento-content-3 .content-3-col:nth-of-type(2) {
        flex: 6 6 0;
    }
}

@media screen and (max-width: 767.98px) {
   
    .section-3 {
        padding: 0 var(--space-s);
    }

    .bento-content-3 {
        height: 1500px;
    }
    
    .bento-content-3 .content-3-col:nth-of-type(1) {
        flex: 2 2 0;
    }
    
    .bento-content-3 .content-3-col:nth-of-type(2) {
        flex: 8 8 0;
    }

    .bento-content-3 .content-3-row:nth-of-type(1) {
        flex-direction: column;
    }

    .bento-content-3 .content-3-row:nth-of-type(2) {
        flex-direction: column-reverse;
    }
}

@media screen and (max-width: 429.98px) {

    .bento-content-3 {
        height: 1300px;
    }
}

/* Section 4 */
.section-4 {
    margin-bottom: var(--space-xl);
}

.content-4 {
    background-color: var(--color-primary-bg);
    padding: var(--space-s);
    border-radius: var(--border-primary-radius);
}

.content-4 > p {
    font-size: var(--font-size-small);
}

.bento-content-4 {
    width: 100%;
    height: 650px;
    gap: var(--space-s);
}

.bento-content-4 .content-4-col:nth-of-type(1) {
    flex: 1 1 0;
    border-radius: var(--border-secondary-radius);
    background: var(--color-secondary-bg-gradient);
    box-shadow: var(--shadow-primary) var(--shadow-primary) var(--shadow-secondary) var(--color-shadows);
    color: var(--color-primary-text);
}

.bento-content-4 .content-4-col:nth-of-type(1) span {
    width: 100%;
    margin: var(--space-xs) 0;
    border: 1px solid var(--color-primary-text);
}

.bento-content-4 .content-4-col:nth-of-type(2) {
    flex: 2 2 0;
    border-radius: var(--border-secondary-radius);
    gap: var(--space-s);
}

.bento-content-4 .content-4-col:nth-of-type(2) .content-4-row {
    flex: 1 1 0;
    min-height: 0 !important;
    border-radius: var(--border-secondary-radius);
    gap: var(--space-s);
}

.bento-content-4 .content-4-col:nth-of-type(2) .content-4-row .inner-col {
    flex: 1 1 0;
    min-height: 0 !important;
    border-radius: var(--border-secondary-radius);
    box-shadow: var(--shadow-primary) var(--shadow-primary) var(--shadow-secondary) var(--color-shadows);
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

.bento-content-4 .content-4-col:nth-of-type(2) .content-4-row:nth-of-type(1) .inner-col:nth-of-type(1):hover,
.bento-content-4 .content-4-col:nth-of-type(2) .content-4-row:nth-of-type(2) .inner-col:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-secondary) var(--shadow-secondary) var(--shadow-tertiary) var(--color-shadows);
}

.bento-content-4 .content-4-col:nth-of-type(2) .content-4-row .inner-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.bento-content-4 .content-4-col:nth-of-type(2) .content-4-row:nth-of-type(1) .inner-col:nth-of-type(2) {
    background: var(--color-secondary-bg-gradient);
    color: var(--color-primary-text);
}

.bento-content-4 .content-4-col:nth-of-type(2) .content-4-row:nth-of-type(1) .inner-col:nth-of-type(2) span {
    width: 100%;
    margin: var(--space-xs) 0;
    border: 1px solid var(--color-primary-text);
}

@media screen and (max-width: 1199.98px) {
    
    .section-4 {
        padding: 0 var(--space-l);
    }

    .bento-content-4 {
        height: 600px;
    }
}

@media screen and (max-width: 991.98px) {
    
    .bento-content-4 {
        height: 900px;
        flex-direction: column !important;
    }

    .bento-content-4 .content-4-col:nth-of-type(1) {
        flex: 2 2 0 !important;
    }
    
    .bento-content-4 .content-4-col:nth-of-type(2) {
        flex: 8 8 0 !important;
    }
}

@media screen and (max-width: 767.98px) {
    
    .section-4 {
        padding: 0 var(--space-s);
    }

    .bento-content-4 {
        height: 1500px;
    }

    .bento-content-4 .content-4-row:nth-of-type(1) {
        flex: 4 4 0 !important;
        flex-direction: column;
    }

    .bento-content-4 .content-4-row:nth-of-type(2) {
        flex: 6 6 0 !important;
        flex-direction: column;
    }

    .bento-content-4 .content-4-row:nth-of-type(2) .inner-col:nth-of-type(1) {
        flex: 3 3 0 !important;
    }
    
    .bento-content-4 .content-4-row:nth-of-type(2) .inner-col:nth-of-type(2) {
        flex: 7 7 0 !important;
    }

    @media screen and (max-width: 575.98px) {
        
        .bento-content-4 {
            height: 1750px;
        }
    }

    @media screen and (max-width: 429.98px) {
        
        .bento-content-4 {
            height: 1950px;
        }
            
        .bento-content-4 .content-4-col:nth-of-type(1) {
            flex: 3 3 0 !important;
        }
            
        .bento-content-4 .content-4-col:nth-of-type(2) {
            flex: 7 7 0 !important; 
        }
    }
}

/* Section 5 */
.section-5 {
    margin-bottom: var(--space-xl);
}

.content-5 {
    background-color: var(--color-primary-bg);
    padding: var(--space-s);
    border-radius: var(--border-primary-radius);
}

.content-5 > p:nth-of-type(2) {
    font-size: var(--font-size-small);
}

.content-5 p {
    width: 85%;
}

.bento-content-5 {
    height: 600px;
    gap: var(--space-s);
}

.bento-content-5 .content-5-col:nth-of-type(1) {
    flex: 1 1 0;
    border-radius: var(--border-secondary-radius);
    background: var(--color-secondary-bg-gradient);
    box-shadow: var(--shadow-primary) var(--shadow-primary) var(--shadow-secondary) var(--color-shadows); 
}

.bento-content-5 .content-5-col:nth-of-type(2) {
    flex: 2 2 0;
    gap: var(--space-s);
}

.bento-content-5 .content-5-col:nth-of-type(2) .content-5-row:nth-of-type(1) {
    flex: 1 1 0;
    gap: var(--space-s);
}

.bento-content-5 .content-5-col:nth-of-type(2) .content-5-row:nth-of-type(2) {
    flex: 9 9 0;
    border-radius: var(--border-secondary-radius);
    box-shadow: var(--shadow-primary) var(--shadow-primary) var(--shadow-secondary) var(--color-shadows); 
    overflow: hidden;
    user-select: none;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.bento-content-5 .content-5-col:nth-of-type(2) .content-5-row:nth-of-type(2):hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-secondary) var(--shadow-secondary) var(--shadow-tertiary) var(--color-shadows);
}

.bento-content-5 .content-5-col:nth-of-type(2) .content-5-row:nth-of-type(2) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bento-content-5 .content-5-col:nth-of-type(2) .content-5-row:nth-of-type(1) .inner-col {
    flex: 1 1 0;
    border-radius: var(--border-secondary-radius);
    box-shadow: var(--shadow-primary) var(--shadow-primary) var(--shadow-secondary) var(--color-shadows);
    overflow: hidden;
}

.bento-content-5 .content-5-col:nth-of-type(2) .content-5-row:nth-of-type(1) .inner-col button {
    color: var(--color-secondary-text);
    font-weight: bold;
    background: var(--color-tertiary-bg-gradient);
}

.bento-content-5 .content-5-col:nth-of-type(2) .content-5-row:nth-of-type(1) .inner-col button:hover {
    color: var(--color-primary-text);
    background: var(--color-secondary-bg-gradient);
}

.bento-content-5 .content-5-col:nth-of-type(2) .content-5-row:nth-of-type(1) .inner-col button.active {
    color: var(--color-primary-text);
    background: var(--color-secondary-bg-gradient);
}

@media screen and (min-width: 1561px) {
    
    .content-5 p {
        width: 70%;
    }
}

@media screen and (max-width: 1199.98px) {
    
    .section-5 {
        padding: 0 var(--space-l);
    }

    .content-5 p {
        width: 100%;
    }

    .bento-content-5 {
        height: 650px;
        flex-direction: column-reverse !important;
    }

    .bento-content-5 .content-5-col:nth-of-type(1) {
        flex: 2 2 0 !important;
    }

    .bento-content-5 .content-5-col:nth-of-type(2) {
        flex: 8 8 0 !important;
        flex-direction: column-reverse !important;
    }

    .bento-content-5 .content-5-col:nth-of-type(2) .content-5-row:nth-of-type(1) {
        flex: 2 2 0;
    }

    .bento-content-5 .content-5-col:nth-of-type(2) .content-5-row:nth-of-type(2) {
        flex: 8 8 0;
    }
}

@media screen and (max-width: 991.98px) {

    .bento-content-5 {
        height: 800px;
        flex-direction: column-reverse !important;
    }

    .bento-content-5 .content-5-col:nth-of-type(1) {
        flex: 3 3 0;
    }

    .bento-content-5 .content-5-col:nth-of-type(2) {
        flex: 7 7 0;
        flex-direction: column-reverse !important;
    }
    
    .bento-content-5 .content-5-col:nth-of-type(2) .content-5-row:nth-of-type(1) {
        flex: 4 4 0;
        flex-direction: column !important;
    }

    .bento-content-5 .content-5-col:nth-of-type(2) .content-5-row:nth-of-type(2) {
        flex: 6 6 0;
    }
}

@media screen and (max-width: 767.98px) {
    
    .section-5 {
        padding: 0 var(--space-s);
    }

    .bento-content-5 {
        height: 1000px;
    }

    .bento-content-5 .content-5-col:nth-of-type(1) {
        flex: 4 4 0 !important;
    }
    
    .bento-content-5 .content-5-col:nth-of-type(2) {
        flex: 6 6 0 !important;
    }

    .bento-content-5 .content-5-col:nth-of-type(2) .content-5-row:nth-of-type(1) {
        flex: 6 6 0;
    }
    
    .bento-content-5 .content-5-col:nth-of-type(2) .content-5-row:nth-of-type(2) {
        flex: 4 4 0;
    }
}

@media screen and (max-width: 575.98px) {
    
    .bento-content-5 {
        height: 900px;
    }

    .bento-content-5 .content-5-col:nth-of-type(1) {
        flex: 3 3 0 !important;
    }
    
    .bento-content-5 .content-5-col:nth-of-type(2) {
        flex: 7 7 0 !important;
    }

    .bento-content-5 .content-5-col:nth-of-type(2) .content-5-row:nth-of-type(1) {
        flex: 6 6 0;
    }
    
    .bento-content-5 .content-5-col:nth-of-type(2) .content-5-row:nth-of-type(2) {
        flex: 4 4 0;
    }
}

/* Modal Styles */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-secondary-overlay);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    
    /* iOS fixes */
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
    -webkit-overflow-scrolling: touch;
}

.image-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: 75%;
    height: 75%;
    max-width: 90vw;
    max-height: 90vh;
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.5s ease;
    
    /* iOS rendering fixes */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform, opacity;
}

.image-modal.show .modal-content {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.1s;
}

.modal-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--border-primary-radius);
    
    /* iOS image rendering fixes */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: var(--color-tertiary-overlay);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: var(--font-size-h5);
    font-weight: bold;
    color: var(--color-primary-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    
    /* iOS touch fixes */
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    box-shadow: var(--shadow-primary) var(--shadow-primary) var(--shadow-secondary) var(--color-shadows);
}

.close-btn:hover,
.close-btn:active {
    background-color: var(--color-secondary-bg);
    transform: scale(1.1);
}

/* Mobile specific styles */
@media screen and (max-width: 991.98px) {
    .modal-content {
        width: 100%;
        height: 100%;
    }

    .close-btn {
        top: 20px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: var(--font-size-h4);
    }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    .image-modal {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .modal-image {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/* Navigation buttons */
.nav-dots {
    gap: var(--space-s);
}

.nav-dot {
    width: 15px;
    height: 15px;
    border-radius: var(--border-secondary-radius);
    background: var(--color-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--color-secondary-bg)
}

.nav-dot.active {
    background: var(--color-secondary);
    transform: scale(1.2);
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Recommendation Section */
.reco-content {
    width: 100%;
    height: 100%;
    margin-bottom: var(--space-xl);
}

.bento-reco {
    width: 100%;
    height: 300px;
    gap: var(--space-s);
}

.bento-reco .reco-row {
    flex: 1 1 0;
    min-height: 0 !important;
    gap: var(--space-s);
}

.bento-reco .reco-row .reco-col {
    flex: 1 1 0;
    border-radius: var(--border-secondary-radius);
    box-shadow: var(--shadow-primary) var(--shadow-primary) var(--shadow-secondary) var(--color-shadows);
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

.bento-reco .reco-row .reco-col:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-secondary) var(--shadow-secondary) var(--shadow-tertiary) var(--color-shadows);
}

.bento-reco .reco-row .reco-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bento-reco .reco-row .reco-col:nth-of-type(even) {
    position: relative;
}

.bento-reco .reco-row .reco-col:nth-of-type(even):before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-tertiary-overlay);
    z-index: 1;
}

.bento-reco .reco-row .reco-col:nth-of-type(even) span {
    position: absolute;
    width: 100%;
    text-align: center;
    color: var(--color-primary-text);
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

@media screen and (max-width: 1399.98px) {
    
    .bento-reco {
        height: 275px;
    }
}

@media screen and (max-width: 1199.98px) {
    
    .reco-section {
        padding: 0 var(--space-l);
    }

    .bento-reco {
        height: 225px;
    }
}

@media screen and (max-width: 991.98px) {
    
    .bento-reco {
        height: 700px;
        flex-direction: column !important;
    }
}

@media screen and (max-width: 767.98px) {
    
    .reco-section {
        padding: 0 var(--space-s);
    }

    .bento-reco {
        height: 475px;
    }
    
}

@media screen and (max-width: 575.98px) {
    
    .bento-reco {
        height: 375px;
    }
    
}

@media screen and (max-width: 429.98px) {
    
    .bento-reco {
        height: 325px;
    }
    
}

@media screen and (max-width: 389.98px) {
    
    .bento-reco {
        height: 300px;
    }
}