/* =========================================================
   RAHBAN TIR
   ABOUT PAGE
   ========================================================= */

.rt-about-page {
    direction: rtl;
    width: 100%;
    overflow: hidden;

    font-family: "Vazirmatn", Tahoma, Arial, sans-serif;

    color: #172033;
    background: #fff;
}

.rt-about-page *,
.rt-about-page *::before,
.rt-about-page *::after {
    box-sizing: border-box;
}

.rt-about-page a {
    text-decoration: none;
}

.rt-about-page h1,
.rt-about-page h2,
.rt-about-page h3,
.rt-about-page p {
    margin-top: 0;
}

.rt-about-page p {
    line-height: 2;
}

.rt-about-page .rt-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}


/* =========================================================
   BRAND COLORS
   ========================================================= */

:root {
    --rt-blue-dark: #123b63;
    --rt-blue: #17477a;
    --rt-blue-light: #1c78a8;

    --rt-red: #ed1c24;
    --rt-red-dark: #c9141b;

    --rt-bg-light: #f4f8fb;
    --rt-border: #dce8ef;

    --rt-text: #172033;
    --rt-muted: #6c7887;
}


/* =========================================================
   COMMON LABEL
   ========================================================= */

.rt-about-label {
    display: inline-flex;

    align-items: center;
    gap: 10px;

    margin-bottom: 17px;

    color: var(--rt-blue-light);

    font-size: 13px;
    font-weight: 800;
}

.rt-about-label::before {
    content: "";

    width: 28px;
    height: 2px;

    border-radius: 20px;

    background: var(--rt-red);
}


/* =========================================================
   COMMON RED BUTTON
   ========================================================= */

.rt-about-page .rt-btn-primary {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 11px;

    min-height: 50px;

    padding: 0 25px;

    border: 0;
    border-radius: 9px;

    background: var(--rt-red);

    color: #fff;

    font-size: 13px;
    font-weight: 800;

    box-shadow:
        0 9px 22px rgba(237, 28, 36, 0.18);

    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}

.rt-about-page .rt-btn-primary:hover {
    transform: translateY(-2px);

    background: var(--rt-red-dark);

    color: #fff;

    box-shadow:
        0 13px 28px rgba(237, 28, 36, 0.28);
}

.rt-about-page .rt-btn-primary i {
    font-size: 11px;
}


/* =========================================================
   COMPANY
   ========================================================= */

.rt-about-company {
    padding: 95px 0;

    background: #fff;
}

.rt-about-company-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(300px, .65fr);

    gap: 75px;

    align-items: center;
}

.rt-about-company-content h2 {
    margin-bottom: 22px;

    color: var(--rt-text);

    font-size: clamp(28px, 3.7vw, 43px);

    line-height: 1.45;

    font-weight: 900;
}

.rt-about-company-content h2 span {
    color: var(--rt-blue-light);
}

.rt-about-company-content p {
    max-width: 710px;

    margin-bottom: 16px;

    color: var(--rt-muted);

    font-size: 14px;
}

.rt-about-company-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   COMPANY CARD
   ========================================================= */

.rt-about-company-card {
    position: relative;

    min-height: 315px;

    padding: 40px 30px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    overflow: hidden;

    border-radius: 19px;

    background:
        linear-gradient(
            180deg,
            #17477a 0%,
            #163f70 54%,
            #ed1c24 100%
        );

    box-shadow:
        0 18px 40px rgba(18,59,99,.16);

    color: #fff;
}

.rt-about-company-card::before {
    content: "";

    position: absolute;

    width: 210px;
    height: 210px;

    top: -95px;
    right: -95px;

    border-radius: 50%;

    background: rgba(255,255,255,.07);
}

.rt-about-company-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    bottom: -105px;
    left: -80px;

    border-radius: 50%;

    background: rgba(255,255,255,.05);
}

.rt-about-company-icon {
    position: relative;
    z-index: 2;

    width: 68px;
    height: 68px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border: 1px solid rgba(255,255,255,.45);

    border-radius: 50%;

    background: rgba(255,255,255,.08);

    color: #fff;

    font-size: 24px;
}

.rt-about-company-card h3 {
    position: relative;
    z-index: 2;

    margin-bottom: 9px;

    color: #fff;

    font-size: 20px;

    font-weight: 900;
}

.rt-about-company-card p {
    position: relative;
    z-index: 2;

    margin-bottom: 18px;

    color: rgba(255,255,255,.86);

    font-size: 13px;
}

