/* =========================================================
   TRAVELLOLO - ABOUT PAGE
   File: assets/css/about.css
========================================================= */

.tl-about-page {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    color: #10264c;
}

.tl-about-page *,
.tl-about-page *::before,
.tl-about-page *::after {
    box-sizing: border-box;
}

.tl-about-page img {
    display: block;
    max-width: 100%;
}

.tl-about-page h1,
.tl-about-page h2,
.tl-about-page h3,
.tl-about-page p {
    margin-top: 0;
}

.tl-about-section {
    padding: 75px 0;
}


/* =========================================================
   COMMON KICKER
========================================================= */

.tl-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 13px;
    color: #f4511e;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 1.1px;
}

.tl-section-kicker::before {
    content: "";

    width: 25px;
    height: 2px;

    border-radius: 10px;

    background: #f4511e;
}


/* =========================================================
   HERO
========================================================= */

.tl-about-hero {
    padding: 28px 0 0;
}

.tl-about-hero-card {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;

    overflow: hidden;

    border-radius: 18px;

    background: #092a58;
}

.tl-about-hero-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.tl-about-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 25, 59, .94) 0%,
            rgba(4, 31, 69, .82) 35%,
            rgba(4, 31, 69, .40) 62%,
            rgba(4, 31, 69, .08) 100%
        );
}

.tl-about-hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 640px;

    padding: 70px 65px;

    color: #ffffff;
}

.tl-about-kicker {
    color: #ff7b4d;
}

.tl-about-kicker::before {
    background: #ff6b35;
}

.tl-about-hero-content h1 {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.02;
    font-weight: 600;

    letter-spacing: -2.5px;
}

.tl-about-hero-content p {
    max-width: 545px;

    margin-bottom: 0;

    color: rgba(255, 255, 255, .91);

    font-size: 17px;
    line-height: 1.75;
}


/* =========================================================
   STORY
========================================================= */

.tl-about-story {
    padding-top: 90px;
}

.tl-about-story-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, .95fr);

    gap: 75px;

    align-items: center;
}


/* STORY IMAGE */

.tl-about-story-image-wrap {
    position: relative;

    min-height: 520px;
}

.tl-about-story-image {
    width: 100%;
    height: 520px;

    object-fit: cover;

    border-radius: 18px;
}

.tl-about-story-image-wrap::before {
    content: "";

    position: absolute;

    left: -20px;
    top: -20px;

    width: 130px;
    height: 130px;

    border-radius: 18px;

    background:
        repeating-linear-gradient(
            45deg,
            rgba(244, 81, 30, .12) 0,
            rgba(244, 81, 30, .12) 2px,
            transparent 2px,
            transparent 8px
        );

    z-index: 0;
}

.tl-about-story-image {
    position: relative;
    z-index: 1;
}


/* STORY BADGE */

.tl-about-story-badge {
    position: absolute;
    z-index: 3;

    right: -28px;
    bottom: 35px;

    min-width: 245px;

    padding: 20px 23px;

    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 18px 45px rgba(10, 41, 82, .16);
}

.tl-about-story-badge::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 5px;

    border-radius: 12px 0 0 12px;

    background: #f4511e;
}

.tl-about-story-badge strong {
    display: block;

    margin-bottom: 5px;

    color: #0a2a58;

    font-size: 16px;
    line-height: 1.3;
    font-weight: 800;
}

.tl-about-story-badge span {
    display: block;

    color: #738095;

    font-size: 16px;
    line-height: 1.5;
}


/* STORY CONTENT */

.tl-about-story-content h2 {
    max-width: 600px;
    margin-bottom: 22px;
    color: #0b2857;
    font-size: clamp(22px, 3vw, 36px);
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -1.4px;
}

.tl-about-story-content > p {
    margin-bottom: 17px;

    color: #68778d;

    font-size: 16px;
    line-height: 1.8;
}

.tl-about-points {
    margin-top: 30px;

    display: grid;

    gap: 17px;
}

.tl-about-point {
    display: flex;
    align-items: flex-start;

    gap: 14px;
}

.tl-about-point-icon {
    width: 39px;
    height: 39px;

    flex: 0 0 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff1ec;
    color: #f4511e;
}

.tl-about-point-icon svg {
    width: 18px;
    height: 18px;
}

.tl-about-point strong {
    display: block;
    margin-bottom: 4px;
    color: #102c58;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
}

