@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400&display=swap');

body {
    margin: 0;
    font-family: 'Rubik', sans-serif;
    overflow-x: hidden; 
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
    align-items: center;
    padding-left: 10%;
    animation-name: fade;
    animation-duration: 1.5s;
}

.slide.active-slide {
    display: flex;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

.caption-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.text-box {
    position: relative;
    color: #FFFFFF;
    padding: 10px 50px 15px 30px;
    width: fit-content;
    z-index: 1;
    margin: 0;
}

.text-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 2px;
    clip-path: polygon(0 0, 92% 0, 100% 100%, 0% 100%);
}

.text-box.orange {
    font-size: 52px;
    font-weight: 600;
}

.text-box.orange::before {
    background: #F1840F;
    filter: blur(3.5px);
}

.text-box.green {
    font-size: 42px;
    font-weight: 400;
    padding-right: 70px;
    margin-left: 0;
}

.text-box.green::before {
    background: #48B770;
    filter: blur(3.5px);
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #FFFFFF;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    background-color: rgba(241, 132, 15, 0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background-color 0.3s;
}

.nav-btn:hover {
    background-color: rgba(241, 132, 15, 1);
}

.nav-btn.prev { left: 30px; }
.nav-btn.next { right: 30px; }

.dots-container {
    display: flex;
    justify-content: center; 
    gap: 10px;
    padding-top: 20px;       
    padding-bottom: 20px;    
    width: 100%;
    background-color: #fff;  
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #E6E6E6; 
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #C4C4C4;
}

.home-info-section {
    width: 100%;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    position: relative;
}

.home-info-wrapper {
    width: 100%;
    max-width: 1210px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px; 
    justify-content: center;
    flex-wrap: nowrap;
    position: relative;
}

.info-card {
    box-sizing: border-box;
    position: relative;
    width: 580px;
    flex: 0 0 580px;
    min-height: 251px;
    display: flex;
    background: #FFFFFF;
    border: 2px solid #E9E9E9;
    box-shadow: 15px 15px 11.3px -5px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    overflow: visible; 
}

.info-card::after {
    content: "";
    position: absolute;
    width: 201.42px;
    height: 82px;
    right: -15px; 
    bottom: -15px;
    background: #D9D9D9;
    border-radius: 15px;
    z-index: -1; 
    pointer-events: none; 
}

.info-card-image {
    position: relative;
    width: 245px;
    height: 226px;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
    border-radius: 15px;
    margin: 10px;
    flex-shrink: 0;
}

.info-card-content {
    position: relative;
    flex: 1;
    padding: 20px 32px 20px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
}

.info-card-title {
    margin: 0 0 10px 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 40px;
    color: #000000;
}

.info-card-text {
    margin: 0 0 15px 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #333333;
}

.info-card-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 40px;
    color: #000000;
    text-decoration: none;
    align-self: flex-end; 
    cursor: pointer;
}

.info-card-link-icon {
    width: 13px;
    height: 13px;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 1250px) {
    .home-info-wrapper {
        flex-wrap: wrap;
        gap: 80px;
    }
}

@media (max-width: 768px) {
    .slider-container { height: 300px; }
    .dots-container { padding-top: 12px; padding-bottom: 12px; }
    .production-intro-section { padding: 50px 0 !important; }
    .export-intro-section { padding: 50px 0 !important; }
    
    .info-card {
        width: 100%;
        flex-direction: column;
        height: auto;
    }
    
    .info-card-image {
        width: calc(100% - 20px);
        height: 200px;
    }

    .info-card::after {
        right: 0;
        bottom: -20px;
    }
}

@media (max-width: 480px) {
    .slider-container { height: 240px; }
    .dots-container { padding-top: 10px; padding-bottom: 10px; }
    .production-intro-section { padding: 36px 0 !important; }
    .export-intro-section { padding: 36px 0 !important; }
}

.journey-section {
    position: relative;
    width: 100%;
    height: 423px; 
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #fff; 
}

.journey-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    
    transition: clip-path 2.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.journey-white-overlay {
    position: relative;
    z-index: 5; 
    width: 55%; 
    height: 100%;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    padding-left: 5%; 
    
    clip-path: polygon(0 0, 100% 0, 85% 50%, 100% 100%, 0 100%);
}

.journey-content-box {
    width: 85%;
    padding-right: 20px;
}

.journey-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px; 
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.2;
}

.journey-content-box p {
    font-family: 'Rubik', sans-serif;
    font-size: 14px; 
    line-height: 1.5;
    color: #444;
    margin-bottom: 10px;
}