.rt-about-company-card span {
    position: relative;
    z-index: 2;

    color: rgba(255,255,255,.72);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .5px;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.rt-about-section-heading {
    max-width: 700px;

    margin: 0 auto 45px;

    text-align: center;
}

.rt-about-section-heading h2 {
    margin-bottom: 13px;

    color: var(--rt-text);

    font-size: clamp(27px, 3.5vw, 40px);

    line-height: 1.45;

    font-weight: 900;
}

.rt-about-section-heading p {
    margin-bottom: 0;

    color: var(--rt-muted);

    font-size: 13px;
}


/* =========================================================
   VALUES
   ========================================================= */

.rt-about-values {
    padding: 90px 0;

    background: var(--rt-bg-light);
}

.rt-about-values-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.rt-about-value-card {
    position: relative;

    min-height: 255px;

    padding: 30px 23px;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.18);

    border-radius: 17px;

    background:
        linear-gradient(
            180deg,
            #17477a 0%,
            #183f70 57%,
            #ed1c24 100%
        );

    box-shadow:
        0 13px 30px rgba(18,59,99,.13);

    color: #fff;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.rt-about-value-card::after {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    bottom: -75px;
    left: -55px;

    border-radius: 50%;

    background: rgba(255,255,255,.05);
}

.rt-about-value-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 21px 42px rgba(18,59,99,.2);
}

.rt-about-value-icon {
    position: relative;
    z-index: 2;

    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 21px;

    border: 1px solid rgba(255,255,255,.4);

    border-radius: 50%;

    background: rgba(255,255,255,.08);

    color: #fff;

    font-size: 19px;
}

.rt-about-value-card h3 {
    position: relative;
    z-index: 2;

    margin-bottom: 10px;

    color: #fff;

    font-size: 18px;

    font-weight: 900;
}

.rt-about-value-card p {
    position: relative;
    z-index: 2;

    margin-bottom: 0;

    color: rgba(255,255,255,.8);

    font-size: 12px;

    line-height: 2;
}


/* =========================================================
   SERVICES
   ========================================================= */

.rt-about-services {
    padding: 95px 0;

    background: #fff;
}

