﻿.section-electronic-export-header {
    background-image: url('../../img/e-ihracat.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    height: 70vh;
    min-height: 600px;
    position: relative;
    width: 100%;
}

    .section-electronic-export-header div {
        width: calc(100% - 4rem);
        height: calc(100% - 4rem);
        background: linear-gradient(135deg, #000000cc 0%, #00000080 100%);
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
    }

        .section-electronic-export-header div h2 {
            font-size: clamp(2.5rem, 5vw, 3rem);
            font-weight: 700;
            background: linear-gradient(135deg, var(--orange), var(--orange-hover));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-electronic-export-header div p {
            font-size: clamp(1rem, 2vw, 1.25rem);
            max-width: 1200px;
            line-height: 1.6;
            opacity: 0.9;
            color: white;
        }

.section-electronic-export-part2 {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: auto;
    padding: 4rem 2rem;
}

    .section-electronic-export-part2 > h2 {
        text-align: center;
        font-size: clamp(1.5rem, 3vw, 2.5rem);
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .section-electronic-export-part2 > p:first-of-type {
        text-align: center;
        font-size: 15px;
        max-width: 700px;
        margin: auto;
        color: var(--orange);
        font-weight: 500;
    }

    .section-electronic-export-part2 > p:last-of-type {
        margin-top: 1rem;
        font-size: 15px;
        text-align: center;
    }

    .section-electronic-export-part2 > div {
        display: grid;
        gap: 2rem;
        margin: 3rem 0;
        grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    }

        .section-electronic-export-part2 > div div {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            text-align: center;
            justify-content: center;
            align-items: center;
            padding: 2.5rem 2rem;
            background: var(--card-bg);
            border-radius: 12px;
            color: var(--text-color);
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

            .section-electronic-export-part2 > div div::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 3px;
                background: linear-gradient(90deg, var(--orange), var(--orange-hover));
            }

            .section-electronic-export-part2 > div div:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            }

            .section-electronic-export-part2 > div div span {
                width: 70px;
                height: 70px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: linear-gradient(135deg, var(--orange), var(--orange-hover));
                border-radius: 50%;
                transition: transform 0.3s ease;
            }

            .section-electronic-export-part2 > div div:hover span {
                transform: scale(1.1);
            }

            .section-electronic-export-part2 > div div span svg {
                color: white;
                width: 30px;
                height: 30px;
            }

            .section-electronic-export-part2 > div div b {
                font-size: 24px;
                font-weight: 600;
            }

            .section-electronic-export-part2 > div div p {
                font-size: 17px;
                line-height: 1.6;
                opacity: 0.8;
            }

.section-electronic-export-plan {
    display: flex;
    flex-direction: column;
    background: var(--card-bg);
    padding: 4rem 2rem;
    position: relative;
}

    .section-electronic-export-plan::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--orange), transparent);
    }

    .section-electronic-export-plan > div {
        max-width: 1200px;
        margin: auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        text-align: center;
    }

        .section-electronic-export-plan > div h2 {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .section-electronic-export-plan > div > p {
            color: var(--orange);
            font-size: 1.1rem;
            max-width: 500px;
            margin: auto;
            font-weight: 500;
        }

        .section-electronic-export-plan > div > div {
            display: grid;
            margin: 3rem 0;
            gap: 2rem;
            grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
        }

            .section-electronic-export-plan > div > div div {
                display: flex;
                flex-direction: column;
                position: relative;
                padding: 1rem;
            }

                .section-electronic-export-plan > div > div div:not(:last-of-type)::before {
                    content: "";
                    width: 50%;
                    height: 2px;
                    background: linear-gradient(90deg, var(--orange), transparent);
                    position: absolute;
                    right: -25%;
                    top: 40px;
                    z-index: 1;
                }

@media (max-width: 992px) {
    .section-electronic-export-plan > div > div div:not(:last-of-type)::before {
        display: none;
    }
}

.section-electronic-export-plan > div > div div span {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--text-color), var(--gray));
    color: var(--bg);
    border-radius: 50%;
    border: 3px solid var(--orange);
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.section-electronic-export-plan > div > div div:hover span {
    background: linear-gradient(135deg, var(--orange), var(--orange-hover));
    color: white;
    transform: scale(1.1);
}

.section-electronic-export-plan > div > div div span svg {
    width: 30px;
    height: 30px;
}

.section-electronic-export-plan > div > div div b {
    margin-bottom: 1rem;
    font-size: 14px;
    font-weight: 600;
}

.section-electronic-export-plan > div > div div p {
    font-size: 12px;
    line-height: 1.6;
    opacity: 0.8;
}




/* ===============================================
   Pazaryeri Hizmetleri ve Süreç Tasarımı
   =============================================== */