.reveal-holder {
    position: relative;
    overflow: hidden;
    margin-bottom: 8px;
    display: block;
}

.reveal-holder h2,
.reveal-holder p {
    opacity: 0;
    transform: translateX(50px); 
    transition: all 1.5s ease-out; 
}

.reveal-holder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: translateX(0); 
    z-index: 2;
    transition: transform 1.8s cubic-bezier(0.77, 0, 0.175, 1);
}


.start-anim .journey-bg-layer {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.start-anim .reveal-holder::after {
    transform: translateX(-105%);
}

.start-anim .reveal-holder h2,
.start-anim .reveal-holder p {
    opacity: 1;
    transform: translateX(0); 
}

.delay-1 p { transition-delay: 0.4s; }
.delay-1::after { transition-delay: 0.2s; }

.delay-2 p { transition-delay: 0.6s; }
.delay-2::after { transition-delay: 0.4s; }

.delay-3 p { transition-delay: 0.8s; }
.delay-3::after { transition-delay: 0.6s; }


@media (max-width: 900px) {
    .journey-section {
        height: auto; 
        flex-direction: column;
        padding-bottom: 50px;
    }
    
    .journey-white-overlay {
        width: 100%;
        clip-path: none; 
        padding: 40px 20px;
        background: transparent; 
    }
    
    .journey-bg-layer {
        position: relative;
        height: 250px; 
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); 
        transition: none;
        order: 2; 
    }
    
    .journey-white-overlay {
        order: 1; 
    }
}


.references-section {
    padding: 60px 0;
    width: 100%;
    max-width: 1230px;
    margin: 0 auto;
}

.references-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 30px 20px;
}

.references-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
}

.references-more {
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    gap: 8px;
}
.references-more:hover { color: #37BA77; }

.references-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 20px;
    scrollbar-width: none;
}

.references-track::-webkit-scrollbar { display: none; }

.reference-card {
    flex: 0 0 200px;
    height: 191px;
    border: 1px solid #E9E9E9;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fff;
}

.ref-logo-box {
    height: 100px;
    display: flex;
    align-items: center;
}

.ref-logo-box img {
    max-width: 140px;
    max-height: 80px;
    object-fit: contain;
}

@media (max-width: 1250px) {
    .home-info-wrapper { flex-wrap: wrap; }
    .container-fluid-custom { padding: 0 40px; }
    .prev-prod { left: 10px; }
    .next-prod { right: 10px; }
}



.production-intro-section {
    padding: 100px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #FFFFFF;
}

.production-intro-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 20px;
}

.production-text-box {
    flex: 0 0 598px;
}

.production-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 40px;
    line-height: 1.2;
    color: #333333;
    margin-bottom: 25px;
}

.production-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    color: #333333;
    text-align: justify;
}

.production-image-box {
    flex: 0 0 520px;
    width: 600px;
    height: 330px;
    overflow: hidden;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.05);
}

.production-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1100px) {
    .production-intro-section {
        padding: 60px 0;
    }
    .production-intro-container {
        flex-direction: column;
        align-items: center;
    }
    .production-text-box {
        flex: 1;
        width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }
    .production-image-box {
        flex: 0 0 auto;
        width: 100%;
        max-width: 520px;
    }
}





.export-intro-section {
    padding: 100px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #FFFFFF;
}

.export-intro-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 20px;
}

.export-text-box {
    flex: 0 0 598px;
}

.export-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 40px;
    line-height: 1.2;
    color: #333333;
    margin-bottom: 25px;
}

.export-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
    color: #333333;
    text-align: justify;
}

.export-image-box {
    flex: 0 0 520px;
    width: 600px;
    height: 330px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.05);
}

.export-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1100px) {
    .export-intro-section {
        padding: 60px 0;
    }
    .export-intro-container {
        flex-direction: column;
        align-items: center;
    }
    .export-text-box {
        flex: 1;
        width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }
    .export-image-box {
        flex: 0 0 auto;
        width: 100%;
        max-width: 520px;
    }
    
    .export-image-box.stacked-slider {
        flex: 0 0 auto;
        width: 100%;
        max-width: 800px;
        height: 350px;
    }
    
    .slide-item.active {
        width: 450px;
        height: 260px;
    }
    
    .slide-item.prev {
        width: 300px;
        height: 220px;
        transform: translate(calc(-50% - 110px), -50%);
    }
    
    .slide-item.next {
        width: 300px;
        height: 220px;
        transform: translate(calc(-50% + 110px), -50%);
    }
}

