/* Content Description Section */
.tim-highlight-text {
    color: #4e00ff;
    font-weight: normal;
}

/* Brand Guidelines Section - Renk paleti + Tipografi */
.tim-brand-elements-section {
    background-color: #fff;
}

.tim-brand-elements-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Product Applications Section - Ürün uygulamaları (overlap) */
.tim-product-applications-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    margin-bottom: 140px;
}

.tim-product-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.tim-product-background img {
    height: 100%;
}

.tim-product-overlay {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    height: 100%;
    padding: 0 20px;
    overflow: visible;
}

.tim-product-overlay img {
    max-width: 600px;
    transform: translateX(-40%) translateY(30%);
    -webkit-transform: translateX(-40%) translateY(30%);
}

/* Stationery Flags Section - Bayrak uygulamaları */
.tim-flags-section {
    background-color: #fff;
}

.tim-flags-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.tim-flags-item {
    height: 400px;
}

.tim-flags-item img {
    width: 100%;
    height: 100%;
    display: block;
}

/* Interior Wall Application Section - İç mekan duvar uygulaması */
.tim-interior-wall-section {
    padding: 0;
}

.tim-interior-wall-container {
    max-width: 100%;
    width: 100%;
}

/* Corporate Materials Section - Kurumsal materyaller (overlap) */
.tim-corporate-materials-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
}

.tim-corporate-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 1;
}

.tim-corporate-materials-container {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin: 0 auto;
    gap: 0;
    align-items: flex-end;
    height: 100%;
    padding: 0 0 80px 0;
}

.tim-corporate-item:first-child {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    height: 100%;
}

.tim-corporate-item:last-child {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    height: 100%;
}

.tim-corporate-item img {
    width: 90%;
}

/* Print Materials Section - Basılı materyaller */
.tim-print-materials-section {
    background-color: #fff;
    padding: 0;
}

.tim-print-materials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.tim-print-item img {
    width: 140%;
}

/* Building Application Section - Bina uygulaması */
.tim-building-application-container {
    max-width: 100%;
    width: 100%;
}

/* Responsive Design for TİM */
@media (max-width: 768px) {

    /* Brand Elements Section */
    .tim-brand-elements-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 16px;
    }

    /* Product Applications Section - Mobile */
    .tim-product-applications-section {
        height: 50vh;
        min-height: 350px;
        margin-bottom: 60px;
    }

    .tim-product-background img {
        object-fit: contain;
        /* Cover yerine contain kullan */
        object-position: center;
        /* Görseli ortala */
    }

    .tim-product-overlay {
        max-width: 100%;
        padding: 30px 46px;
        justify-content: left;
        align-items: end;
    }

    .tim-product-overlay img {
        width: 70%;
        max-width: 300px;
        transform: translateX(0) translateY(0);
        -webkit-transform: translateX(0) translateY(0);
    }

    /* Flags Section - Mobile */
    .tim-flags-container {
        gap: 20px;
        padding: 0 16px;
        max-width: 100%;
    }

    .tim-flags-item {
        height: 200px;
    }

    /* Corporate Materials Section */
    .tim-corporate-materials-section {
        height: 120vh;
        min-height: 700px;
    }

    .tim-corporate-materials-container {
        column-gap: 2px;
        row-gap: 8px;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .tim-corporate-item:first-child,
    .tim-corporate-item:last-child {
        justify-content: center;
        align-items: center;
    }

    /* Print Materials Section */
    .tim-print-materials-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 16px;
    }

    .tim-print-item img {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {

    /* Brand Elements Section */
    .tim-brand-elements-container {
        gap: 20px;
        padding: 0 12px;
    }

    /* Product Applications Section */
    .tim-product-applications-section {
        height: 40vh;
        min-height: 300px;
        margin-bottom: 40px;
    }

    .tim-product-overlay img {
        width: 80%;
        max-width: 250px;
    }

    /* Flags Section - Small Mobile */
    .tim-flags-container {
        gap: 10px;
        padding: 0 12px;
    }

    .tim-flags-item {
        height: 150px;
    }

    /* Corporate Materials Section */
    .tim-corporate-materials-section {
        height: 100vh;
        min-height: 600px;
    }

    /* Print Materials Section */
    .tim-print-materials-container {
        gap: 20px;
        padding: 0 12px;
    }

    .tim-print-item img {
        width: 100%;
        max-width: 300px;
    }
}