.rt-about-services-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.rt-about-service-card {
    position: relative;

    display: grid;

    grid-template-columns:
        62px minmax(0,1fr) 24px;

    align-items: center;

    gap: 20px;

    min-height: 155px;

    padding: 25px;

    overflow: hidden;

    border: 1px solid var(--rt-border);

    border-radius: 17px;

    background: #fff;

    box-shadow:
        0 9px 25px rgba(18,59,99,.06);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.rt-about-service-card:hover {
    transform: translateY(-5px);

    border-color: rgba(237,28,36,.25);

    box-shadow:
        0 17px 35px rgba(18,59,99,.11);
}

.rt-about-service-icon {
    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: #eef6fa;

    color: var(--rt-blue);

    font-size: 22px;
}

.rt-about-service-card h3 {
    margin-bottom: 7px;

    color: var(--rt-text);

    font-size: 17px;

    font-weight: 900;
}

.rt-about-service-card p {
    margin-bottom: 0;

    color: var(--rt-muted);

    font-size: 12px;

    line-height: 2;
}

.rt-service-arrow {
    color: var(--rt-red);

    font-size: 14px;

    transition: transform .25s ease;
}

.rt-about-service-card:hover .rt-service-arrow {
    transform: translateX(-4px);
}


/* =========================================================
   ROUTES
   ========================================================= */

.rt-about-routes {
    padding: 95px 0;

    background: var(--rt-bg-light);
}

.rt-about-routes-wrapper {
    display: grid;

    grid-template-columns:
        minmax(0,.9fr)
        minmax(0,1.1fr);

    align-items: center;

    gap: 70px;
}

.rt-about-routes-content {
    text-align: right;
}

.rt-about-routes-content h2 {
    margin-bottom: 20px;

    color: var(--rt-text);

    font-size: clamp(28px,3.5vw,42px);

    line-height: 1.5;

    font-weight: 900;
}

.rt-about-routes-content p {
    max-width: 570px;

    margin-bottom: 25px;

    color: var(--rt-muted);

    font-size: 13px;
}

.rt-about-routes-list {
    display: grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap: 14px;
}

.rt-about-route-item {
    position: relative;

    display: flex;

    align-items: center;

    gap: 13px;

    min-height: 78px;

    padding: 15px 18px;

    overflow: hidden;

    border: 1px solid rgba(18,59,99,.08);

    border-radius: 14px;

    background: #fff;

    box-shadow:
        0 9px 24px rgba(18,59,99,.06);

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.rt-about-route-item::before {
    content: "";

    position: absolute;

    width: 70px;
    height: 70px;

    left: -28px;
    top: -28px;

    border-radius: 50%;

    background: rgba(237,28,36,.04);

    transition: transform .25s ease;
}

.rt-about-route-item i {
    position: relative;
    z-index: 2;

    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(23,71,122,.15);

    border-radius: 12px;

    background: #f2f7fa;

    color: var(--rt-blue);

    font-size: 17px;

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease;
}

.rt-about-route-item span {
    position: relative;
    z-index: 2;

    display: block;

    color: var(--rt-text);

    font-size: 13px;

    font-weight: 800;
}

.rt-about-route-item span::after {
    content: attr(data-route);

    display: block;

    margin-top: 2px;

    color: var(--rt-muted);

    font-size: 9px;

    font-weight: 500;
}

.rt-about-route-item:hover {
    transform: translateY(-4px);

    border-color: rgba(255,255,255,.35);

    box-shadow:
        0 20px 40px rgba(0,0,0,.22);
}

.rt-about-route-item:hover::before {
    transform: scale(1.35);

    background: rgba(237,28,36,.12);
}

.rt-about-route-item:hover i {
    transform: scale(1.08);

    background: #ed1c24;

    border-color: #ed1c24;

    color: #fff;
}


/* =========================================================
   ROUTES BUTTON
   ========================================================= */

.rt-about-routes-content .rt-btn-primary {
    background: #ed1c24;

    color: #fff;
}

.rt-about-routes-content .rt-btn-primary:hover {
    background: #c9141b;

    color: #fff;
}


/* =========================================================
   CTA
   ========================================================= */

.rt-about-cta {
    padding: 75px 0;

    background: var(--rt-bg-light);
}

.rt-about-cta-inner {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 45px 52px;

    overflow: hidden;

    border-radius: 19px;

    background:
        linear-gradient(
            135deg,
            #17477a 0%,
            #123b63 58%,
            #155b80 100%
        );

    box-shadow:
        0 20px 45px rgba(18,59,99,.16);
}

.rt-about-cta-inner::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    left: -120px;
    bottom: -170px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 50%;
}

.rt-about-cta .rt-about-label {
    position: relative;
    z-index: 2;

    color: #b7e6f5;
}

.rt-about-cta h2 {
    position: relative;
    z-index: 2;

    margin-bottom: 10px;

    color: #fff;

    font-size: clamp(25px,3.3vw,37px);

    line-height: 1.5;

    font-weight: 900;
}

.rt-about-cta p {
    position: relative;
    z-index: 2;

    max-width: 630px;

    margin-bottom: 0;

    color: rgba(255,255,255,.76);

    font-size: 13px;
}

.rt-about-cta .rt-btn-primary {
    position: relative;
    z-index: 2;

    flex-shrink: 0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width:1024px) {

    .rt-about-page .rt-container {
        width: min(100% - 32px,900px);
    }

    .rt-about-company-grid,
    .rt-about-routes-wrapper {
        grid-template-columns:1fr;

        gap:45px;
    }

    .rt-about-company-card {
        width:100%;

        max-width:460px;

        margin-inline:auto;
    }

    .rt-about-values-grid {
        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

    .rt-about-services-grid {
        grid-template-columns:1fr;
    }

    .rt-about-routes-list {
        max-width:620px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width:767px) {

    .rt-about-page .rt-container {
        width:calc(100% - 28px);
    }

    .rt-about-company,
    .rt-about-values,
    .rt-about-services,
    .rt-about-routes {
        padding:70px 0;
    }

    .rt-about-company-grid,
    .rt-about-routes-wrapper {
        gap:35px;
    }

    .rt-about-company-content h2,
    .rt-about-routes-content h2 {
        font-size:27px;
    }

    .rt-about-company-content p {
        font-size:13px;
    }

    .rt-about-company-card {
        min-height:270px;

        padding:32px 22px;
    }

    .rt-about-section-heading {
        margin-bottom:35px;
    }

    .rt-about-section-heading h2 {
        font-size:26px;
    }

    .rt-about-values-grid {
        grid-template-columns:1fr;
    }

    .rt-about-value-card {
        min-height:auto;
    }

    .rt-about-services-grid {
        grid-template-columns:1fr;
    }

    .rt-about-service-card {
        grid-template-columns:
            52px minmax(0,1fr);

        min-height:auto;

        padding:20px;

        gap:15px;
    }

    .rt-about-service-icon {
        width:52px;
        height:52px;

        font-size:18px;
    }

    .rt-about-service-card h3 {
        font-size:16px;
    }

    .rt-about-service-card p {
        font-size:11px;
    }

    .rt-service-arrow {
        display:none;
    }

    .rt-about-routes-list {
        grid-template-columns:1fr;

        gap:12px;
    }

    .rt-about-route-item {
        min-height:105px;

        padding:20px;
    }

    .rt-about-route-item span {
        font-size:14px;
    }

    .rt-about-cta {
        padding:60px 0;
    }

    .rt-about-cta-inner {
        flex-direction:column;

        align-items:stretch;

        padding:34px 24px;
    }

    .rt-about-cta h2 {
        font-size:25px;
    }

    .rt-about-cta .rt-btn-primary {
        width:100%;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width:420px) {

    .rt-about-route-item {
        min-height:95px;
    }

    .rt-about-route-item i {
        flex-basis:46px;

        width:46px;
        height:46px;

        font-size:16px;
    }

    .rt-about-route-item span {
        font-size:13px;
    }

    .rt-about-route-item span::after {
        font-size:9px;
    }

    .rt-about-company-card {
        min-height:250px;
    }
}