.tl-about-point p {
    margin: 0;

    color: #778499;

    font-size: 16px;
    line-height: 1.55;
}


/* =========================================================
   STATS
========================================================= */

.tl-about-stats-section {
    padding: 5px 0 70px;
}

.tl-about-stats {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    overflow: hidden;

    border: 1px solid #e4eaf1;
    border-radius: 14px;

    background: #f8fbff;

    box-shadow:
        0 8px 30px rgba(13, 52, 101, .05);
}

.tl-about-stat {
    position: relative;

    padding: 31px 20px;

    text-align: center;
}

.tl-about-stat:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 25%;

    width: 1px;
    height: 50%;

    background: #dfe6ee;
}

.tl-about-stat strong {
    display: block;

    margin-bottom: 5px;

    color: #0c4c96;

    font-size: 31px;
    line-height: 1;
    font-weight: 800;

    letter-spacing: -1px;
}

.tl-about-stat span {
    color: #697a90;

    font-size: 16px;
    font-weight: 600;
}


/* =========================================================
   WHY TRAVELLOLO
========================================================= */

.tl-about-why {
    background: #f7faff;
}

.tl-about-center-heading {
    max-width: 680px;

    margin: 0 auto 43px;

    text-align: center;
}

.tl-about-center-heading .tl-section-kicker {
    justify-content: center;
}

.tl-about-center-heading h2 {
    margin-bottom: 13px;
    color: #0b2857;
    font-size: clamp(22px, 3vw, 36px);
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -1.2px;
}

.tl-about-center-heading > p {
    max-width: 610px;

    margin: 0 auto;

    color: #748196;

    font-size: 16px;
    line-height: 1.75;
}

.tl-about-cta-actions{
	margin: 20px 0;
}
.tl-about-hero-actions{
    display:grid;
    gap:20px;
    grid-auto-flow: column;
	margin:20px 0;
}
/* FEATURES */

.tl-about-feature-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.tl-about-feature {
    position: relative;

    min-height: 250px;

    padding: 34px 30px;

    overflow: hidden;

    border: 1px solid #e1e8f0;
    border-radius: 14px;

    background: #ffffff;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.tl-about-feature::after {
    content: "";

    position: absolute;

    right: -50px;
    bottom: -65px;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    background: #f5f9ff;
}

.tl-about-feature:hover {
    transform: translateY(-5px);

    border-color: #cad9ea;

    box-shadow:
        0 18px 45px rgba(10, 48, 94, .10);
}

.tl-about-feature-icon {
    position: relative;
    z-index: 2;

    width: 55px;
    height: 55px;

    margin-bottom: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #edf5ff;
    color: #135eb3;
}

.tl-about-feature:nth-child(2)
.tl-about-feature-icon {
    background: #fff1eb;
    color: #f4511e;
}

.tl-about-feature:nth-child(3)
.tl-about-feature-icon {
    background: #edf9f2;
    color: #149653;
}

.tl-about-feature-icon svg {
    width: 27px;
    height: 27px;
}

.tl-about-feature h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 10px;
    color: #102c58;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;
}

.tl-about-feature p {
    position: relative;
    z-index: 2;

    margin-bottom: 0;

    color: #758397;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   MISSION / VISION
========================================================= */

.tl-about-mission-section {
    background: #ffffff;
}

.tl-about-mission-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 22px;
}

.tl-about-mission-card {
    position: relative;

    min-height: 320px;

    padding: 48px;

    overflow: hidden;

    border: 1px solid #dce7f2;
    border-radius: 17px;

    background:
        linear-gradient(
            135deg,
            #f0f7ff,
            #ffffff
        );
}

.tl-about-mission-card::after {
    content: "";

    position: absolute;

    right: -80px;
    bottom: -100px;

    width: 270px;
    height: 270px;

    border: 50px solid rgba(13, 86, 165, .04);
    border-radius: 50%;
}

.tl-about-mission-card > span {
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-bottom: 16px;
    color: #1765b6;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tl-about-mission-card h2 {
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin-bottom: 17px;
    color: #0b2857;
    font-size: clamp(22px, 3vw, 36px);
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -.8px;
}

.tl-about-mission-card p {
    position: relative;
    z-index: 2;
    max-width: 540px;
    margin-bottom: 0;
    color: #718096;

    font-size: 16px;
    line-height: 1.75;
}


/* DARK VISION */

.tl-about-mission-dark {
    border-color: #082c5d;

    background:
        linear-gradient(
            135deg,
            #0b3972 0%,
            #062650 100%
        );
}

