/* =========================================================
   RAHBAN TIR
   Germany Route Page
   File: assets/css/routes/germany.css
   ========================================================= */


/* =========================================================
   GLOBAL
   ========================================================= */

.germany-page {
    direction: rtl;
    font-family: "Vazirmatn", sans-serif;
    color: #173b6d;
    background: #ffffff;
    overflow: hidden;
}

.germany-container {
    width: min(1400px, 92%);
    margin: 0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.germany-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(8, 29, 57, 0.82),
            rgba(23, 59, 109, 0.88)
        ),
        url("/assets/images/routes/germany.jpg") center center / cover no-repeat;
    color: #ffffff;
}

.germany-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(23, 59, 109, 0.95),
            rgba(23, 59, 109, 0.70),
            rgba(227, 30, 36, 0.30)
        );
}

.germany-hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 0 80px;
}


/* Breadcrumb */

.germany-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 55px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
}

.germany-breadcrumb a {
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    transition: 0.25s ease;
}

.germany-breadcrumb a:hover {
    color: #ffffff;
}

.germany-breadcrumb span {
    opacity: 0.7;
}


/* Hero Text */

.germany-hero-text {
    max-width: 850px;
}

.germany-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(8px);
}

.germany-hero-text h1 {
    margin: 0 0 24px;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.25;
    font-weight: 800;
    color: #ffffff;
}

.germany-hero-text h1 strong {
    display: block;
    color: #e31e24;
}

.germany-hero-text p {
    max-width: 720px;
    margin: 0 0 35px;
    font-size: 18px;
    line-height: 2.1;
    color: rgba(255, 255, 255, 0.90);
}


/* Hero Buttons */

.germany-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.germany-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 25px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.germany-btn:hover {
    transform: translateY(-3px);
}

.germany-btn i {
    font-size: 14px;
}

.germany-btn-primary {
    background: #e31e24;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(227, 30, 36, 0.28);
}

.germany-btn-primary:hover {
    background: #c9181d;
    color: #ffffff;
}

.germany-btn-outline {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.07);
}

.germany-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}


/* =========================================================
   INTRO
   ========================================================= */

.germany-intro {
    padding: 100px 0;
    background: #ffffff;
}

.germany-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
    gap: 70px;
    align-items: center;
}

.germany-section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #e31e24;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.germany-intro-content h2,
.germany-section-heading h2,
.germany-goods-content h2 {
    margin: 0 0 22px;
    color: #173b6d;
    font-size: clamp(30px, 3.5vw, 44px);
    line-height: 1.45;
    font-weight: 800;
}

.germany-intro-content p,
.germany-goods-content p {
    margin: 0 0 18px;
    color: #5d6b7d;
    font-size: 16px;
    line-height: 2.15;
}


/* Intro Card */

.germany-intro-card {
    position: relative;
    padding: 40px 35px;
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            #173b6d,
            #24558f
        );
    color: #ffffff;
    box-shadow: 0 22px 55px rgba(23, 59, 109, 0.18);
    overflow: hidden;
}

.germany-intro-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    left: -80px;
    bottom: -90px;
    border-radius: 50%;
    background: rgba(227, 30, 36, 0.25);
}

.germany-card-icon {
    position: relative;
    z-index: 1;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 16px;
    background: #e31e24;
    color: #ffffff;
    font-size: 25px;
}

.germany-intro-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 23px;
    line-height: 1.5;
}

.germany-intro-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    line-height: 2;
}


/* Intro Stats */

.germany-intro-stats {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    margin-top: 35px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e7edf4;
}

.germany-stat {
    flex: 1 1 150px;
    padding: 20px;
    text-align: center;
    background: #f7f9fc;
    border-left: 1px solid #e7edf4;
}

.germany-stat:last-child {
    border-left: 0;
}

.germany-stat strong {
    display: block;
    margin-bottom: 5px;
    color: #173b6d;
    font-size: 20px;
    font-weight: 800;
}

.germany-stat span {
    color: #788597;
    font-size: 13px;
}