.marketplace-services-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Sekme (Tab) Yapısı */
.services-tabs {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tabs-nav {
    display: flex;
    background: var(--bg);
    border-bottom: 1px solid var(--border-color);
}

.tab-link {
    flex: 1;
    padding: 15px 20px;
    cursor: pointer;
    background: transparent;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .tab-link img {
        height: 20px;
        filter: grayscale(100%); /* Aktif olmayanın logosunu soluklaştır */
        transition: filter 0.3s ease;
    }

    .tab-link svg {
        color: orange;
        height: 20px;
        filter: grayscale(100%); /* Aktif olmayanın logosunu soluklaştır */
        transition: filter 0.3s ease;
    }

    .tab-link:hover {
        background: var(--card-bg);
        color: var(--text-color-hover);
    }

    .tab-link.active {
        color: var(--orange);
        border-bottom-color: var(--orange);
    }

        .tab-link.active img {
            filter: grayscale(0%);
        }

.tabs-content {
    padding: 25px 30px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

    .tab-pane.active {
        display: block;
    }

    .tab-pane h3 {
        font-size: 1.5rem;
        color: var(--orange);
        margin-bottom: 20px;
    }

.service-list {
    list-style-type: none;
}

    .service-list li {
        padding: 12px 0 12px 25px;
        position: relative;
        border-bottom: 1px solid var(--border-color);
        display: flex;
        flex-direction: column;
        gap: 5px;
        font-size: 14px;
    }

        .service-list li strong {
            font-size: 15px;
        }

        .service-list li:last-child {
            border-bottom: none;
        }

        .service-list li::before {
            content: '✓';
            transform: translateY(-50%);
            position: absolute;
            left: 0;
            top: 50%;
            color: var( --orange);
            font-weight: bold;
        }

/* Zaman Çizelgesi (Timeline) */
.process-timeline-container {
    width: 100%;
}

    .process-timeline-container h2 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 40px;
        color: var(--text-color);
    }

.timeline {
    position: relative;
    padding: 20px 0;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 20px;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--border-color);
        border-radius: 3px;
        height: calc(100% - 3rem);
    }

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 60px; /* Metni çizgiden uzaklaştır */
}

.timeline-dot {
    position: absolute;
    left: 13px; /* Çizginin ortasına gelmesi için */
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--orange);
    border: 3px solid var(--bg);
    border-radius: 50%;
    z-index: 1;
}

.timeline-content {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .timeline-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    }

    .timeline-content h4 {
        font-size: 1.3rem;
        margin-bottom: 8px;
        color: var(--text-color);
    }

    .timeline-content p {
        font-size: 1rem;
        line-height: 1.6;
        color: var(--text-color);
        opacity: 0.85;
    }


/* Animasyon */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




.why-choose-section {
    background-color: var(--bg);
    padding: 100px 0;
    color: var(--text-color);
}

    .why-choose-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .why-choose-section .header {
        margin-bottom: 60px;
        text-align: center;
    }

        .why-choose-section .header h2 {
            font-size: 42px;
            margin-bottom: 16px;
            color: var(--text-color);
            text-align: center;
        }

        .why-choose-section .header p {
            font-size: 18px;
            color: var(--text-color-hover);
            text-align: center;
        }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.card {
    background: var(--linear);
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

    .card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    }

.card-content {
    color: white;
    padding: 32px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.icon {
    width: 64px;
    height: 64px;
    background-color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: background-color 0.3s;
}

.card:hover .icon {
    background-color: var(--orange-hover);
}

.icon i {
    font-size: 28px;
    color: #fff;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.card-content p {
    font-size: 17px;
    color: var(--text-color);
    flex: 1;
}

/*#region FAQ Section*/
.faq-section {
    padding: 80px 0;
    background-color: var(--card-bg);
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

    .faq-container p {
        font-size: 14px;
    }

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background-color: var(--border-color);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

    .faq-question:hover {
        background-color: var(--gray);
    }

    .faq-question h3 {
        font-size: 15px;
        margin: 0;
    }

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    background-color: var(--input-bg);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
    font-size: 13px;
}

.faq-toggle {
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(90deg);
}




.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2 {
        font-size: 25px;
    }

    .section-title p {
        font-size: 15px;
        margin-top: 10px;
    }
/*#endregion*/



/* Responsive */
@media (max-width: 1200px) {
    .faq-container {
        width: calc(100% - 2rem);
    }
}
@media (max-width: 768px) {
    .section-electronic-export-header {
        height: 50vh;
        min-height: 400px;
        background-attachment: scroll;
    }

    .section-electronic-export-part2 > div {
        grid-template-columns: 1fr;
    }

    .section-electronic-export-plan > div > div {
        grid-template-columns: 1fr;
    }

    .section-electronic-export-header div p {
        font-size: clamp(0.8rem, 2vw, 1.25rem);
    }

    .section-electronic-export-header div h2 {
        font-size: clamp(1.1rem, 5vw, 3rem);
    }

    .timeline-content p {
        font-size: 0.8rem;
    }

    .timeline-content h4 {
        font-size: 1rem;
    }

    .faq-question h3 {
        font-size: 15px;
    }

  

    .card-content h3 {
        font-size: 20px;
    }

    .card-content p {
        font-size: 14px;
    }
    .section-electronic-export-part2 > div div b {
        font-size: 20px;
    }
    .section-electronic-export-part2 > div div p {
        font-size: 14px;
    }
}