.tl-about-mission-dark::after {
    border-color: rgba(255, 255, 255, .045);
}

.tl-about-mission-dark > span {
    color: #ff8155;
}

.tl-about-mission-dark h2 {
    color: #ffffff;
}

.tl-about-mission-dark p {
    color: rgba(255, 255, 255, .76);
}


/* =========================================================
   VALUES
========================================================= */

.tl-about-values-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.tl-about-value {
    position: relative;

    padding: 28px 24px;

    border-top: 3px solid #0d58a5;
    border-radius: 0 0 11px 11px;

    background: #f8faff;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.tl-about-value:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(12, 54, 105, .08);
}

.tl-about-value:nth-child(2) {
    border-top-color: #f4511e;
}

.tl-about-value:nth-child(3) {
    border-top-color: #17a45b;
}

.tl-about-value:nth-child(4) {
    border-top-color: #7758c9;
}

.tl-about-value > span {
    display: block;

    margin-bottom: 17px;

    color: #c0cad6;

    font-size: 28px;
    line-height: 1;
    font-weight: 800;
}

.tl-about-value h3 {
    margin-bottom: 9px;

    color: #102c58;

    font-size: 18px;
    font-weight: 800;
}

.tl-about-value p {
    margin-bottom: 0;

    color: #748297;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   CTA
========================================================= */

.tl-about-cta-section {
    padding: 10px 0 80px;
}

.tl-about-cta {
    position: relative;

    min-height: 370px;

    display: flex;
    align-items: center;

    overflow: hidden;

    border-radius: 18px;

    background: #062b5b;
}

.tl-about-cta > img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center 50%;
}

.tl-about-cta-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3, 26, 59, .96) 0%,
            rgba(4, 38, 79, .85) 42%,
            rgba(4, 38, 79, .30) 75%,
            rgba(4, 38, 79, .08) 100%
        );
}

.tl-about-cta-content {
    position: relative;
    z-index: 2;

    max-width: 650px;

    padding: 55px 60px;

    color: #ffffff;
}

.tl-about-cta-content > span {
    display: block;
    margin-bottom: 11px;
    color: #ff7a4c;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tl-about-cta-content h2 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: clamp(22px, 3vw, 42px);
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -1.3px;
}

.tl-about-cta-content p {
    max-width: 520px;
    color: rgba(255, 255, 255, .82);
    font-size: 16px;
    line-height: 1.7;
}