/* =========================================================
   ROUTES
   ========================================================= */

.germany-routes {
    padding: 100px 0;
    background: #f6f8fb;
}

.germany-section-heading {
    max-width: 780px;
    margin-bottom: 50px;
}

.germany-section-heading p {
    margin: 0;
    color: #6a7788;
    font-size: 16px;
    line-height: 2;
}


/* Route Grid */

.germany-route-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.germany-route-card {
    position: relative;
    min-height: 270px;
    padding: 35px 30px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e7edf4;
    box-shadow: 0 10px 35px rgba(23, 59, 109, 0.07);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    overflow: hidden;
}

.germany-route-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        #173b6d,
        #e31e24
    );
    transform: scaleX(0);
    transform-origin: right;
    transition: 0.3s ease;
}

.germany-route-card:hover {
    transform: translateY(-8px);
    border-color: rgba(23, 59, 109, 0.14);
    box-shadow: 0 20px 45px rgba(23, 59, 109, 0.13);
}

.germany-route-card:hover::before {
    transform: scaleX(1);
}

.germany-route-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 15px;
    background: #edf3fa;
    color: #173b6d;
    font-size: 23px;
    transition: 0.3s ease;
}

.germany-route-card:hover .germany-route-icon {
    background: #173b6d;
    color: #ffffff;
}

.germany-route-card h3 {
    margin: 0 0 14px;
    color: #173b6d;
    font-size: 20px;
    line-height: 1.6;
}

.germany-route-card p {
    margin: 0 0 18px;
    color: #6b7788;
    font-size: 14px;
    line-height: 2;
}

.germany-route-card span {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    background: #fff1f2;
    color: #e31e24;
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   SERVICES
   ========================================================= */

.germany-services {
    padding: 100px 0;
    background: #ffffff;
}

.germany-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.germany-service-card {
    padding: 32px 28px;
    border-radius: 17px;
    background: #ffffff;
    border: 1px solid #e7edf4;
    box-shadow: 0 8px 28px rgba(23, 59, 109, 0.055);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.germany-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(227, 30, 36, 0.20);
    box-shadow: 0 18px 38px rgba(23, 59, 109, 0.10);
}

.germany-service-card > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        #173b6d,
        #2d6097
    );
    color: #ffffff;
    font-size: 20px;
}

.germany-service-card h3 {
    margin: 0 0 12px;
    color: #173b6d;
    font-size: 18px;
}

.germany-service-card p {
    margin: 0;
    color: #718093;
    font-size: 14px;
    line-height: 2;
}


/* =========================================================
   GOODS
   ========================================================= */

.germany-goods {
    padding: 100px 0;
    background: #f6f8fb;
}

.germany-goods-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
    gap: 70px;
    align-items: center;
}

.germany-goods-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.germany-goods-list > div {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 75px;
    padding: 16px 18px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #e7edf4;
    box-shadow: 0 7px 22px rgba(23, 59, 109, 0.05);
    transition: 0.25s ease;
}

.germany-goods-list > div:hover {
    transform: translateX(-5px);
    border-color: rgba(23, 59, 109, 0.18);
}

.germany-goods-list i {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #edf3fa;
    color: #173b6d;
    font-size: 17px;
}

.germany-goods-list span {
    color: #3d4b5d;
    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   ADVANTAGES
   ========================================================= */

.germany-advantages {
    padding: 100px 0;
    background: #ffffff;
}

.germany-advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.germany-advantage {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 30px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e7edf4;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.germany-advantage:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(23, 59, 109, 0.08);
}

.germany-advantage > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    flex: 0 0 55px;
    border-radius: 14px;
    background: #173b6d;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
}

.germany-advantage h3 {
    margin: 0 0 8px;
    color: #173b6d;
    font-size: 19px;
}

.germany-advantage p {
    margin: 0;
    color: #718093;
    font-size: 14px;
    line-height: 2;
}


/* =========================================================
   CTA
   ========================================================= */

.germany-cta {
    padding: 30px 0 100px;
    background: #ffffff;
}

