﻿.section-export-header {
    background-image: url('../../img/ihraacat-ve-is-gelistirme.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    height: 70vh;
    min-height: 600px;
    position: relative;
    width: 100%;
}

    .section-export-header > div {
        width: calc(100% - 4rem);
        height: calc(100% - 4rem);
        background: linear-gradient(135deg, #000000cc 0%, #00000080 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
        margin: 0;
        border: 0;
    }

        .section-export-header > div > div {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

    .section-export-header div h2 {
        font-size: clamp(2.5rem, 5vw, 4rem);
        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-export-header div p {
        font-size: clamp(1rem, 2vw, 1.25rem);
        max-width: 1400px;
        line-height: 1.6;
        opacity: 0.9;
        color: white;
    }

.section-export-part2 {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: auto;
    padding: 4rem 2rem;
}

    .section-export-part2 > h2 {
        text-align: center;
        font-size: clamp(1.5rem, 3vw, 2.5rem);
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .section-export-part2 > p:first-of-type {
        text-align: center;
        font-size: 17px;
        max-width: 700px;
        margin: auto;
        color: var(--orange);
        font-weight: 500;
        line-height: 1.3;
    }

    .section-export-part2 > p:last-of-type {
        margin-top: 1rem;
        font-size: 17px;
        text-align: center;
        line-height: 1.5;
    }

    .section-export-part2 > div {
        display: grid;
        gap: 2rem;
        margin: 3rem 0;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

        .section-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-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-export-part2 > div div:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            }

            .section-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-export-part2 > div div:hover span {
                transform: scale(1.1);
            }

            .section-export-part2 > div div span svg {
                color: white;
                width: 30px;
                height: 30px;
            }

            .section-export-part2 > div div b {
                font-size: 24px;
                font-weight: 600;
            }

            .section-export-part2 > div div p {
                font-size: 17px;
                line-height: 1.6;
                opacity: 0.8;
            }


.section-list {
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 3rem 1rem;
    background: var(--gray);
}

    .section-list > div {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 1200px;
        margin: auto;
    }

        .section-list > div p {
            font-size: 22px;
            text-align: center;
            font-weight: 600;
        }

        .section-list > div > div {
            background: var(--border-color);
            padding: 2rem;
            margin-top: 3rem;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
            align-items: center;
        }

        .section-list > div ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
            gap: 1rem;
            width: 100%;
        }

            .section-list > div ul li {
                display: flex;
                align-items: center;
                gap: 8px;
                cursor: pointer;
                transition: 300ms;
                padding: 1rem;
                border-radius: 10px;
                justify-content: center;
            }

                .section-list > div ul li:hover {
                    transform: translateY(-5px);
                    background: var(--bg);
                    text-align: center;
                }

                .section-list > div ul li img {
                    width: 26px;
                }

                .section-list > div ul li span {
                    font-size: 18px;
                }







.section-accordion-container {
    background: var(--gray);
}

    .section-accordion-container > div {
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        padding: 4rem 0;
    }

h2.section-title {
    color: var(--text-color);
    padding: 10px 20px;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 4px;
    margin-bottom: 30px;
    text-align: center;
}

.accordion-item {
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 4px;
}

.accordion-header {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .accordion-header:nth-child(odd),
    .accordion-item:nth-child(odd) .accordion-header {
        background: var(--border-color);
        color: var(--text-color);
        font-size: 15px;
    }

.accordion-item:nth-child(even) .accordion-header {
    background: var(--border-color);
    color: var(--text-color);
}

.accordion-header:hover {
    filter: brightness(1.1);
}

.accordion-content {
    display: none;
    padding: 15px 20px;
    background: var(--card-bg);
    border-top: none;
    line-height: 1.6;
    font-size: 13px;
}

.cta-section {
    text-align: center;
    margin-top: 50px;
}

    .cta-section h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .cta-section p {
        max-width: 700px;
        margin: 0 auto 25px;
        line-height: 1.7;
    }

.cta-buttons a {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    margin: 5px;
    transition: all 0.3s;
    font-weight: 500;
}

    .cta-buttons a:first-child {
        background: var(--orange);
        color: #fff;
    }

        .cta-buttons a:first-child:hover {
            filter: brightness(1.1);
        }

    .cta-buttons a:last-child {
        border: 2px solid var(--orange);
        color: var(--orange);
        background: transparent;
    }

        .cta-buttons a:last-child:hover {
            background: var(--orange);
            color: #fff;
        }



.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 {
    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: 26px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.card-content p {
    font-size: 16px;
    color: var(--text-color);
    flex: 1;
}

/*#region FAQ Section*/

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2 {
        font-size: 30px;
        margin-bottom: 15px;
        color: var(--orange);
    }

    .section-title p {
        margin: 0 auto;
        color: var(--text-color);
        opacity: 0.8;
        font-size: 20px;
    }

.faq-section {
    padding: 80px 0;
    background-color: var(--card-bg);
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

    .faq-container p {
        font-size: 14px;
        font-weight: 100;
    }

.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);
}

/*#endregion*/

/* Responsive */
@media (max-width: 1200px) {
    .section-accordion-container > div {
        width: calc(100% - 2rem);
    }

    .faq-container {
        width: calc(100% - 2rem);
    }
}
@media (max-width: 768px) {
    .section-export-header {
        height: 50vh;
        min-height: 400px;
        background-attachment: scroll;
    }

    .card-content p {
        font-size: 14px;
    }

    .card-content h3 {
        font-size: 20px;
    }

    .section-title h2 {
        font-size: 25px;
    }

    .section-title p {
        font-size: 15px;
    }

    .section-list > div p {
        font-size: 17px;
    }


}

@media (max-width: 576px) {
    .section-export-header {
        height: 50vh;
        min-height: 400px;
        background-attachment: scroll;
    }

    .section-list > div ul {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .accordion-header:nth-child(odd), .accordion-item:nth-child(odd) .accordion-header {
        font-size: 14px;
    }

    .section-accordion-container > div {
        width: calc(100% - 2rem);
    }

    .faq-container {
        width: calc(100% - 2rem);
    }

    .section-export-header div p {
        font-size: clamp(0.8rem, 2vw, 1.25rem);
    }

    .section-export-header div h2 {
        font-size: clamp(1.2rem, 5vw, 4rem);
    }
}
