@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;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800&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;
}

.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.prev { left: 30px; }
.nav-btn.next { right: 30px; }

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

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

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

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

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

.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;
}

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

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

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

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

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

.info-card-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    color: #000000;
    text-decoration: none;
    align-self: flex-end; 
}
.info-card-link:hover { color: #37BA77; }

.info-card-link-icon {
    width: 13px;
    height: 13px;
}

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

.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%;
}

.journey-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px; 
    font-weight: 700;
    margin-bottom: 15px;
}

.reveal-holder {
    position: relative;
    overflow: hidden;
    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;
    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, .delay-1::after { transition-delay: 0.2s; }
.delay-2 p, .delay-2::after { transition-delay: 0.4s; }
.delay-3 p, .delay-3::after { transition-delay: 0.6s; }





.anasayfa-wrapper {
    position: relative;
}

.journey-section {
    position: relative;
    z-index: 2;
}

.paper-decor-component {
    position: relative;
    left: 0;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    min-height: 500px;
    pointer-events: none;
    z-index: 0;
}

.paper-decor-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    min-height: 500px;
    pointer-events: none;
}

@keyframes paper-float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-8px) translateX(3px); }
}

@keyframes paper-float-slow {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-5px) translateX(-2px); }
}

.p-decor {
    position: absolute;
    user-select: none;
    object-fit: contain;
    object-position: left center;
    will-change: transform;
}

.decor-back {
    width: 160.48px;
    height: 208.58px;
    left: -100px;
    top: 52%;
    opacity: 0.1;
    animation: paper-float-slow 4s ease-in-out infinite;
}

.decor-middle {
    width: 160.48px;
    height: 260.25px;
    left: -35px;
    top: 8%;
    opacity: 0.5;
    animation: paper-float 3.5s ease-in-out infinite;
    animation-delay: 0.3s;
}

.decor-front {
    width: 160.48px;
    height: 208.58px;
    left: 200px;
    top: 5%;
    opacity: 0.7;
    animation: paper-float 3s ease-in-out infinite;
    animation-delay: 0.6s;
}

@media (max-width: 1440px) {
    .decor-back { left: -85px; }
    .decor-middle { left: -45px; }
    .decor-front { left: 160px; }
}

@media (max-width: 992px) {
    .p-decor {
        width: 120px;
        height: auto;
        opacity: 0.25 !important;
        animation-duration: 4s !important;
    }
}

/* Desktop + monitör: kağıt görsellerini biraz aşağı al */
@media (min-width: 993px) {
    .decor-middle {
        top: calc(8% + 80px);
    }

    .decor-front {
        top: calc(5% + 80px);
    }
}

@media (max-width: 768px) {
    .paper-decor-component {
        display: none;
    }
}

/* Desktop Full Width - Monitör çözünürlüğünde kağıt tasarımı en solda */
@media (min-width: 1441px) {
    .anasayfa-wrapper {
        position: relative;
        overflow-x: visible;
    }
    
    .paper-decor-component {
        position: relative;
        max-width: 100vw !important;
        width: 100vw !important;
        margin-left: calc((100vw - 100%) / -2) !important;
        margin-right: 0 !important;
        left: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .paper-decor-container {
        position: absolute;
        left: 0 !important;
        width: 100% !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
    }
    
    /* Görselleri tam en sola hizala - görsellerin birbirlerine göre pozisyonlarını koru */
    .decor-middle {
        left: 0 !important;
        top: calc(18% + 80px) !important;
    }
    
    /* decor-front'un decor-middle'a göre pozisyonunu koru (200px - (-35px) = 235px fark) */
    .decor-front {
        left: 235px !important;
        top: calc(15% + 80px) !important;
    }
}

/* Büyük monitörler için optimize edilmiş pozisyonlama */
@media (min-width: 1920px) {
    .paper-decor-component {
        max-width: 100vw !important;
        width: 100vw !important;
        margin-left: calc((100vw - 100%) / -2) !important;
        margin-right: 0 !important;
        left: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .paper-decor-container {
        left: 0 !important;
        width: 100% !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
    }
    
    .decor-middle {
        left: 0 !important;
        top: calc(18% + 80px) !important;
    }
    
    .decor-front {
        left: 235px !important;
        top: calc(15% + 80px) !important;
    }
}




.products-section {
    position: relative;
    z-index: 1;
    padding: 60px 0;
    background-color: #fff;
}

.container-fluid-custom {
    max-width: 1440px; 
    margin: 0 auto;
    padding: 0 120px; 
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 40px;
    margin: 0;
}

.products-slider-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.nav-btn-prod {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.25));
    top: 50%;
    transform: translateY(-50%);
}

.prev-prod { left: -50px; }
.next-prod { right: -50px; }

.products-track {
    display: flex;
    gap: 24px; 
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px 20px 5px; 
    scrollbar-width: none; 
}

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

.product-card {
    flex: 0 0 277px; 
    height: 336px;   
    border: 0.88px solid #ADADAD;
    border-radius: 9px;
    background: #FFFFFF;
    transition: all 0.3s ease;
}

.product-image-box {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.img-inner {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.product-footer {
    padding: 0 20px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 500;
}
.product-link:hover { color: #37BA77; }
.product-link:hover .product-title { color: #37BA77; }

.product-arrow {
    width: 29px;
    height: 29px;
    border: 2px solid #D19357;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.references-section {
    position: relative;
    z-index: 1;
    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; }
}

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

@media (max-width: 768px) {
    .slider-container { height: 300px; }
    .text-box { display: flex; justify-content: center; }
    .text-box.orange { font-size: 18px; }
    .text-box.green { font-size: 16px; }
    .info-card { width: 100%; flex-direction: column; flex: none; height: auto; }
    .info-card-image { width: calc(100% - 20px); height: 200px; }
    .section-title { font-size: 28px; }
    .nav-btn-prod { display: none; }
    .product-card { flex: 0 0 240px; }
}

@media (max-width: 480px) {
    .slider-container { height: 250px; }
    .reference-card { flex: 0 0 160px; height: 160px; }
    .info-card-image { height: 160px; }
    .product-card { flex: 0 0 200px; }
    .product-image-box { height: 180px; }
}

@media (max-width: 768px) {
    .slider-container { height: 350px; }

    .slide {
        padding-left: 0;
        display: flex;
        align-items: center;
    }

    .caption-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .text-box {
        margin: 5px auto;
        padding: 8px 20px;
        width: fit-content;
    }

    .text-box::before {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    .text-box.orange { 
        font-size: 24px; 
        line-height: 1.2; 
    }

    .text-box.green { 
        font-size: 20px; 
        line-height: 1.2; 
        padding-right: 20px; 
    }

    .info-card { 
        width: 100%; 
        flex-direction: column; 
        flex: none; 
        height: auto; 
    }

    .info-card-image { 
        width: calc(100% - 20px); 
        height: 200px; 
    }

    .section-title { 
        font-size: 28px; 
    }

    .nav-btn-prod { 
        display: none; 
    }

    .product-card { 
        flex: 0 0 240px; 
    }

    .product-image-box { height: 220px; }
}

@media (max-width: 1200px) {
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .nav-btn.prev { left: 15px; }
    .nav-btn.next { right: 15px; }
}

@media (max-width: 768px) {
    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    .nav-btn.prev { left: 10px; }
    .nav-btn.next { right: 10px; }
}

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