.germany-cta-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 55px 60px;
    border-radius: 25px;
    background:
        linear-gradient(
            115deg,
            #173b6d 0%,
            #173b6d 65%,
            #e31e24 100%
        );
    color: #ffffff;
    box-shadow: 0 25px 60px rgba(23, 59, 109, 0.20);
    overflow: hidden;
}

.germany-cta-card::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    left: -120px;
    top: -160px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.germany-cta-card > div:first-child {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.germany-cta-card span {
    display: inline-block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 600;
}

.germany-cta-card h2 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.5;
}

.germany-cta-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    line-height: 2;
}

.germany-cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex: 0 0 auto;
}

.germany-btn-light {
    background: #ffffff;
    color: #173b6d;
}

.germany-btn-light:hover {
    background: #f3f6fa;
    color: #173b6d;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .germany-intro-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .germany-intro-card {
        max-width: 650px;
    }

    .germany-route-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .germany-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .germany-goods-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .germany-cta-card {
        padding: 45px;
    }

}


@media (max-width: 800px) {

    .germany-hero {
        min-height: 560px;
    }

    .germany-hero-content {
        padding: 80px 0 65px;
    }

    .germany-breadcrumb {
        margin-bottom: 35px;
    }

    .germany-hero-text h1 {
        font-size: 42px;
    }

    .germany-hero-text p {
        font-size: 16px;
        line-height: 2;
    }

    .germany-intro,
    .germany-routes,
    .germany-services,
    .germany-goods,
    .germany-advantages {
        padding: 75px 0;
    }

    .germany-route-grid,
    .germany-services-grid,
    .germany-advantages-grid {
        grid-template-columns: 1fr;
    }

    .germany-section-heading {
        margin-bottom: 35px;
    }

    .germany-goods-list {
        grid-template-columns: 1fr;
    }

    .germany-cta {
        padding-bottom: 75px;
    }

    .germany-cta-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
        gap: 30px;
    }

}


@media (max-width: 600px) {

    .germany-container {
        width: min(92%, 500px);
    }

    .germany-hero {
        min-height: 540px;
    }

    .germany-hero-content {
        padding: 70px 0 55px;
    }

    .germany-breadcrumb {
        margin-bottom: 30px;
        gap: 7px;
        font-size: 12px;
    }

    .germany-hero-text h1 {
        font-size: 34px;
        line-height: 1.35;
    }

    .germany-hero-text p {
        margin-bottom: 28px;
        font-size: 14px;
    }

    .germany-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .germany-btn {
        width: 100%;
        min-height: 50px;
    }

    .germany-intro,
    .germany-routes,
    .germany-services,
    .germany-goods,
    .germany-advantages {
        padding: 60px 0;
    }

    .germany-intro-content h2,
    .germany-section-heading h2,
    .germany-goods-content h2 {
        font-size: 28px;
    }

    .germany-intro-content p,
    .germany-goods-content p {
        font-size: 14px;
    }

    .germany-intro-stats {
        display: grid;
        grid-template-columns: 1fr;
    }

    .germany-stat {
        border-left: 0;
        border-bottom: 1px solid #e7edf4;
    }

    .germany-stat:last-child {
        border-bottom: 0;
    }

    .germany-route-card {
        min-height: auto;
        padding: 28px 24px;
    }

    .germany-service-card {
        padding: 28px 24px;
    }

    .germany-advantage {
        gap: 15px;
        padding: 24px 20px;
    }

    .germany-advantage > span {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .germany-advantage h3 {
        font-size: 17px;
    }

    .germany-advantage p {
        font-size: 13px;
    }

    .germany-cta {
        padding-top: 15px;
        padding-bottom: 60px;
    }

    .germany-cta-card {
        padding: 35px 24px;
        border-radius: 20px;
    }

    .germany-cta-card h2 {
        font-size: 25px;
    }

    .germany-cta-card p {
        font-size: 13px;
    }

    .germany-cta-actions {
        width: 100%;
        flex-direction: column;
    }

}