.export-image-box.stacked-slider {
    position: relative;
    flex: 0 0 800px; 
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    background: transparent;
    box-shadow: none;
}

.slide-item {
    position: absolute;
    border-radius: 30px;
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
    opacity: 0; 
    z-index: 1;
    display: block;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.slide-item.prev {
    width: 366px; 
    height: 260px;
    z-index: 5;
    opacity: 1; 
    transform: translate(calc(-50% - 130px), -50%); 
    display: block;
}

.slide-item.next {
    width: 366px; 
    height: 260px;
    z-index: 5;
    opacity: 1; 
    transform: translate(calc(-50% + 130px), -50%);
    display: block;
}

.slide-item.active {
    width: 537px;
    height: 302px;
    z-index: 10;
    opacity: 1;
    box-shadow: 0px 0px 41.4px #FFFFFF;
    transform: translate(-50%, -50%);
    display: block;
}

@media (max-width: 768px) {
    .export-intro-section {
        padding: 28px 0 !important;
    }

    .export-text-box {
        margin-bottom: 16px !important;
    }

    .export-image-box.stacked-slider {
        flex: none !important;
        width: 100% !important;
        max-width: 360px;
        margin: 0 auto;
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: 16 / 9;
        overflow: hidden;
        border-radius: 30px;
    }

    .slide-item.active {
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        object-fit: cover;
    }

    .slide-item.prev,
    .slide-item.next {
        display: none !important;
    }
}

.uretim-contact-wrap .contact-float-inline {
    position: fixed !important;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
}

@media (max-width: 500px) {
    .slider-container { height: 220px !important; }
    .dots-container { padding-top: 8px !important; padding-bottom: 8px !important; }
    .production-intro-section { padding: 24px 0 !important; }
    .export-intro-section { padding: 20px 0 !important; }
    .production-intro-container { padding: 0 16px; margin-bottom: 0; }
    .export-intro-container { padding: 0 16px; }
    .production-text-box { margin-bottom: 24px !important; }
    .export-text-box { margin-bottom: 12px !important; }

    .export-image-box.stacked-slider {
        max-width: 320px;
        aspect-ratio: 16 / 9;
    }
}

.skeleton-active .slider-container.sk-el {
    background: #e2e5e7 !important;
    background-image: linear-gradient(90deg, #e2e5e7 0%, #f1f3f4 20%, #e2e5e7 40%, #e2e5e7 100%) !important;
    background-size: 200% 100% !important;
}

.skeleton-active .slider-container .slide {
    visibility: hidden !important;
}

.skeleton-active .production-title.sk-el {
    min-height: 40px;
    width: 180px;
    border-radius: 8px;
    display: block;
}

.skeleton-active .production-description.sk-el {
    min-height: 120px;
    width: 100%;
    border-radius: 8px;
    display: block;
}

.skeleton-active .production-image-box.sk-el {
    min-height: 280px;
    border-radius: 15px;
}

.skeleton-active .production-image-box.sk-el img {
    opacity: 0 !important;
}

.skeleton-active .export-title.sk-el {
    min-height: 40px;
    width: 160px;
    border-radius: 8px;
    display: block;
}

.skeleton-active .export-description.sk-el {
    min-height: 140px;
    width: 100%;
    border-radius: 8px;
    display: block;
}

.skeleton-active .export-image-box.stacked-slider.sk-el {
    min-height: 280px;
    border-radius: 30px;
}

.skeleton-active .export-image-box.stacked-slider .slide-item {
    opacity: 0 !important;
    visibility: hidden !important;
}

.skeleton-active .dots-container.sk-el {
    min-height: 24px;
}

.skeleton-active .references-title.sk-el {
    min-height: 32px;
    width: 220px;
    border-radius: 8px;
    display: block;
}

.skeleton-active .references-more.sk-el {
    min-height: 24px;
    width: 120px;
    border-radius: 6px;
    display: inline-block;
}

.skeleton-active .references-slider-container.sk-el {
    min-height: 191px;
}

.skeleton-active .reference-card.sk-el {
    min-height: 191px;
    border-radius: 16px;
    border: none !important;
}

.skeleton-active .reference-card.sk-el .ref-logo-box,
.skeleton-active .reference-card.sk-el .ref-logo-box img {
    opacity: 0 !important;
    visibility: hidden !important;
}

.skeleton-active .ref-name.sk-el {
    min-height: 20px;
    width: 80px;
    margin: 10px auto 0;
    border-radius: 4px;
    display: block;
}