/* =========================================================
   RAHBAN TIR
   Turkey Route Page
   assets/css/routes/turkey.css
   ========================================================= */


/* =========================================================
   GLOBAL
   ========================================================= */

.turkey-page {
    direction: rtl;
    color: #102d4f;
    background: #ffffff;
    overflow: hidden;
}

.turkey-page *,
.turkey-page *::before,
.turkey-page *::after {
    box-sizing: border-box;
}

.turkey-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.turkey-hero {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(8, 38, 70, 0.96) 0%,
            rgba(15, 57, 101, 0.91) 48%,
            rgba(18, 66, 116, 0.80) 100%
        ),
        url("/assets/images/routes/turkey.jpg") center center / cover no-repeat;
}

.turkey-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(239, 57, 60, 0.14),
            transparent 34%
        );
    pointer-events: none;
}

.turkey-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.turkey-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 55px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.turkey-breadcrumb a {
    color: rgba(255, 255, 255, 0.80);
    text-decoration: none;
    transition: color 0.25s ease;
}

.turkey-breadcrumb a:hover {
    color: #ffffff;
}

.turkey-breadcrumb span {
    color: rgba(255, 255, 255, 0.45);
}

.turkey-hero-text {
    max-width: 760px;
}

.turkey-label {
    display: inline-flex;
    align-items: center;
    padding: 9px 20px;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    font-size: 14px;
}

.turkey-hero h1 {
    margin: 0 0 25px;
    color: #ffffff;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.35;
    font-weight: 800;
}

.turkey-hero h1 strong {
    display: block;
    color: #f23b3e;
    font-weight: 800;
}

.turkey-hero p {
    max-width: 720px;
    margin: 0 0 35px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 2.2;
}

.turkey-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.turkey-btn {
    min-height: 56px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.turkey-btn:hover {
    transform: translateY(-3px);
}

.turkey-btn-primary {
    background: #ef3438;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(239, 52, 56, 0.25);
}

.turkey-btn-primary:hover {
    background: #d9282d;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(239, 52, 56, 0.34);
}

.turkey-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.40);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.turkey-btn-outline:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.turkey-btn-light {
    background: #ffffff;
    color: #123b67;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

.turkey-btn-light:hover {
    background: #f3f7fa;
    color: #123b67;
}


/* =========================================================
   INTRO
   ========================================================= */

.turkey-intro {
    padding: 110px 0;
    background: #ffffff;
}

.turkey-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.8fr);
    gap: 80px;
    align-items: center;
}

.turkey-section-label {
    display: inline-block;
    margin-bottom: 15px;
    color: #ef3438;
    font-size: 14px;
    font-weight: 800;
}

.turkey-intro-content h2,
.turkey-section-heading h2,
.turkey-goods-content h2 {
    margin: 0 0 25px;
    color: #102d4f;
    font-size: clamp(30px, 3.2vw, 44px);
    line-height: 1.5;
    font-weight: 800;
}

.turkey-intro-content p,
.turkey-goods-content p {
    margin: 0 0 20px;
    color: #5b6c7d;
    font-size: 16px;
    line-height: 2.2;
}

.turkey-intro-card {
    position: relative;
    padding: 42px 35px;
    border: 1px solid #e5edf4;
    border-radius: 25px;
    background: linear-gradient(
        145deg,
        #f8fbfd,
        #edf4f8
    );
    box-shadow: 0 20px 50px rgba(16, 45, 79, 0.08);
}

.turkey-card-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #123f6e;
    color: #ffffff;
    font-size: 28px;
}

.turkey-intro-card h3 {
    margin: 0 0 15px;
    color: #102d4f;
    font-size: 22px;
    font-weight: 800;
}

.turkey-intro-card p {
    margin: 0;
    color: #607184;
    font-size: 15px;
    line-height: 2.1;
}

.turkey-intro-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 35px;
}

.turkey-stat {
    min-width: 125px;
    padding: 17px 20px;
    border-right: 3px solid #ef3438;
    border-radius: 10px;
    background: #f6f9fb;
}

.turkey-stat strong {
    display: block;
    margin-bottom: 4px;
    color: #123f6e;
    font-size: 17px;
}

.turkey-stat span {
    color: #7a8794;
    font-size: 12px;
}


/* =========================================================
   ROUTES
   ========================================================= */

.turkey-routes {
    padding: 105px 0;
    background: #f5f8fa;
}

.turkey-section-heading {
    max-width: 720px;
    margin-bottom: 55px;
}

.turkey-section-heading p {
    margin: 0;
    color: #657586;
    font-size: 16px;
    line-height: 2;
}

.turkey-route-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.turkey-route-card {
    position: relative;
    padding: 35px 30px;
    min-height: 280px;
    border: 1px solid #e2eaf0;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(16, 45, 79, 0.06);
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.turkey-route-card::after {
    content: "";
    position: absolute;
    left: -40px;
    bottom: -50px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(239, 52, 56, 0.05);
}

.turkey-route-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(16, 45, 79, 0.12);
}

.turkey-route-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    background: #123f6e;
    color: #ffffff;
    font-size: 24px;
}

.turkey-route-card h3 {
    margin: 0 0 13px;
    color: #102d4f;
    font-size: 21px;
    font-weight: 800;
}

.turkey-route-card p {
    margin: 0 0 20px;
    color: #697888;
    font-size: 14px;
    line-height: 2;
}

.turkey-route-card span {
    display: inline-block;
    color: #ef3438;
    font-size: 13px;
    font-weight: 800;
}