.tl-about-cta-btn {
    min-height: 47px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 24px;

    border-radius: 6px;

    background: #f4511e;
    color: #ffffff !important;

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 8px 22px rgba(244, 81, 30, .24);

    transition:
        background .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.tl-about-cta-btn:hover {
    background: #db3e0d;

    transform: translateY(-2px);

    box-shadow:
        0 12px 28px rgba(244, 81, 30, .30);
}


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

@media (max-width: 1100px) {

    .tl-about-section {
        padding: 65px 0;
    }

    .tl-about-hero-card {
        min-height: 455px;
    }

    .tl-about-hero-content {
        max-width: 590px;

        padding: 60px 45px;
    }

    .tl-about-story-grid {
        gap: 50px;
    }

    .tl-about-story-image,
    .tl-about-story-image-wrap {
        min-height: 470px;
        height: 470px;
    }

    .tl-about-story-badge {
        right: -10px;
    }

    .tl-about-mission-card {
        padding: 38px;
    }

}


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

@media (max-width: 900px) {

    .tl-about-hero {
        padding-top: 20px;
    }

    .tl-about-hero-card {
        min-height: 430px;
    }

    .tl-about-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(4, 25, 59, .94),
                rgba(4, 31, 69, .65)
            );
    }

    .tl-about-hero-content {
        max-width: 560px;
    }


    /* STORY */

    .tl-about-story-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .tl-about-story-image-wrap {
        max-width: 720px;
    }

    .tl-about-story-image,
    .tl-about-story-image-wrap {
        height: 460px;
        min-height: 460px;
    }

    .tl-about-story-badge {
        right: 20px;
    }


    /* STATS */

    .tl-about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .tl-about-stat:nth-child(2)::after {
        display: none;
    }

    .tl-about-stat:nth-child(-n+2) {
        border-bottom: 1px solid #e0e7ef;
    }


    /* FEATURES */

    .tl-about-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tl-about-feature:last-child {
        grid-column: 1 / -1;
    }


    /* MISSION */

    .tl-about-mission-grid {
        grid-template-columns: 1fr;
    }


    /* VALUES */

    .tl-about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .tl-about-section {
        padding: 20px 0;
    }


    /* HERO */

    .tl-about-hero {
        padding: 12px 0 0;
    }

    .tl-about-hero-card {
        min-height: 475px;

        align-items: flex-end;

        border-radius: 12px;
    }

    .tl-about-hero-image {
        object-position: 62% center;
    }

    .tl-about-hero-overlay {
        background:
            linear-gradient(
                0deg,
                rgba(4, 25, 59, .97) 0%,
                rgba(4, 25, 59, .84) 48%,
                rgba(4, 25, 59, .30) 100%
            );
    }

    .tl-about-hero-content {
        max-width: none;

        padding: 35px 24px;
    }

    .tl-about-hero-content h1 {
        margin-bottom: 15px;

        font-size: 39px;
        letter-spacing: -1.5px;
    }

    .tl-about-hero-content p {
        font-size: 16px;
        line-height: 1.65;
    }

    .tl-section-kicker {
        font-size: 12px;
    }


    /* STORY */

    .tl-about-story {
        padding-top: 55px;
    }

    .tl-about-story-grid {
        gap: 42px;
    }

    .tl-about-story-image-wrap,
    .tl-about-story-image {
        height: 350px;
        min-height: 350px;
    }

    .tl-about-story-image {
        border-radius: 12px;
    }

    .tl-about-story-image-wrap::before {
        display: none;
    }

    .tl-about-story-badge {
        right: 12px;
        bottom: 12px;
        left: 12px;

        min-width: 0;

        padding: 16px 18px;
    }

    .tl-about-story-content h2 {
        margin-bottom: 17px;
        font-size: 24px;
        letter-spacing: -.8px;
    }

    .tl-about-story-content > p {
        font-size: 16px;
        line-height: 1.7;
    }


    /* STATS */

    .tl-about-stats-section {
        padding-bottom: 50px;
    }

    .tl-about-stat {
        padding: 25px 10px;
    }

    .tl-about-stat strong {
        font-size: 20px;
    }

    .tl-about-stat span {
        font-size: 16px;
    }


    /* CENTER HEADING */

    .tl-about-center-heading {
        margin-bottom: 30px;
    }

    .tl-about-center-heading h2 {
        font-size: 24px;
    }


    /* FEATURES */

    .tl-about-feature-grid {
        grid-template-columns: 1fr;
    }

    .tl-about-feature:last-child {
        grid-column: auto;
    }

    .tl-about-feature {
        min-height: auto;

        padding: 27px 23px;
    }


    /* MISSION */

    .tl-about-mission-card {
        min-height: auto;

        padding: 31px 24px;

        border-radius: 13px;
    }

    .tl-about-mission-card h2 {
        font-size: 27px;
    }


    /* VALUES */

    .tl-about-values-grid {
        grid-template-columns: 1fr;
    }

    .tl-about-value {
        padding: 24px 21px;
    }


    /* CTA */

    .tl-about-cta-section {
        padding: 0 0 55px;
    }

    .tl-about-cta {
        min-height: 430px;

        align-items: flex-end;

        border-radius: 12px;
    }

    .tl-about-cta > img {
        object-position: 60% center;
    }

    .tl-about-cta-overlay {
        background:
            linear-gradient(
                0deg,
                rgba(3, 26, 59, .98) 0%,
                rgba(3, 26, 59, .88) 50%,
                rgba(3, 26, 59, .25) 100%
            );
    }

    .tl-about-cta-content {
        padding: 30px 23px;
    }

    .tl-about-cta-content h2 {
        font-size: 30px;
    }

    .tl-about-cta-btn {
        width: 100%;
    }

   .tl-about-hero-actions{
    display:grid;
    gap:20px;
    grid-auto-flow:row;
	margin:20px 0;
}

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .tl-about-hero-content h1 {
        font-size: 34px;
    }

    .tl-about-story-image-wrap,
    .tl-about-story-image {
        height: 310px;
        min-height: 310px;
    }

 

    .tl-about-stat {
        border-bottom: 1px solid #e0e7ef;
    }

    .tl-about-stat::after {
        display: none;
    }

    .tl-about-stat:last-child {
        border-bottom: 0;
    }

}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .tl-about-feature,
    .tl-about-value,
    .tl-about-cta-btn {
        transition: none;
    }

}