
    /* ========================================
   ULAŞIM BÖLÜMÜ
======================================== */

    .das-transport-section {
        position: relative;
        width: 100%;
        overflow: hidden;
        background:
            radial-gradient(
                circle at 92% 8%,
                rgba(255, 255, 255, 0.95) 0,
                rgba(255, 255, 255, 0) 31%
            ),
            #f1eee8;
    }
    .das-transport-section::before {
        position: absolute;
        top: -210px;
        right: -190px;
        width: 520px;
        height: 520px;
        content: "";
        border: 1px solid rgba(23, 23, 23, 0.05);
        border-radius: 50%;
        pointer-events: none;
    }

    .das-transport-section::after {
        position: absolute;
        bottom: -260px;
        left: -220px;
        width: 540px;
        height: 540px;
        content: "";
        border: 1px solid rgba(23, 23, 23, 0.04);
        border-radius: 50%;
        pointer-events: none;
    }

    .das-transport-section > .container {
        position: relative;
        z-index: 2;
    }

    /* ========================================
       BAŞLIK ALANI
    ======================================== */

    .das-transport-header {
        padding: 0 8px;
        margin-bottom: 40px;
    }

    .das-transport-label {
        display: inline-flex;
        align-items: center;
        gap: 13px;
        margin-bottom: 18px;
        font-size: 11px;
        font-weight: 600;
        line-height: 1;
        letter-spacing: 2.2px;
        color: #71675b;
        text-transform: uppercase;
    }

    .das-transport-label::before {
        display: block;
        width: 38px;
        height: 1px;
        content: "";
        background: currentColor;
    }

    .das-transport-title {
        max-width: 800px;
        margin: 0 0 24px;
        font-family: inherit;
        font-size: clamp(40px, 5vw, 64px);
        font-weight: 400;
        line-height: 1.04;
        letter-spacing: -2.2px;
        color: #171717;
    }

    .das-transport-lead {
        max-width: 820px;
        margin: 0 0 14px;
        font-size: 19px;
        font-weight: 400;
        line-height: 1.65;
        color: #292724;
    }

    .das-transport-description {
        max-width: 850px;
        margin: 0 0 13px;
        font-size: 15px;
        line-height: 1.85;
        color: #625e58;
    }

    /* ========================================
       KONUM KARTI
    ======================================== */

    .das-transport-location-card {
        position: relative;
        display: flex;
        align-items: center;
        gap: 16px;
        min-height: 122px;
        padding: 23px 68px 23px 22px;
        color: #ffffff;
        background: #171717;
        border-radius: 20px;
        box-shadow: 0 20px 45px rgba(23, 23, 23, 0.14);
    }

    .das-location-icon {
        display: flex;
        flex: 0 0 52px;
        align-items: center;
        justify-content: center;
        width: 52px;
        height: 52px;
        color: #171717;
        background: #ffffff;
        border-radius: 50%;
    }

    .das-location-icon svg {
        display: block;
        width: 24px;
        height: 24px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .das-location-content {
        min-width: 0;
    }

    .das-location-content span {
        display: block;
        margin-bottom: 5px;
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 1.5px;
        color: rgba(255, 255, 255, 0.5);
        text-transform: uppercase;
    }

    .das-location-content strong {
        display: block;
        margin-bottom: 5px;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.3;
        color: #ffffff;
    }

    .das-location-content small {
        display: block;
        font-size: 11px;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.62);
    }

    .das-location-link {
        position: absolute;
        top: 50%;
        right: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        color: #171717;
        text-decoration: none;
        background: #ffffff;
        border-radius: 50%;
        transform: translateY(-50%);
        transition:
            color 0.3s ease,
            background-color 0.3s ease,
            transform 0.3s ease;
    }

    .das-location-link svg {
        display: block;
        width: 18px;
        height: 18px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .das-location-link:hover {
        color: #ffffff;
        background: #867361;
        transform: translateY(-50%) rotate(4deg);
    }

    /* ========================================
       ULAŞIM LİSTESİ
    ======================================== */

    .das-transport-list {
        display: flex;
        flex-direction: column;
        gap: 14px;
        width: 100%;
        padding: 18px;
        background: #ffffff;
        border: 1px solid rgba(23, 23, 23, 0.06);
        border-radius: 26px;
        box-shadow: 0 28px 65px rgba(45, 39, 32, 0.09);
    }

    .das-transport-item {
        overflow: hidden;
        width: 100%;
        background: #ffffff;
        border: 1px solid #ded9d1;
        border-radius: 16px;
        transition:
            border-color 0.3s ease,
            box-shadow 0.3s ease;
    }

    .das-transport-item[open] {
        border-color: #171717;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    }

    /* ========================================
       ACCORDION BAŞLIĞI
    ======================================== */

    .das-transport-summary {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 86px;
        gap: 18px;
        padding: 18px 70px 18px 20px;
        color: #171717;
        background: #ffffff;
        cursor: pointer;
        list-style: none;
        user-select: none;
    }

    .das-transport-summary::-webkit-details-marker {
        display: none;
    }

    .das-transport-summary::marker {
        display: none;
        content: "";
    }

    .das-transport-item[open] .das-transport-summary {
        color: #ffffff;
        background: #171717;
    }

    /* ========================================
       ULAŞIM İKONLARI
    ======================================== */

    .das-transport-icon {
        display: flex;
        flex: 0 0 50px;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        color: #ffffff;
        background: #171717;
        border-radius: 50%;
    }

    .das-transport-icon svg {
        display: block;
        width: 25px;
        height: 25px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .das-transport-item[open] .das-transport-icon {
        color: #171717;
        background: #ffffff;
    }

    .das-transport-item[open] .das-transport-icon svg {
        stroke: #171717;
    }

    /* ========================================
       ACCORDION YAZILARI
    ======================================== */

    .das-transport-heading {
        display: block;
        min-width: 0;
    }

    .das-transport-heading strong {
        display: block;
        margin-bottom: 5px;
        font-family: inherit;
        font-size: 18px;
        font-weight: 600;
        line-height: 1.3;
        color: inherit;
    }

    .das-transport-heading small {
        display: block;
        font-size: 13px;
        font-weight: 400;
        line-height: 1.5;
        color: #77736d;
    }

    .das-transport-item[open] .das-transport-heading small {
        color: rgba(255, 255, 255, 0.62);
    }

    /* ========================================
       ARTI / EKSİ SİMGESİ
    ======================================== */

    .das-transport-plus {
        position: absolute;
        top: 50%;
        right: 24px;
        width: 22px;
        height: 22px;
        transform: translateY(-50%);
    }

    .das-transport-plus::before,
    .das-transport-plus::after {
        position: absolute;
        top: 50%;
        left: 50%;
        content: "";
        background: #171717;
        border-radius: 5px;
        transform: translate(-50%, -50%);
        transition: transform 0.3s ease;
    }

    .das-transport-plus::before {
        width: 18px;
        height: 2px;
    }

    .das-transport-plus::after {
        width: 2px;
        height: 18px;
    }

    .das-transport-item[open] .das-transport-plus::before,
    .das-transport-item[open] .das-transport-plus::after {
        background: #ffffff;
    }

    .das-transport-item[open] .das-transport-plus::after {
        transform: translate(-50%, -50%) rotate(90deg);
    }

    /* ========================================
       AÇILAN İÇERİK
    ======================================== */

    .das-transport-body {
        padding: 28px 90px 30px;
        color: #5f5c57;
        background: #ffffff;
        border-top: 1px solid #ece8e2;
    }

    .das-transport-body p {
        margin: 0 0 14px;
        font-size: 16px;
        line-height: 1.85;
    }

    .das-transport-body p:last-child {
        margin-bottom: 0;
    }

    .das-transport-body strong {
        font-weight: 600;
        color: #171717;
    }

    /* ========================================
       ALT YÖNLENDİRME ALANI
    ======================================== */

    .das-transport-footer {
        padding: 44px 48px;
        margin-top: 30px;
        color: #ffffff;
        background: #171717;
        border-radius: 24px;
        box-shadow: 0 24px 55px rgba(23, 23, 23, 0.14);
    }

    .das-transport-footer-label {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
        font-size: 10px;
        font-weight: 600;
        line-height: 1.4;
        letter-spacing: 2px;
        color: rgba(255, 255, 255, 0.55);
        text-transform: uppercase;
    }

    .das-transport-footer-label::before {
        width: 32px;
        height: 1px;
        content: "";
        background: rgba(255, 255, 255, 0.45);
    }

    .das-transport-footer h3 {
        margin: 0 0 17px;
        font-family: inherit;
        font-size: clamp(30px, 4vw, 45px);
        font-weight: 400;
        line-height: 1.1;
        letter-spacing: -1.5px;
        color: #ffffff;
    }

    .das-transport-footer p {
        max-width: 820px;
        margin: 0 0 12px;
        font-size: 14px;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.65);
    }

    .das-transport-route-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 54px;
        padding: 0 26px;
        font-size: 13px;
        font-weight: 600;
        color: #171717;
        text-decoration: none;
        background: #ffffff;
        border-radius: 50px;
        transition:
            color 0.3s ease,
            background-color 0.3s ease,
            transform 0.3s ease;
    }

    .das-transport-route-button svg {
        display: block;
        width: 18px;
        height: 18px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .das-transport-route-button:hover {
        color: #ffffff;
        background: #867361;
        transform: translateY(-3px);
    }

    /* ========================================
       TABLET
    ======================================== */

    @media (max-width: 991.98px) {
        .das-transport-header {
            margin-bottom: 30px;
        }

        .das-transport-location-card {
            max-width: 520px;
        }

        .das-transport-body {
            padding: 26px 30px;
        }

        .das-transport-footer {
            padding: 38px;
        }
    }

    /* ========================================
       MOBİL
    ======================================== */

    @media (max-width: 575.98px) {
        .das-transport-section {
            background: #f1eee8;
        }

        .das-transport-header {
            padding: 0;
            margin-bottom: 25px;
        }

        .das-transport-label {
            margin-bottom: 14px;
            font-size: 10px;
            letter-spacing: 1.7px;
        }

        .das-transport-label::before {
            width: 26px;
        }

        .das-transport-title {
            margin-bottom: 18px;
            font-size: 36px;
            line-height: 1.07;
            letter-spacing: -1.3px;
        }

        .das-transport-lead {
            font-size: 17px;
            line-height: 1.65;
        }

        .das-transport-description {
            font-size: 14px;
            line-height: 1.75;
        }

        .das-transport-location-card {
            min-height: 105px;
            padding: 18px 58px 18px 17px;
            border-radius: 17px;
        }

        .das-location-icon {
            flex-basis: 45px;
            width: 45px;
            height: 45px;
        }

        .das-location-icon svg {
            width: 21px;
            height: 21px;
        }

        .das-location-content strong {
            font-size: 14px;
        }

        .das-location-content small {
            font-size: 10px;
        }

        .das-location-link {
            right: 14px;
            width: 34px;
            height: 34px;
        }

        .das-transport-list {
            gap: 10px;
            padding: 8px;
            border-radius: 18px;
        }

        .das-transport-item {
            border-radius: 13px;
        }

        .das-transport-summary {
            min-height: 76px;
            gap: 12px;
            padding: 14px 52px 14px 14px;
        }

        .das-transport-icon {
            flex-basis: 44px;
            width: 44px;
            height: 44px;
        }

        .das-transport-icon svg {
            width: 21px;
            height: 21px;
        }

        .das-transport-heading strong {
            font-size: 15px;
        }

        .das-transport-heading small {
            padding-right: 5px;
            font-size: 11px;
            line-height: 1.4;
        }

        .das-transport-plus {
            right: 17px;
            width: 18px;
            height: 18px;
        }

        .das-transport-plus::before {
            width: 15px;
        }

        .das-transport-plus::after {
            height: 15px;
        }

        .das-transport-body {
            padding: 22px 18px;
        }

        .das-transport-body p {
            font-size: 14px;
            line-height: 1.75;
        }

        .das-transport-footer {
            padding: 30px 23px;
            margin-top: 20px;
            border-radius: 18px;
        }

        .das-transport-footer h3 {
            font-size: 31px;
            letter-spacing: -1px;
        }

        .das-transport-footer p {
            font-size: 13px;
        }

        .das-transport-route-button {
            width: 100%;
        }
    }