/* =========================================================
   SERVICES
   ========================================================= */

.turkey-services {
    padding: 110px 0;
    background: #ffffff;
}

.turkey-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.turkey-service-card {
    padding: 32px 28px;
    border: 1px solid #e5edf3;
    border-radius: 20px;
    background: #ffffff;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.turkey-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(239, 52, 56, 0.25);
    box-shadow: 0 18px 38px rgba(16, 45, 79, 0.08);
}

.turkey-service-card > i {
    display: flex;
    width: 55px;
    height: 55px;
    margin-bottom: 22px;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #eef4f8;
    color: #123f6e;
    font-size: 21px;
}

.turkey-service-card h3 {
    margin: 0 0 12px;
    color: #102d4f;
    font-size: 19px;
    font-weight: 800;
}

.turkey-service-card p {
    margin: 0;
    color: #6b7a89;
    font-size: 14px;
    line-height: 2;
}


/* =========================================================
   GOODS
   ========================================================= */

.turkey-goods {
    padding: 105px 0;
    background: #f5f8fa;
}

.turkey-goods-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.turkey-goods-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.turkey-goods-list div {
    min-height: 75px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #e0e9ef;
    border-radius: 14px;
    background: #ffffff;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.turkey-goods-list div:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(16, 45, 79, 0.08);
}

.turkey-goods-list i {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #123f6e;
    color: #ffffff;
}

.turkey-goods-list span {
    color: #304c67;
    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   ADVANTAGES
   ========================================================= */

.turkey-advantages {
    padding: 110px 0;
    background: #ffffff;
}

.turkey-advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 35px;
}

.turkey-advantage {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 30px 0;
    border-bottom: 1px solid #e7edf2;
}

.turkey-advantage > span {
    min-width: 52px;
    color: #ef3438;
    font-size: 16px;
    font-weight: 900;
}

.turkey-advantage h3 {
    margin: 0 0 10px;
    color: #102d4f;
    font-size: 19px;
    font-weight: 800;
}

.turkey-advantage p {
    margin: 0;
    color: #6a7887;
    font-size: 14px;
    line-height: 2;
}


/* =========================================================
   CTA
   ========================================================= */

.turkey-cta {
    padding: 80px 0 110px;
    background: #ffffff;
}

.turkey-cta-card {
    position: relative;
    padding: 55px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    border-radius: 28px;
    background:
        linear-gradient(
            120deg,
            #0d345c,
            #174e84
        );
    box-shadow: 0 25px 60px rgba(13, 52, 92, 0.18);
    overflow: hidden;
}

.turkey-cta-card::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    left: -130px;
    top: -130px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.turkey-cta-card::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    left: -205px;
    top: -205px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.turkey-cta-card > div {
    position: relative;
    z-index: 2;
}

.turkey-cta-card > div:first-child {
    max-width: 680px;
}

.turkey-cta-card span {
    display: block;
    margin-bottom: 12px;
    color: #ff6a6d;
    font-size: 14px;
    font-weight: 800;
}

.turkey-cta-card h2 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: clamp(27px, 3vw, 39px);
    line-height: 1.5;
    font-weight: 800;
}

.turkey-cta-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 2;
}

.turkey-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex-shrink: 0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .turkey-hero {
        min-height: 560px;
    }

    .turkey-intro-grid,
    .turkey-goods-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .turkey-route-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .turkey-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .turkey-cta-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .turkey-cta-actions {
        width: 100%;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .turkey-container {
        width: min(100% - 28px, 1200px);
    }

    .turkey-hero {
        min-height: 570px;
        background-position: 60% center;
    }

    .turkey-hero-content {
        padding: 55px 0;
    }

    .turkey-breadcrumb {
        margin-bottom: 38px;
        font-size: 12px;
        gap: 7px;
    }

    .turkey-hero h1 {
        font-size: 36px;
        line-height: 1.45;
    }

    .turkey-hero p {
        font-size: 15px;
        line-height: 2.1;
    }

    .turkey-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .turkey-btn {
        width: 100%;
    }

    .turkey-intro,
    .turkey-routes,
    .turkey-services,
    .turkey-goods,
    .turkey-advantages {
        padding: 75px 0;
    }

    .turkey-intro-content h2,
    .turkey-section-heading h2,
    .turkey-goods-content h2 {
        font-size: 29px;
    }

    .turkey-intro-content p,
    .turkey-goods-content p {
        font-size: 14px;
        line-height: 2.1;
    }

    .turkey-intro-card {
        padding: 30px 25px;
    }

    .turkey-route-grid,
    .turkey-services-grid,
    .turkey-advantages-grid {
        grid-template-columns: 1fr;
    }

    .turkey-route-card {
        min-height: auto;
    }

    .turkey-goods-list {
        grid-template-columns: 1fr;
    }

    .turkey-advantage {
        padding: 24px 0;
    }

    .turkey-cta {
        padding: 50px 0 75px;
    }

    .turkey-cta-card {
        padding: 38px 25px;
        border-radius: 22px;
        gap: 30px;
    }

    .turkey-cta-card h2 {
        font-size: 27px;
    }

    .turkey-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .turkey-hero h1 {
        font-size: 31px;
    }

    .turkey-label {
        font-size: 12px;
        padding: 8px 15px;
    }

    .turkey-stat {
        width: 100%;
    }

    .turkey-route-card,
    .turkey-service-card {
        padding: 27px 22px;
    }

}